@import url(//fonts.googleapis.com/css?family=Montserrat:300,400,500);

body {
    font-family: "Montserrat", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

i.fa {
    margin-right: 5px;
}

header {
    background-color: #839a274d;
}

#about {
    font-size: 1.2rem;
}

@media only screen and (max-width: 600px) {
    .features-img {
        width: 300px;
    }
}

@media only screen and (max-width: 450px) {
    .features-img {
        width: 200px;
    }
}
@media screen and (max-width: 768px) {
[data-aos-delay] {
    transition-delay: 0 !important;
}
}
#hero img {
    max-width: 100% !important;
    max-height: 100% !important;
}
/* Floating Glassmorphic Header Navigation */
.header-glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-glass-nav.scrolled {
    padding: 0.75rem 0;
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.header-glass-nav.scrolled .nav-wrapper {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.brand-logo:hover .logo-icon {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: rotate(5deg);
}

.brand-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.375rem;
    letter-spacing: -0.02em;
}

/* Desktop Navigation */
.nav-links-desktop {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.85);
    font-size: 1rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.link-text {
    position: relative;
    z-index: 1;
}

.link-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover .link-underline {
    width: 100%;
}

/* Accent Link (About) */
.nav-link-accent {
    position: relative;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50px;
    color: #ffffff;
    overflow: hidden;
}

.accent-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav-link-accent:hover .accent-glow {
    left: 100%;
}

.nav-link-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.nav-link-accent .link-underline {
    display: none;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.dropdown-trigger[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu-new {
    position: absolute;
    top: calc(100% + 1.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.dropdown-menu-new.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content {
    background: rgba(20, 20, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.75rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    min-width: 280px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(102, 126, 234, 0.15);
    color: #ffffff;
    transform: translateX(5px);
}

.dropdown-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    color: #667eea;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.dropdown-item:hover .dropdown-item-icon {
    background: rgba(102, 126, 234, 0.2);
    transform: scale(1.1);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 26px;
    height: 2px;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.98) 0%, rgba(30, 20, 40, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-nav-links {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.mobile-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transform: translateX(5px);
}

.mobile-link-accent {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    margin-top: 1rem;
}

.mobile-link-accent:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateX(0) scale(1.02);
}

/* Mobile Dropdown */
.mobile-dropdown {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-trigger {
    justify-content: space-between;
}

.mobile-dropdown-arrow {
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.mobile-dropdown-trigger.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown-content.active {
    max-height: 500px;
}

.mobile-dropdown-item {
    display: block;
    padding: 0.875rem 1.25rem 0.875rem 3rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mobile-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links-desktop {
    display: none;
    }
    
    .hamburger-menu {
    display: flex;
    }
}

@media (max-width: 768px) {
    .nav-container {
    padding: 0 1rem;
    }
    
    .nav-wrapper {
    padding: 0.625rem 1rem;
    }
    
    .brand-text {
    font-size: 1.125rem;
    }
    
    .logo-icon {
    width: 36px;
    height: 36px;
    }
    
    .logo-icon svg {
    width: 32px;
    height: 32px;
    }
    
    .mobile-nav {
    width: 90%;
    }
}

@media (max-width: 576px) {
    .header-glass-nav {
    padding: 1rem 0;
    }
    
    .mobile-nav {
    width: 100%;
    max-width: 100%;
    }
    
    .mobile-nav-links {
    padding: 1.5rem 1rem;
    }
}
/* Welcome Hero Block: Asymmetric Design with Cyberpunk Accents */
.welcome-hero-zx9 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    padding: 8rem 2rem 4rem;
}

.hero-background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left-column {
    position: relative;
    padding: 3rem;
}

.hero-text-container {
    position: relative;
    z-index: 2;
}

.hero-main-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
    }
    50% {
    filter: drop-shadow(0 0 40px rgba(99, 102, 241, 0.6));
    }
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: 2px solid transparent;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.5);
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatAnimation 6s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.3) 0%, transparent 70%);
    bottom: 10%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes floatAnimation {
    0%, 100% {
    transform: translateY(0) scale(1);
    }
    50% {
    transform: translateY(-30px) scale(1.1);
    }
}

.hero-right-column {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-visual-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.hero-main-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(99, 102, 241, 0.3));
}

.svg-shape {
    animation: shapeRotate 20s linear infinite;
    transform-origin: center;
}

.shape-1 {
    animation-duration: 25s;
    animation-direction: normal;
}

.shape-2 {
    animation-duration: 30s;
    animation-direction: reverse;
}

.shape-3 {
    animation-duration: 35s;
    animation-direction: normal;
}

@keyframes shapeRotate {
    from {
    transform: rotate(0deg);
    }
    to {
    transform: rotate(360deg);
    }
}

.svg-icon-group {
    animation: iconPulse 4s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
    transform: translate(400, 400) scale(1);
    }
    50% {
    transform: translate(400, 400) scale(1.05);
    }
}

.hero-floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: cardFloat 5s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -8%;
    animation-delay: 1.5s;
}

.card-3 {
    top: 50%;
    right: -10%;
    animation-delay: 3s;
}

@keyframes cardFloat {
    0%, 100% {
    transform: translateY(0) rotate(0deg);
    }
    50% {
    transform: translateY(-20px) rotate(5deg);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: #6366f1;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
    top: 8px;
    opacity: 1;
    }
    50% {
    top: 24px;
    opacity: 0.5;
    }
    100% {
    top: 8px;
    opacity: 1;
    }
}

.hero-gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbPulse 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    bottom: -15%;
    right: -15%;
    animation-delay: 3s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #14b8a6 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes orbPulse {
    0%, 100% {
    transform: scale(1);
    opacity: 0.4;
    }
    50% {
    transform: scale(1.2);
    opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-wrapper {
    gap: 3rem;
    }
    
    .hero-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    }
}

@media (max-width: 992px) {
    .welcome-hero-zx9 {
    padding: 6rem 1.5rem 3rem;
    }
    
    .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
    }
    
    .hero-left-column {
    padding: 2rem 0;
    text-align: center;
    }
    
    .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    }
    
    .hero-cta-group {
    justify-content: center;
    }
    
    .hero-right-column {
    order: -1;
    }
    
    .hero-floating-card {
    display: none;
    }
}

@media (max-width: 768px) {
    .welcome-hero-zx9 {
    min-height: auto;
    padding: 5rem 1rem 3rem;
    }
    
    .hero-main-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1rem;
    }
    
    .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    }
    
    .hero-btn-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    }
    
    .hero-left-column {
    padding: 1rem 0;
    }
    
    .hero-scroll-indicator {
    bottom: 2rem;
    }
    
    .floating-circle {
    display: none;
    }
    
    .gradient-orb {
    filter: blur(60px);
    }
}

@media (max-width: 576px) {
    .hero-main-svg {
    max-width: 350px;
    }
    
    .hero-cta-group {
    flex-direction: column;
    align-items: center;
    }
    
    .hero-btn-primary {
    width: 100%;
    }
    
    .orb-1, .orb-2, .orb-3 {
    width: 250px;
    height: 250px;
    }
}
/* Features Block: Asymmetric Floating Cards with Gradient Mesh */
.features-wave-mesh {
    position: relative;
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #fff5f7 0%, #ffe8f0 25%, #f0f9ff 50%, #e0f2fe 75%, #dbeafe 100%);
    overflow: hidden;
}

/* Animated Mesh Gradient Background */
.mesh-gradient-bg {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    background: radial-gradient(circle at 20% 30%, rgba(251, 113, 133, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 60%, rgba(147, 51, 234, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: meshMove 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(3%, -3%) rotate(1deg); }
    66% { transform: translate(-3%, 3%) rotate(-1deg); }
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 15s ease-in-out infinite;
    z-index: 2;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fb7185, transparent);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #a78bfa, transparent);
    top: 50%;
    right: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #60a5fa, transparent);
    bottom: 15%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* Container */
.features-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 10;
}

/* Asymmetric Grid Layout */
.features-grid-asymmetric {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
    align-items: start;
}

/* Feature Cards Base Styles */
.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(251, 113, 133, 0.15),
                0 8px 20px rgba(147, 51, 234, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, #fb7185, #a78bfa, #60a5fa);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(251, 113, 133, 0.25),
                0 15px 35px rgba(147, 51, 234, 0.2);
}

/* Large Feature Card */
.feature-large {
    grid-column: 1 / 8;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 242, 242, 0.9) 100%);
}

/* Medium Feature Card */
.feature-medium {
    grid-column: 8 / 13;
    transform: translateY(4rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(243, 232, 255, 0.9) 100%);
}

/* Compact Feature Card */
.feature-compact {
    grid-column: 3 / 10;
    transform: translateY(-2rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 255, 0.9) 100%);
}

/* Feature Image Wrapper */
.feature-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fce7f3, #e0e7ff, #dbeafe);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.3), transparent);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.feature-card:hover .image-glow {
    opacity: 1;
}

.feature-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.feature-card:hover .feature-img {
    transform: scale(1.1) rotate(2deg);
}

/* Feature Content */
.feature-content {
    position: relative;
    z-index: 3;
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fb7185, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
    transform: translateX(5px);
}

.feature-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #475569;
    margin: 0;
    font-weight: 400;
}

/* Accent Line */
.feature-accent-line {
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #fb7185, #a78bfa, #60a5fa);
    border-radius: 2px;
    margin-top: 1.5rem;
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .feature-accent-line {
    width: 80px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid-asymmetric {
    gap: 2.5rem;
    }
    
    .feature-large {
    grid-column: 1 / 7;
    }
    
    .feature-medium {
    grid-column: 7 / 13;
    transform: translateY(2rem);
    }
    
    .feature-compact {
    grid-column: 2 / 12;
    }
}

@media (max-width: 992px) {
    .features-wave-mesh {
    padding: 5rem 0 6rem;
    }
    
    .features-grid-asymmetric {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .feature-large,
    .feature-medium,
    .feature-compact {
    grid-column: 1 / -1;
    transform: translateY(0);
    }
    
    .feature-image-wrapper {
    height: 200px;
    }
    
    .feature-title {
    font-size: 1.75rem;
    }
    
    .floating-orb {
    display: none;
    }
}

@media (max-width: 768px) {
    .features-wave-mesh {
    padding: 4rem 0 5rem;
    }
    
    .features-container {
    padding: 0 1.5rem;
    }
    
    .feature-card {
    padding: 2rem;
    border-radius: 20px;
    }
    
    .feature-image-wrapper {
    height: 180px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    }
    
    .feature-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    }
    
    .feature-description {
    font-size: 1rem;
    line-height: 1.6;
    }
    
    .features-grid-asymmetric {
    gap: 2rem;
    }
}

@media (max-width: 576px) {
    .features-wave-mesh {
    padding: 3rem 0 4rem;
    }
    
    .feature-card {
    padding: 1.5rem;
    }
    
    .feature-image-wrapper {
    height: 160px;
    }
    
    .feature-title {
    font-size: 1.375rem;
    }
    
    .feature-description {
    font-size: 0.9375rem;
    }
}
/* Testimonials Carousel Block - Distinctive Design */
.testimonials-carousel-block {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #fce7f3 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-carousel-block::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-carousel-block .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.testimonials-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.testimonials-accent-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #6366f1 0%, #ec4899 50%, #8b5cf6 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-carousel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 480px;
    perspective: 1200px;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    max-width: 650px;
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(100%) scale(0.85) rotateY(-15deg);
    pointer-events: none;
    z-index: 1;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
    pointer-events: auto;
    z-index: 3;
}

.testimonial-card.prev {
    opacity: 0.4;
    transform: translateX(-80%) scale(0.85) rotateY(15deg);
    pointer-events: none;
    z-index: 2;
}

.testimonial-card.next {
    opacity: 0.4;
    transform: translateX(80%) scale(0.85) rotateY(-15deg);
    pointer-events: none;
    z-index: 2;
}

.testimonial-card:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.testimonial-quote-icon {
    color: #e0e7ff;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.testimonial-content {
    margin-bottom: 2.5rem;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #334155;
    margin: 0;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid #f1f5f9;
}

.author-avatar {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.author-avatar svg {
    display: block;
    width: 100%;
    height: 100%;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3.5rem;
}

.carousel-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.carousel-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border-color: #6366f1;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.carousel-btn:active:not(:disabled) {
    transform: scale(1.05);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.carousel-pagination {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pagination-dot:hover {
    background: #94a3b8;
    transform: scale(1.2);
}

.pagination-dot.active {
    width: 40px;
    border-radius: 10px;
    background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Fallback static layout (no JS) */
@supports not (display: flex) {
    .testimonial-card {
    position: static;
    opacity: 1;
    transform: none;
    margin-bottom: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-carousel-block {
    padding: 5rem 0;
    }

    .testimonials-carousel {
    min-height: 520px;
    }

    .testimonial-card {
    padding: 2.5rem 2rem;
    }

    .testimonial-card.prev,
    .testimonial-card.next {
    opacity: 0;
    transform: translateX(0) scale(0.9);
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-block {
    padding: 4rem 0;
    }

    .testimonials-header {
    margin-bottom: 3rem;
    }

    .testimonials-title {
    font-size: 2.25rem;
    }

    .testimonials-carousel {
    min-height: 560px;
    }

    .testimonial-card {
    padding: 2rem 1.5rem;
    border-radius: 25px;
    max-width: 100%;
    }

    .testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    }

    .testimonial-author {
    gap: 1rem;
    }

    .author-avatar {
    width: 56px;
    height: 56px;
    }

    .author-name {
    font-size: 1.125rem;
    }

    .carousel-navigation {
    gap: 1.5rem;
    margin-top: 2.5rem;
    }

    .carousel-btn {
    width: 48px;
    height: 48px;
    }

    .carousel-btn svg {
    width: 20px;
    height: 20px;
    }
}

@media (max-width: 576px) {
    .testimonials-carousel-block {
    padding: 3rem 0;
    }

    .testimonials-carousel-block .container {
    padding: 0 1rem;
    }

    .testimonials-title {
    font-size: 2rem;
    }

    .testimonials-accent-line {
    width: 80px;
    height: 4px;
    }

    .testimonials-carousel {
    min-height: 600px;
    }

    .testimonial-card {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
    }

    .testimonial-quote-icon svg {
    width: 36px;
    height: 36px;
    }

    .testimonial-text {
    font-size: 1.0625rem;
    }

    .carousel-btn {
    width: 44px;
    height: 44px;
    }

    .pagination-dot {
    width: 10px;
    height: 10px;
    }

    .pagination-dot.active {
    width: 32px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .testimonial-card,
    .carousel-btn,
    .pagination-dot,
    .author-avatar {
    transition: none;
    }
}

.carousel-btn:focus-visible {
    outline: 3px solid #6366f1;
    outline-offset: 4px;
}

.pagination-dot:focus-visible {
    outline: 2px solid #6366f1;
    outline-offset: 3px;
}
/* Services Block - Floating Cards with Gradient Mesh */
.services-float-mesh {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 50%, #ffeaa7 100%);
    overflow: hidden;
}

.services-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
}

.services-header-wrap {
    text-align: center;
    margin-bottom: 5rem;
}

.services-main-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: #2d3748;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.services-title-accent {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #ff6b9d 0%, #c44569 50%, #ff6b9d 100%);
    margin: 0 auto;
    border-radius: 10px;
}

/* Grid Layout */
.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Service Card */
.service-card-float {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-card-float:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.25);
}

.service-card-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d 0%, #c44569 50%, #4facfe 100%);
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-float:hover::before {
    opacity: 1;
}

/* Icon Container */
.service-icon-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 157, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-card-float:hover .service-icon-container {
    transform: rotate(8deg) scale(1.1);
    background: rgba(255, 107, 157, 0.15);
}

.service-svg-icon {
    width: 56px;
    height: 56px;
    transition: transform 0.3s ease;
}

.service-card-float:hover .service-svg-icon {
    transform: scale(1.15);
}

/* Service Name */
.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* Service Description */
.service-description {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* More Button */
.service-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: 2px solid transparent;
}

.service-more-btn:hover {
    background: linear-gradient(135deg, #ff5a8d 0%, #b33559 100%);
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.service-more-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.3);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.service-more-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Background Blobs */
.services-bg-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.4;
    filter: blur(60px);
    z-index: 1;
    animation: blob-float 20s ease-in-out infinite;
}

.services-blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ffc3a0 100%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.services-blob-2 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    bottom: -15%;
    right: -5%;
    animation-delay: 7s;
}

.services-blob-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 14s;
}

@keyframes blob-float {
    0%, 100% {
    transform: translate(0, 0) scale(1);
    }
    33% {
    transform: translate(30px, -30px) scale(1.1);
    }
    66% {
    transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Tablet Responsive */
@media (max-width: 992px) {
    .services-float-mesh {
    padding: 5rem 0;
    }
    
    .services-main-title {
    font-size: 2.75rem;
    }
    
    .services-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    }
    
    .service-card-float {
    padding: 2rem;
    }
    
    .services-bg-blob {
    filter: blur(50px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-float-mesh {
    padding: 4rem 0;
    }
    
    .services-container {
    padding: 0 1.5rem;
    }
    
    .services-header-wrap {
    margin-bottom: 3rem;
    }
    
    .services-main-title {
    font-size: 2.25rem;
    }
    
    .services-title-accent {
    width: 80px;
    height: 5px;
    }
    
    .services-grid-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    }
    
    .service-card-float {
    padding: 1.75rem;
    }
    
    .service-icon-container {
    width: 70px;
    height: 70px;
    }
    
    .service-svg-icon {
    width: 48px;
    height: 48px;
    }
    
    .service-name {
    font-size: 1.375rem;
    }
    
    .service-description {
    font-size: 1rem;
    }
    
    .service-more-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    }
    
    .services-bg-blob {
    filter: blur(40px);
    opacity: 0.3;
    }
    
    .services-blob-1 {
    width: 350px;
    height: 350px;
    }
    
    .services-blob-2 {
    width: 300px;
    height: 300px;
    }
    
    .services-blob-3 {
    width: 280px;
    height: 280px;
    }
}

@media (max-width: 576px) {
    .services-main-title {
    font-size: 1.875rem;
    }
    
    .service-card-float {
    padding: 1.5rem;
    }
    
    .service-icon-container {
    width: 64px;
    height: 64px;
    }
    
    .service-svg-icon {
    width: 42px;
    height: 42px;
    }
}
/* FAQ Section: Pure CSS Accordion with Vibrant Gradient Cards */
.faq-section-vt82 {
    padding: 7rem 0;
    background: linear-gradient(165deg, #f0f4ff 0%, #fef3f8 50%, #fff5f0 100%);
    position: relative;
    overflow: hidden;
}

.faq-section-vt82::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section-vt82::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 168, 212, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section-vt82 .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.faq-header-wrap {
    text-align: center;
    margin-bottom: 4.5rem;
}

.faq-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e1b4b;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #f97316 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-accordion-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.faq-item-card:hover {
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.15);
    transform: translateY(-4px);
    border-color: rgba(167, 139, 250, 0.3);
}

.faq-checkbox {
    display: none;
}

.faq-question-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    position: relative;
    gap: 1.5rem;
}

.faq-question-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #6366f1 0%, #ec4899 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-checkbox:checked + .faq-question-label::before {
    transform: scaleY(1);
}

.faq-question-label:hover {
    background: linear-gradient(90deg, rgba(167, 139, 250, 0.05) 0%, rgba(249, 168, 212, 0.05) 100%);
}

.faq-question-text {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e1b4b;
    line-height: 1.5;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-checkbox:checked + .faq-question-label .faq-question-text {
    color: #6366f1;
}

.faq-icon-toggle {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f4ff 0%, #fef3f8 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-icon-toggle svg {
    position: absolute;
    color: #6366f1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-checkbox:checked + .faq-question-label .icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-checkbox:checked + .faq-question-label .icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-checkbox:checked + .faq-question-label .faq-icon-toggle {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
}

.faq-checkbox:checked + .faq-question-label .faq-icon-toggle svg {
    color: #ffffff;
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-checkbox:checked ~ .faq-answer-wrapper {
    max-height: 800px;
}

.faq-answer-content {
    padding: 0 2rem 2rem 2rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.faq-checkbox:checked ~ .faq-answer-wrapper .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
}

.faq-answer-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

/* Focus States for Accessibility */
.faq-checkbox:focus + .faq-question-label {
    outline: 3px solid rgba(99, 102, 241, 0.4);
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section-vt82 {
    padding: 5rem 0;
    }

    .faq-main-title {
    font-size: 2.25rem;
    }

    .faq-header-wrap {
    margin-bottom: 3rem;
    }

    .faq-accordion-grid {
    gap: 1rem;
    }

    .faq-item-card {
    border-radius: 18px;
    }

    .faq-question-label {
    padding: 1.25rem 1.25rem;
    gap: 1rem;
    }

    .faq-question-text {
    font-size: 1.125rem;
    }

    .faq-icon-toggle {
    width: 36px;
    height: 36px;
    }

    .faq-icon-toggle svg {
    width: 20px;
    height: 20px;
    }

    .faq-answer-content {
    padding: 0 1.25rem 1.5rem 1.25rem;
    }

    .faq-answer-content p {
    font-size: 1rem;
    line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .faq-section-vt82 {
    padding: 4rem 0;
    }

    .faq-main-title {
    font-size: 1.875rem;
    }

    .faq-question-label {
    padding: 1rem 1rem;
    }

    .faq-question-text {
    font-size: 1rem;
    }

    .faq-answer-content p {
    font-size: 0.9375rem;
    }
}
/* Contact Form Section - Asymmetric Split with Floating Card Design */
.contact-form-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.contact-content-wrapper {
    display: grid;

}

/* Header Side */
.contact-header-side {
    padding: 3rem 0;
}

.contact-header-content {
    position: relative;
}

.contact-main-header {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 2rem 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-decoration-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ffd93d 100%);
    border-radius: 10px;
    position: relative;
    animation: contact-line-pulse 2s ease-in-out infinite;
}

@keyframes contact-line-pulse {
    0%, 100% {
    transform: scaleX(1);
    opacity: 1;
    }
    50% {
    transform: scaleX(1.2);
    opacity: 0.8;
    }
}

/* Form Side */
.contact-form-side {
    position: relative;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    padding: 3.5rem;
    box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff6b6b, #ffd93d, #6bcf7f, #4ecdc4);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-form-card:hover {
    transform: translateY(-8px);
    box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.contact-form-card:hover::before {
    opacity: 1;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1.125rem 0rem;
    font-size: 1.0625rem;
    color: #2c3e50;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 16px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    line-height: 1.6;
}

.form-input:focus,
.form-textarea:focus {
    background: #ffffff;
    border-color: #4ecdc4;
    box-shadow: 
    0 0 0 4px rgba(78, 205, 196, 0.1),
    0 8px 20px rgba(78, 205, 196, 0.15);
    transform: translateY(-2px);
}

.form-input:hover,
.form-textarea:hover {
    background: #ffffff;
    border-color: #e0e0e0;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    max-height: 300px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #95a5a6;
    opacity: 0.7;
}

/* Submit Button */
.form-submit-wrapper {
    margin-top: 1rem;
}

.form-submit-btn {
    width: 100%;
    padding: 1.375rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff7043 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.4);
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.3);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-arrow {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    display: inline-block;
}

.form-submit-btn:hover .btn-arrow {
    transform: translateX(6px);
}

/* Background Decorations */
.contact-bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
}

.contact-bg-circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ff6b6b 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: contact-float-1 20s ease-in-out infinite;
}

.contact-bg-circle-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #4ecdc4 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: contact-float-2 18s ease-in-out infinite;
}

.contact-bg-blob {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ffd93d 0%, transparent 70%);
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: contact-blob-morph 15s ease-in-out infinite;
}

@keyframes contact-float-1 {
    0%, 100% {
    transform: translate(0, 0) scale(1);
    }
    50% {
    transform: translate(50px, 50px) scale(1.1);
    }
}

@keyframes contact-float-2 {
    0%, 100% {
    transform: translate(0, 0) scale(1);
    }
    50% {
    transform: translate(-40px, -40px) scale(1.15);
    }
}

@keyframes contact-blob-morph {
    0%, 100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(-50%, -50%) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .contact-header-side {
    text-align: center;
    padding: 2rem 0;
    }
    
    .contact-decoration-line {
    margin: 0 auto;
    }
    
    .contact-main-header {
    font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .contact-form-card {
    padding: 2.5rem;
    }
    
    .contact-form-section {
    padding: 5rem 0;
    min-height: auto;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
    padding: 4rem 0;
    }
    
    .contact-container {
    padding: 0 1.5rem;
    }
    
    .contact-form-card {
    padding: 2rem 1.5rem;
    border-radius: 24px;
    }
    
    .contact-form {
    gap: 1.5rem;
    }
    
    .form-input,
    .form-textarea {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: 12px;
    }
    
    .form-submit-btn {
    padding: 1.125rem 2rem;
    font-size: 1rem;
    border-radius: 12px;
    }
    
    .contact-main-header {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    }
    
    .btn-arrow {
    font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .contact-form-section {
    padding: 3rem 0;
    }
    
    .contact-container {
    padding: 0 1rem;
    }
    
    .contact-form-card {
    padding: 1.75rem 1.25rem;
    }
    
    .form-label {
    font-size: 0.8125rem;
    }
    
    .contact-main-header {
    font-size: 1.875rem;
    }
    
    .contact-decoration-line {
    width: 80px;
    height: 5px;
    }
}

/* Accessibility - Focus Visible */
.form-input:focus-visible,
.form-textarea:focus-visible,
.form-submit-btn:focus-visible {
    outline: 3px solid #4ecdc4;
    outline-offset: 3px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .contact-form-card {
    border: 2px solid #2c3e50;
    }
    
    .form-input,
    .form-textarea {
    border: 2px solid #2c3e50;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    }
}
/* Contact Information Block - Asymmetric Floating Map Design */
.contact-info-section {
    position: relative;
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #f8f9ff 0%, #fff5f8 50%, #f0f9ff 100%);
    overflow: hidden;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Header Styling */
.contact-header {
    margin-bottom: 4rem;
}

.contact-main-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-accent-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #ff6b9d 0%, #ffa07a 50%, #ffd700 100%);
    border-radius: 3px;
    position: relative;
}

.title-accent-line::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #40e0d0;
    border-radius: 50%;
    opacity: 0.3;
}

/* Contact Details Grid */
.contact-details-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #ff6b9d 0%, #ffa07a 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.15);
}

.contact-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

/* Icon Styling */
.contact-icon-wrapper {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    position: relative;
    transition: all 0.4s ease;
}

.address-icon {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    color: #ffffff;
}

.phone-icon {
    background: linear-gradient(135deg, #40e0d0 0%, #56efde 100%);
    color: #ffffff;
}

.email-icon {
    background: linear-gradient(135deg, #ffa07a 0%, #ffb894 100%);
    color: #ffffff;
}

.contact-icon {
    width: 32px;
    height: 32px;
}

.contact-card:hover .contact-icon-wrapper {
    transform: rotate(5deg) scale(1.05);
}

/* Contact Content */
.contact-content {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 64px;
}

.contact-value {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.6;
    word-break: break-word;
}

.address-text {
    font-weight: 500;
}

.phone-link,
.email-link {
    text-decoration: none;
    color: #1a1a2e;
    transition: all 0.3s ease;
    position: relative;
}

.phone-link::after,
.email-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d 0%, #40e0d0 100%);
    transition: width 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
    color: #ff6b9d;
}

.phone-link:hover::after,
.email-link:hover::after {
    width: 100%;
}

.phone-link:focus,
.email-link:focus {
    outline: 3px solid #ff6b9d;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Map Container */
.contact-map-container {
    position: relative;
    height: 600px;
}

.map-frame-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-frame-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.map-frame-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Decorative Blob Behind Map */
.map-decorative-blob {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #ff6b9d 0%, #40e0d0 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.08;
    z-index: -1;
    animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    33% {
    transform: translate(20px, -20px) rotate(120deg);
    border-radius: 50% 60% 50% 40% / 60% 40% 60% 40%;
    }
    66% {
    transform: translate(-20px, 20px) rotate(240deg);
    border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
    }
}

/* Background Decorative Elements */
.contact-bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    z-index: 1;
}

.decoration-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff6b9d 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.decoration-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #40e0d0 0%, transparent 70%);
    bottom: -150px;
    right: 10%;
}

.decoration-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #ffa07a 0%, transparent 70%);
    top: 50%;
    right: -125px;
    transform: translateY(-50%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
    }

    .contact-map-container {
    height: 500px;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
    padding: 5rem 0 6rem;
    }

    .contact-container {
    padding: 0 1.5rem;
    gap: 3rem;
    }

    .contact-main-title {
    font-size: 2.5rem;
    }

    .contact-header {
    margin-bottom: 3rem;
    }

    .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    }

    .contact-card:hover {
    transform: translateY(-4px);
    }

    .contact-icon-wrapper {
    width: 56px;
    height: 56px;
    }

    .contact-icon {
    width: 28px;
    height: 28px;
    }

    .contact-value {
    font-size: 1.125rem;
    }

    .contact-map-container {
    height: 400px;
    }

    .map-frame-wrapper {
    border-radius: 24px;
    }

    .map-decorative-blob {
    width: 200px;
    height: 200px;
    top: -30px;
    right: -30px;
    }

    .decoration-1 {
    width: 250px;
    height: 250px;
    }

    .decoration-2 {
    width: 200px;
    height: 200px;
    }

    .decoration-3 {
    width: 180px;
    height: 180px;
    }
}

@media (max-width: 480px) {
    .contact-main-title {
    font-size: 2rem;
    }

    .contact-card {
    padding: 1.5rem 1rem;
    }

    .contact-value {
    font-size: 1rem;
    }

    .contact-map-container {
    height: 350px;
    }
}
/* Modern Split Footer - Unique Design: Gradient Accent with Floating Elements */
.footer-modern-split {
    position: relative;
    background: linear-gradient(165deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e8eaf6;
    padding: 5rem 0 2rem;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Top Grid Layout */
.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
}

/* Company Information Block */
.footer-company-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand-wrapper {
    position: relative;
}

.footer-brand-name {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.footer-brand-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e94560 0%, #f39c12 100%);
    border-radius: 2px;
    position: relative;
}

.footer-brand-accent::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: #ffffff;
    border-radius: 2px;
    animation: accentSlide 2s ease-in-out infinite;
}

@keyframes accentSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(150%); }
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.footer-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: #e94560;
    margin-top: 2px;
}

.footer-contact-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #b0b8c4;
}

.footer-contact-link {
    font-size: 1rem;
    color: #b0b8c4;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e94560, #f39c12);
    transition: width 0.3s ease;
}

.footer-contact-link:hover {
    color: #ffffff;
}

.footer-contact-link:hover::after {
    width: 100%;
}

/* Navigation Blocks */
.footer-nav-block,
.footer-legal-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-nav-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-nav-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #e94560;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #b0b8c4;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link-dot {
    width: 6px;
    height: 6px;
    background: #e94560;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-nav-link:hover {
    color: #ffffff;
    padding-left: 0.5rem;
}

.footer-nav-link:hover .footer-link-dot {
    background: #f39c12;
    transform: scale(1.4);
}

.footer-nav-link:focus {
    outline: 2px solid #e94560;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Decorative Divider */
.footer-divider-wrapper {
    position: relative;
    height: 1px;
    margin: 3rem 0 2.5rem;
}

.footer-divider-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-divider-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, #e94560 0%, #f39c12 50%, transparent 100%);
    animation: dividerSlide 4s ease-in-out infinite;
}

@keyframes dividerSlide {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(150%); opacity: 0.6; }
}

/* Bottom Section */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-copyright {
    font-size: 0.9375rem;
    color: #8492a6;
    margin: 0;
    line-height: 1.6;
}

/* Background Decorations */
.footer-bg-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.08;
}

.footer-bg-circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #e94560 0%, transparent 70%);
    top: -250px;
    right: -150px;
    animation: floatCircle1 15s ease-in-out infinite;
}

.footer-bg-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #f39c12 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    animation: floatCircle2 18s ease-in-out infinite;
}

@keyframes floatCircle1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

@keyframes floatCircle2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -40px) scale(1.15); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2.5rem;
    }

    .footer-company-block {
    grid-column: 1 / -1;
    }

    .footer-brand-name {
    font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .footer-modern-split {
    padding: 4rem 0 1.5rem;
    }

    .footer-container {
    padding: 0 1.5rem;
    }

    .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    }

    .footer-company-block {
    grid-column: 1;
    }

    .footer-brand-name {
    font-size: 1.5rem;
    }

    .footer-contact-item {
    flex-direction: row;
    align-items: flex-start;
    }

    .footer-nav-heading {
    font-size: 0.9375rem;
    }

    .footer-nav-link {
    font-size: 0.9375rem;
    }

    .footer-bg-circle-1 {
    width: 350px;
    height: 350px;
    top: -175px;
    right: -100px;
    }

    .footer-bg-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -80px;
    }

    .footer-divider-wrapper {
    margin: 2.5rem 0 2rem;
    }
}

@media (max-width: 576px) {
    .footer-modern-split {
    padding: 3rem 0 1.5rem;
    }

    .footer-container {
    padding: 0 1.25rem;
    }

    .footer-top-grid {
    gap: 2rem;
    }

    .footer-brand-name {
    font-size: 1.375rem;
    }

    .footer-contact-text,
    .footer-contact-link,
    .footer-nav-link {
    font-size: 0.875rem;
    }

    .footer-icon {
    width: 20px;
    height: 20px;
    }

    .footer-copyright {
    font-size: 0.875rem;
    }

    .footer-divider-wrapper {
    margin: 2rem 0 1.5rem;
    }
}
