@import url(//fonts.googleapis.com/css?family=Open+Sans:300,400,600);

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #ed74cc4d;
}

#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;
}
/* Header: Floating Glass Navigation with Split Layout */
.header-quantum-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-quantum-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.header-quantum-nav.header-scrolled {
    padding: 1rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.header-quantum-nav.header-scrolled::before {
    opacity: 1;
    background: rgba(255, 255, 255, 0.95);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Brand Section */
.brand-section {
    position: relative;
    z-index: 10;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-2px);
}

.brand-icon {
    width: 42px;
    height: 42px;
    color: #6366f1;
    transition: all 0.3s ease;
}

.brand-logo:hover .brand-icon {
    color: #4f46e5;
    transform: rotate(15deg);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.02em;
}

/* Desktop Navigation */
.nav-main {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #6366f1;
}

.link-text {
    position: relative;
}

.link-hover-line {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link-about {
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link-about:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    color: #ffffff;
}

.nav-link-about .link-hover-line {
    display: none;
}

/* Dropdown Arrow */
.dropdown-arrow {
    transition: transform 0.3s ease;
}

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

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

.dropdown-menu-new {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 240px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

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

.dropdown-item {
    list-style: none;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: #475569;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    color: #6366f1;
    transform: translateX(4px);
}

.dropdown-icon {
    color: #94a3b8;
    transition: color 0.2s ease;
}

.dropdown-link:hover .dropdown-icon {
    color: #6366f1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 10001;
}

.hamburger-line {
    width: 26px;
    height: 2px;
    background: #1e293b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

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

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #ffffff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    overflow-y: auto;
}

.nav-mobile.mobile-menu-active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.mobile-menu-close {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #64748b;
    transition: color 0.2s ease;
}

.mobile-menu-close:hover {
    color: #1e293b;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 1rem;
}

.mobile-nav-item {
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0.5rem;
    color: #475569;
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 500;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #6366f1;
}

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

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

/* Mobile Dropdown */
.mobile-dropdown-menu-new {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-item.mobile-dropdown-active .mobile-dropdown-menu-new {
    max-height: 500px;
}

.mobile-dropdown-item {
    border-top: 1px solid #f1f5f9;
}

.mobile-dropdown-link {
    display: block;
    padding: 0.875rem 0.5rem 0.875rem 2rem;
    color: #64748b;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.mobile-dropdown-link:hover {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

/* Responsive */
@media (max-width: 992px) {
    .nav-main {
    display: none;
    }

    .mobile-menu-toggle {
    display: flex;
    }
}

@media (max-width: 768px) {
    .header-container {
    padding: 0 1.5rem;
    }

    .brand-icon {
    width: 36px;
    height: 36px;
    }

    .brand-text {
    font-size: 1.25rem;
    }

    .nav-mobile {
    width: 280px;
    }
}

@media (max-width: 576px) {
    .header-quantum-nav {
    padding: 1rem 0;
    }

    .header-container {
    padding: 0 1rem;
    }

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

    .brand-text {
    font-size: 1.125rem;
    }
}
/* Hero Section: Asymmetric Split with Neon Accents */
.hero-section-vx9k {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a1a1a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
}

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

/* Animated Background Shapes */
.hero-bg-shapes-qr5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape-circle-1 {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    animation: float-shape-1 20s ease-in-out infinite;
}

.shape-triangle-1 {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid rgba(255, 0, 128, 0.1);
    animation: float-shape-2 15s ease-in-out infinite;
}

.shape-square-1 {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: rgba(255, 217, 61, 0.08);
    transform: rotate(45deg);
    animation: rotate-shape 30s linear infinite;
}

.shape-blob-1 {
    position: absolute;
    bottom: 10%;
    right: 20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph-blob 12s ease-in-out infinite;
}

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

@keyframes float-shape-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 20px); }
}

@keyframes rotate-shape {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

@keyframes morph-blob {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    50% { border-radius: 50% 50% 30% 70% / 30% 70% 70% 30%; }
    75% { border-radius: 30% 70% 50% 50% / 70% 30% 30% 70%; }
}

/* Header Navigation */
.hero-header-k2p {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 100;
}

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

.nav-wrapper-tj4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo-container-bn6 {
    display: flex;
    align-items: center;
}

.logo-icon-wp2 {
    width: 50px;
    height: 50px;
    color: #00ff88;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    transition: all 0.4s ease;
}

.logo-icon-wp2:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8));
}

/* Mobile Menu Toggle */
.menu-checkbox-yt7 {
    display: none;
}

.hamburger-label-ks3 {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
    position: relative;
}

.hamburger-line-1,
.hamburger-line-2,
.hamburger-line-3 {
    width: 30px;
    height: 3px;
    background: #00ff88;
    margin: 4px 0;
    transition: all 0.4s ease;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Navigation Menu */
.nav-menu-overlay-lr9 {
    display: flex;
    align-items: center;
}

.nav-list-qm4 {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item-pw8 {
    position: relative;
}

.nav-link-zh5 {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link-zh5::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #ff0080, #00d4ff);
    transition: width 0.4s ease;
}

.nav-link-zh5:hover {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

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

/* Hero Content Grid */
.hero-content-grid-sc1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 120px);
    padding-top: 120px;
}

.hero-text-column-vb7 {
    position: relative;
    z-index: 20;
}

.hero-text-wrapper-nm3 {
    max-width: 600px;
}

.hero-heading-dp9 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subheading-kx2 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 3rem 0;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
}

/* CTA Button */
.hero-cta-group-fr6 {
    display: flex;
    gap: 1.5rem;
}

.hero-cta-primary-jt8 {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #ff0080 0%, #ff0080 50%, #00ff88 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-cta-primary-jt8::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-cta-primary-jt8:hover {
    background-position: 100% 0%;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.6);
}

.hero-cta-primary-jt8:hover::before {
    transform: translateX(100%);
}

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

.cta-arrow-icon-bm1 {
    width: 24px;
    height: 24px;
    transition: transform 0.4s ease;
}

.hero-cta-primary-jt8:hover .cta-arrow-icon-bm1 {
    transform: translateX(5px);
}

/* Hero Visual Column */
.hero-visual-column-hq5 {
    position: relative;
    height: 600px;
}

.hero-image-container-tk9 {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-wrapper-xl4 {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: morph-image 15s ease-in-out infinite;
}

@keyframes morph-image {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    50% { border-radius: 50% 50% 30% 70% / 30% 70% 70% 30%; }
    75% { border-radius: 30% 70% 50% 50% / 70% 30% 30% 70%; }
}

.image-overlay-gradient-pn7 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.3) 0%, rgba(0, 255, 136, 0.3) 100%);
    mix-blend-mode: multiply;
}

/* Floating SVG Elements */
.floating-element-rt2 {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
}

.float-1 {
    top: -10%;
    right: 10%;
    animation: float-up-down 6s ease-in-out infinite;
}

.float-2 {
    bottom: 10%;
    left: -5%;
    animation: float-left-right 8s ease-in-out infinite;
}

.float-3 {
    top: 50%;
    right: -5%;
    animation: float-rotate 10s ease-in-out infinite;
}

@keyframes float-up-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

@keyframes float-left-right {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(30px); }
}

@keyframes float-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

/* Scroll Indicator */
.scroll-indicator-vy3 {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
}

.scroll-line-animated-qj8 {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #00ff88, transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content-grid-sc1 {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 100px;
    }
    
    .hero-visual-column-hq5 {
    height: 400px;
    order: -1;
    }
    
    .hero-heading-dp9 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .hero-subheading-kx2 {
    font-size: 1.25rem;
    }
    
    .hamburger-label-ks3 {
    display: flex;
    }
    
    .nav-menu-overlay-lr9 {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, #1a0a1a 0%, #0a1a1a 100%);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    }
    
    .menu-checkbox-yt7:checked ~ .nav-menu-overlay-lr9 {
    transform: translateX(0);
    }
    
    .nav-list-qm4 {
    flex-direction: column;
    gap: 2rem;
    }
    
    .nav-link-zh5 {
    font-size: 1.5rem;
    display: block;
    padding: 1rem 0;
    }
    
    /* Hamburger Animation */
    .menu-checkbox-yt7:checked ~ .hamburger-label-ks3 .hamburger-line-1 {
    transform: rotate(45deg) translate(8px, 8px);
    background: #ff0080;
    }
    
    .menu-checkbox-yt7:checked ~ .hamburger-label-ks3 .hamburger-line-2 {
    opacity: 0;
    }
    
    .menu-checkbox-yt7:checked ~ .hamburger-label-ks3 .hamburger-line-3 {
    transform: rotate(-45deg) translate(8px, -8px);
    background: #ff0080;
    }
    
    /* Mobile Menu Overlay */
    .menu-checkbox-yt7:checked ~ .nav-menu-overlay-lr9::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
    animation: fade-in 0.4s ease;
    }
    
    @keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
    }
}

@media (max-width: 576px) {
    .hero-container-mw7 {
    padding: 0 1.5rem;
    }
    
    .hero-heading-dp9 {
    font-size: 2.5rem;
    }
    
    .hero-subheading-kx2 {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    }
    
    .hero-cta-primary-jt8 {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .hero-visual-column-hq5 {
    height: 300px;
    }
    
    .nav-menu-overlay-lr9 {
    max-width: 100%;
    }
    
    .shape-circle-1,
    .shape-triangle-1 {
    width: 150px;
    height: 150px;
    }
}
/* Futures Block - Asymmetric Grid with Coral Gradient Theme */
.futures-block-asymmetric {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(160deg, #fff5f7 0%, #ffe8ee 50%, #ffd4e0 100%);
    overflow: hidden;
}

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

/* Header Section */
.futures-header {
    text-align: center;
    margin-bottom: 5rem;
}

.futures-header h2 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 50%, #ffa5bc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.futures-subtitle {
    font-size: 1.375rem;
    color: #9d4466;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Asymmetric Grid Layout */
.futures-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 2.5rem;
    position: relative;
}

/* Feature Card Base Styles */
.future-card {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(255, 107, 157, 0.1);
}

.future-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(255, 165, 188, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.future-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(255, 107, 157, 0.25);
    border-color: rgba(255, 107, 157, 0.3);
}

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

/* Card 1 - Large Left Block (spans 2 rows) */
.future-card-1 {
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
}

/* Card 2 - Top Right */
.future-card-2 {
    grid-column: 2;
    grid-row: 1;
}

/* Card 3 - Bottom Right */
.future-card-3 {
    grid-column: 2;
    grid-row: 2;
}

/* Image Wrapper */
.future-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
    background: linear-gradient(135deg, #ffebf0 0%, #ffd9e3 100%);
}

.future-card-1 .future-image-wrapper {
    padding-top: 60%;
}

.future-image-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.2) 0%, transparent 70%);
    transition: transform 0.6s ease;
}

.future-card:hover .future-image-backdrop {
    transform: translate(-50%, -50%) scale(1.2);
}

.future-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.future-card:hover .future-image {
    transform: translate(-50%, -50%) scale(1.08);
}

/* Feature Number Badge */
.future-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
    z-index: 3;
    transition: transform 0.4s ease;
}

.future-card:hover .future-number {
    transform: rotate(360deg) scale(1.1);
}

/* Content Section */
.future-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.future-card-1 .future-content {
    padding: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.future-content h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #2d1520;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.future-card-1 .future-content h3 {
    font-size: 2.25rem;
}

.future-card:hover .future-content h3 {
    color: #ff6b9d;
}

.future-content p {
    font-size: 1.125rem;
    color: #6d4556;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.future-card-1 .future-content p {
    font-size: 1.25rem;
}

/* Accent Line */
.future-accent-line {
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d 0%, #ff8fab 50%, #ffa5bc 100%);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Decorative Background Shapes */
.futures-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.3) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 165, 188, 0.3) 0%, transparent 70%);
    bottom: -50px;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 139, 171, 0.3) 0%, transparent 70%);
    top: 40%;
    right: -80px;
    animation-delay: 10s;
}

@keyframes 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);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .futures-header h2 {
    font-size: 3.5rem;
    }
    
    .futures-grid {
    gap: 2rem;
    }
}

@media (max-width: 992px) {
    .futures-block-asymmetric {
    padding: 6rem 0;
    }
    
    .futures-header {
    margin-bottom: 4rem;
    }
    
    .futures-header h2 {
    font-size: 3rem;
    }
    
    .futures-subtitle {
    font-size: 1.25rem;
    }
    
    .futures-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
    }
    
    .future-card-1,
    .future-card-2,
    .future-card-3 {
    grid-column: 1;
    grid-row: auto;
    }
    
    .future-content h3 {
    font-size: 1.75rem;
    }
    
    .future-card-1 .future-content h3 {
    font-size: 2rem;
    }
    
    .future-content p {
    font-size: 1.0625rem;
    }
    
    .future-card-1 .future-content p {
    font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .futures-block-asymmetric {
    padding: 5rem 0;
    }
    
    .futures-container {
    padding: 0 1.5rem;
    }
    
    .futures-header {
    margin-bottom: 3rem;
    }
    
    .futures-header h2 {
    font-size: 2.5rem;
    }
    
    .futures-subtitle {
    font-size: 1.125rem;
    }
    
    .futures-grid {
    gap: 1.5rem;
    }
    
    .future-content {
    padding: 2rem;
    }
    
    .future-card-1 .future-content {
    padding: 2.5rem;
    }
    
    .future-content h3 {
    font-size: 1.5rem;
    }
    
    .future-card-1 .future-content h3 {
    font-size: 1.75rem;
    }
    
    .future-content p {
    font-size: 1rem;
    }
    
    .future-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    top: 1rem;
    right: 1rem;
    }
    
    .bg-shape {
    opacity: 0.25;
    }
    
    .shape-1 {
    width: 300px;
    height: 300px;
    }
    
    .shape-2 {
    width: 200px;
    height: 200px;
    }
    
    .shape-3 {
    width: 180px;
    height: 180px;
    }
}

@media (max-width: 576px) {
    .futures-block-asymmetric {
    padding: 4rem 0;
    }
    
    .futures-header h2 {
    font-size: 2rem;
    }
    
    .futures-subtitle {
    font-size: 1rem;
    }
    
    .future-content {
    padding: 1.5rem;
    }
    
    .future-card-1 .future-content {
    padding: 2rem;
    }
    
    .future-content h3 {
    font-size: 1.375rem;
    margin-bottom: 0.875rem;
    }
    
    .future-card-1 .future-content h3 {
    font-size: 1.625rem;
    }
    
    .future-content p {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    }
    
    .future-number {
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
    }
    
    .future-card:hover {
    transform: translateY(-8px);
    }
}
/* 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 Section: Asymmetric Grid with Gradient Accents */
.services-wave-grid {
    position: relative;
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    overflow: hidden;
}

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

/* Header Styling */
.services-header-wrap {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

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

.header-accent-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #06b6d4 0%, #8b5cf6 50%, #ec4899 100%);
    margin: 0 auto;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* Grid Container */
.services-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
}

/* Service Card Base Styles */
.service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(0.8);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: currentColor;
}

.service-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Individual Card Colors */
.service-card-1 {
    color: #06b6d4;
}

.service-card-1:hover {
    border-color: #06b6d4;
}

.service-card-2 {
    color: #8b5cf6;
}

.service-card-2:hover {
    border-color: #8b5cf6;
}

.service-card-3 {
    color: #ec4899;
}

.service-card-3:hover {
    border-color: #ec4899;
}

.service-card-4 {
    color: #f59e0b;
}

.service-card-4:hover {
    border-color: #f59e0b;
}

.service-card-5 {
    color: #10b981;
}

.service-card-5:hover {
    border-color: #10b981;
}

.service-card-6 {
    color: #ef4444;
}

.service-card-6:hover {
    border-color: #ef4444;
}

/* Icon Wrapper */
.service-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: currentColor;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card:hover .service-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.service-svg-icon {
    width: 48px;
    height: 48px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

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

/* Service Content */
.service-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: currentColor;
}

.service-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
    flex: 1;
}

/* Service Button */
.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.service-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

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

.service-btn:focus {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}

/* Decorative Background Blobs */
.bg-blob-1,
.bg-blob-2,
.bg-blob-3 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.bg-blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    top: -10%;
    left: -5%;
    filter: blur(60px);
}

.bg-blob-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #ec4899 0%, #f59e0b 100%);
    bottom: -15%;
    right: -10%;
    filter: blur(80px);
}

.bg-blob-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(70px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    }
    
    .services-wave-grid {
    padding: 5rem 0 6rem;
    }
    
    .services-header-wrap {
    margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .services-wave-grid {
    padding: 4rem 0 5rem;
    }
    
    .services-wave-grid .container {
    padding: 0 1.5rem;
    }
    
    .services-header-wrap {
    margin-bottom: 3rem;
    }
    
    .services-main-heading {
    margin-bottom: 1rem;
    }
    
    .header-accent-line {
    width: 80px;
    height: 5px;
    }
}

@media (max-width: 576px) {
    .services-grid-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }
    
    .service-card {
    padding: 2rem 1.5rem;
    }
    
    .service-icon-wrapper {
    width: 70px;
    height: 70px;
    }
    
    .service-svg-icon {
    width: 40px;
    height: 40px;
    }
    
    .service-title {
    font-size: 1.25rem;
    }
    
    .service-description {
    font-size: 1rem;
    }
    
    .service-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    }
    
    .bg-blob-1,
    .bg-blob-2,
    .bg-blob-3 {
    display: none;
    }
}
/* FAQ Section: Geometric Card Grid Design - NO :root variables */
.faq-section-geo-847 {
    padding: 8rem 0;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.faq-section-geo-847::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section-geo-847::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 45%;
    height: 65%;
    background: radial-gradient(circle, rgba(32, 201, 151, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section-geo-847 .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Header Styling */
.faq-header-wrapper-847 {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.faq-main-title-847 {
    font-size: 4rem;
    font-weight: 800;
    color: #2d3748;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(135deg, #8a2be2 0%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-decorative-line-847 {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #8a2be2 0%, #20c997 100%);
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
}

.faq-decorative-line-847::before,
.faq-decorative-line-847::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #8a2be2;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.faq-decorative-line-847::before {
    left: -24px;
}

.faq-decorative-line-847::after {
    right: -24px;
    background: #20c997;
}

/* Grid Layout */
.faq-grid-container-847 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    position: relative;
}

/* FAQ Card Styling */
.faq-card-847 {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card-847:hover {
    transform: translateY(-8px);
}

.faq-card-inner-847 {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.faq-card-847:hover .faq-card-inner-847 {
    border-color: #8a2be2;
    box-shadow: 0 12px 40px rgba(138, 43, 226, 0.2);
}

.faq-card-847:nth-child(even):hover .faq-card-inner-847 {
    border-color: #20c997;
    box-shadow: 0 12px 40px rgba(32, 201, 151, 0.2);
}

/* Number Badge */
.faq-number-badge-847 {
    position: absolute;
    top: -12px;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #8a2be2 0%, #7b27cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    z-index: 2;
}

.faq-card-847:nth-child(even) .faq-number-badge-847 {
    background: linear-gradient(135deg, #20c997 0%, #1ab386 100%);
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

/* Corner Decoration */
.faq-corner-decoration-847 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, transparent 100%);
    border-radius: 0 100% 0 0;
    transition: all 0.4s ease;
}

.faq-card-847:nth-child(even) .faq-corner-decoration-847 {
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.1) 0%, transparent 100%);
    left: auto;
    right: 0;
    border-radius: 100% 0 0 0;
}

.faq-card-847:hover .faq-corner-decoration-847 {
    width: 120px;
    height: 120px;
}

/* Question Styling */
.faq-question-wrapper-847 {
    margin-bottom: 1.25rem;
    padding-top: 1rem;
}

.faq-question-847 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.faq-card-847:hover .faq-question-847 {
    color: #8a2be2;
}

.faq-card-847:nth-child(even):hover .faq-question-847 {
    color: #20c997;
}

/* Answer Styling */
.faq-answer-wrapper-847 {
    flex: 1;
}

.faq-answer-847 {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Fifth Card Spanning Full Width */
.faq-card-847:nth-child(5) {
    grid-column: 1 / -1;
}

.faq-card-847:nth-child(5) .faq-card-inner-847 {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.03) 0%, rgba(32, 201, 151, 0.03) 100%);
}

/* Tablet Responsive */
@media (max-width: 992px) {
    .faq-section-geo-847 {
    padding: 6rem 0;
    }
    
    .faq-main-title-847 {
    font-size: 3rem;
    }
    
    .faq-grid-container-847 {
    gap: 2rem;
    }
    
    .faq-card-inner-847 {
    padding: 2rem;
    min-height: 260px;
    }
    
    .faq-question-847 {
    font-size: 1.375rem;
    }
    
    .faq-answer-847 {
    font-size: 1.0625rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section-geo-847 {
    padding: 4rem 0;
    }
    
    .faq-section-geo-847 .container {
    padding: 0 1.25rem;
    }
    
    .faq-header-wrapper-847 {
    margin-bottom: 3rem;
    }
    
    .faq-main-title-847 {
    font-size: 2.25rem;
    }
    
    .faq-grid-container-847 {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    }
    
    .faq-card-847:nth-child(5) {
    grid-column: 1;
    }
    
    .faq-card-inner-847 {
    padding: 1.75rem;
    min-height: auto;
    border-radius: 18px;
    }
    
    .faq-number-badge-847 {
    width: 48px;
    height: 48px;
    font-size: 1.125rem;
    top: -10px;
    right: 1.5rem;
    }
    
    .faq-question-847 {
    font-size: 1.25rem;
    }
    
    .faq-answer-847 {
    font-size: 1rem;
    line-height: 1.7;
    }
    
    .faq-corner-decoration-847 {
    width: 60px;
    height: 60px;
    }
    
    .faq-card-847:hover .faq-corner-decoration-847 {
    width: 80px;
    height: 80px;
    }
    
    .faq-decorative-line-847 {
    width: 80px;
    height: 5px;
    }
    
    .faq-decorative-line-847::before,
    .faq-decorative-line-847::after {
    width: 10px;
    height: 10px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .faq-main-title-847 {
    font-size: 1.875rem;
    }
    
    .faq-card-inner-847 {
    padding: 1.5rem;
    }
    
    .faq-question-847 {
    font-size: 1.125rem;
    }
    
    .faq-answer-847 {
    font-size: 0.9375rem;
    }
}
/* Contact Form Block - Modern Floating Design */
.contact-form-block-kx9 {
    padding: 8rem 0;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-block-kx9::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-form-block-kx9::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-form-block-kx9 .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.form-wrapper-inner {
    background: #ffffff;
    border-radius: 32px;
    padding: 4rem 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    position: relative;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-wrapper-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 32px 32px 0 0;
}

.form-header-area {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-contact {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-form-main {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

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

.form-label-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.01em;
    padding-left: 0.25rem;
}

.form-input-control,
.form-textarea-control {
    width: 100%;
    padding: 1.125rem 0rem;
    font-size: 1rem;
    font-family: inherit;
    color: #1e293b;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-input-control::placeholder,
.form-textarea-control::placeholder {
    color: #94a3b8;
}

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

.form-input-control:focus,
.form-textarea-control:focus {
    border-color: #6366f1;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1), 0 4px 12px rgba(99, 102, 241, 0.08);
    transform: translateY(-1px);
}

.form-input-control:active,
.form-textarea-control:active {
    transform: translateY(0);
}

.form-textarea-control {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-submit-wrapper {
    margin-top: 1rem;
}

.form-submit-btn {
    width: 100%;
    padding: 1.375rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25), 0 4px 8px rgba(99, 102, 241, 0.15);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.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.2), transparent);
    transition: left 0.5s ease;
}

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

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.35), 0 6px 12px rgba(99, 102, 241, 0.2);
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.form-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.25), 0 2px 6px rgba(99, 102, 241, 0.15);
}

.form-submit-btn:focus {
    outline: none;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25), 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.btn-arrow-icon {
    display: inline-block;
    font-size: 1.375rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-block-kx9 {
    padding: 5rem 0;
    }
    
    .form-wrapper-inner {
    padding: 3rem 2rem;
    border-radius: 24px;
    }
    
    .form-header-area {
    margin-bottom: 2.5rem;
    }
    
    .section-title-contact {
    font-size: 2rem;
    }
    
    .contact-form-main {
    gap: 1.5rem;
    }
    
    .form-input-control,
    .form-textarea-control {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    border-radius: 12px;
    }
    
    .form-submit-btn {
    padding: 1.25rem 1.75rem;
    font-size: 1.0625rem;
    border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .contact-form-block-kx9 {
    padding: 4rem 0;
    }
    
    .form-wrapper-inner {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    }
    
    .form-header-area {
    margin-bottom: 2rem;
    }
    
    .contact-form-main {
    gap: 1.25rem;
    }
    
    .form-label-text {
    font-size: 0.875rem;
    }
    
    .form-input-control,
    .form-textarea-control {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    }
    
    .form-submit-btn {
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
    gap: 0.625rem;
    }
    
    .btn-arrow-icon {
    font-size: 1.25rem;
    }
}
/* Contact Information Section: Geometric Split Layout with Floating Cards */
.contact-info-section {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(165deg, #f0f4f8 0%, #e8eef5 50%, #f5f0f8 100%);
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(138, 99, 210, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-info-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* Header Styling */
.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, #8a63d2 0%, #ec4899 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #8a63d2 0%, #ec4899 50%, #f59e0b 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(138, 99, 210, 0.3);
}

/* Contact Cards Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8a63d2, #ec4899);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card-address {
    border-top: 4px solid #8a63d2;
}

.contact-card-phone {
    border-top: 4px solid #ec4899;
}

.contact-card-email {
    border-top: 4px solid #f59e0b;
}

/* Card Icon Styling */
.card-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.contact-card-address .card-icon-wrapper {
    background: linear-gradient(135deg, rgba(138, 99, 210, 0.12) 0%, rgba(138, 99, 210, 0.25) 100%);
    color: #8a63d2;
}

.contact-card-phone .card-icon-wrapper {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12) 0%, rgba(236, 72, 153, 0.25) 100%);
    color: #ec4899;
}

.contact-card-email .card-icon-wrapper {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0.25) 100%);
    color: #f59e0b;
}

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

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

/* Card Content */
.card-content {
    width: 100%;
}

.contact-info-text {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 500;
}

.contact-link {
    font-size: 1.125rem;
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

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

.contact-link:hover {
    color: #8a63d2;
    transform: translateX(2px);
}

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

.contact-link:focus {
    outline: 3px solid rgba(138, 99, 210, 0.3);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Map Wrapper Styling */
.contact-map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.map-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.map-overlay-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 30px;
    border: 3px solid rgba(138, 99, 210, 0.2);
    box-shadow: inset 0 0 40px rgba(138, 99, 210, 0.08);
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-info-section {
    padding: 5rem 0;
    }

    .contact-title {
    font-size: 2.75rem;
    }

    .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }

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

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

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

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

    .title-accent-line {
    width: 80px;
    height: 5px;
    }

    .contact-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    }

    .card-icon-wrapper {
    width: 60px;
    height: 60px;
    }

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

    .contact-info-text,
    .contact-link {
    font-size: 1rem;
    }

    .contact-map-wrapper {
    height: 350px;
    border-radius: 20px;
    }

    .map-overlay-accent {
    border-radius: 20px;
    }
}

@media (max-width: 576px) {
    .contact-info-section {
    padding: 3rem 0;
    }

    .contact-title {
    font-size: 1.875rem;
    }

    .contact-card {
    padding: 1.75rem 1.25rem;
    }

    .contact-map-wrapper {
    height: 300px;
    border-radius: 16px;
    }

    .map-overlay-accent {
    border-radius: 16px;
    border-width: 2px;
    }
}
/* Footer: Modern Split Layout with Gradient Accent */
.footer-modern-split {
    position: relative;
    padding: 5rem 0 2rem;
    background: linear-gradient(165deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e8e8f0;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(232, 232, 240, 0.1);
}

/* Brand Column */
.footer-brand-column {
    display: flex;
    flex-direction: column;
}

.footer-brand-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.footer-brand-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e94560 0%, #f39c12 100%);
    border-radius: 2px;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

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

.footer-address {
    color: #b8b8d0;
}

.footer-phone-link {
    color: #e8e8f0;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

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

.footer-phone-link:hover {
    color: #e94560;
}

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

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

/* Navigation Column */
.footer-nav-column {
    display: flex;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.footer-navigation {
    width: 100%;
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-nav-item {
    position: relative;
}

.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(232, 232, 240, 0.03);
    border-radius: 12px;
    color: #e8e8f0;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.footer-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(233, 69, 96, 0.1) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.footer-nav-link:hover::before {
    left: 100%;
}

.footer-nav-link:hover {
    background: rgba(233, 69, 96, 0.08);
    border-color: rgba(233, 69, 96, 0.3);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.2);
}

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

.footer-link-text {
    flex: 1;
}

.footer-link-arrow {
    width: 20px;
    height: 20px;
    color: #e94560;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.footer-nav-link:hover .footer-link-arrow {
    transform: translateX(4px);
    opacity: 1;
}

/* Legal Column */
.footer-legal-column {
    display: flex;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.footer-legal-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.footer-legal-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: rgba(243, 156, 18, 0.05);
    border-radius: 12px;
    color: #e8e8f0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 156, 18, 0.15);
    position: relative;
}

.footer-legal-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #f39c12 0%, #e94560 100%);
    border-radius: 12px 12px 0 0;
    transition: width 0.4s ease;
}

.footer-legal-link:hover {
    background: rgba(243, 156, 18, 0.12);
    border-color: rgba(243, 156, 18, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(243, 156, 18, 0.2);
}

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

.footer-legal-link:focus {
    outline: 2px solid #f39c12;
    outline-offset: 4px;
}

.footer-legal-icon {
    width: 22px;
    height: 22px;
    color: #f39c12;
    flex-shrink: 0;
}

/* Wave Divider */
.footer-wave-divider {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    height: 60px;
    color: #e94560;
    opacity: 0.3;
    pointer-events: none;
}

.footer-wave-divider svg {
    width: 100%;
    height: 100%;
}

/* Bottom Bar */
.footer-bottom-bar {
    padding-top: 2rem;
}

.footer-copyright-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.footer-copyright-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(232, 232, 240, 0.2) 50%, transparent 100%);
    max-width: 200px;
}

.footer-copyright-text {
    margin: 0;
    font-size: 1rem;
    color: #b8b8d0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.footer-year {
    font-weight: 600;
    color: #e94560;
}

.footer-separator {
    color: rgba(232, 232, 240, 0.3);
    font-weight: 300;
}

.footer-brand-small {
    font-weight: 500;
}

/* Background Decoration */
.footer-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.footer-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

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

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

.footer-bg-circle-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #e94560 0%, transparent 70%);
    top: 40%;
    left: -80px;
    animation: float-circle-3 22s ease-in-out infinite;
}

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

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

@keyframes float-circle-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, 35px) scale(1.08); }
}

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

    .footer-legal-column {
    grid-column: 1 / -1;
    }

    .footer-legal-wrapper {
    flex-direction: row;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    }
}

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

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

    .footer-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    }

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

    .footer-contact-item {
    font-size: 1rem;
    }

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

    .footer-nav-link {
    font-size: 1rem;
    padding: 0.625rem 1rem;
    }

    .footer-legal-wrapper {
    flex-direction: column;
    gap: 1rem;
    }

    .footer-legal-link {
    font-size: 0.9375rem;
    padding: 0.875rem 1rem;
    }

    .footer-copyright-wrapper {
    flex-direction: column;
    gap: 1rem;
    }

    .footer-copyright-line {
    display: none;
    }

    .footer-copyright-text {
    font-size: 0.9375rem;
    flex-wrap: wrap;
    justify-content: center;
    }

    .footer-wave-divider {
    bottom: 60px;
    }

    .footer-bg-circle-1 {
    width: 250px;
    height: 250px;
    }

    .footer-bg-circle-2 {
    width: 200px;
    height: 200px;
    }

    .footer-bg-circle-3 {
    width: 180px;
    height: 180px;
    }
}

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

    .footer-content-grid {
    gap: 2.5rem;
    }

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

    .footer-contact-item {
    font-size: 0.9375rem;
    }

    .footer-nav-link:hover {
    transform: translateX(4px);
    }

    .footer-legal-link:hover {
    transform: translateY(-2px);
    }
}
