@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: #376b564d;
}

#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 Glass Navigation - Floating Modern Design */
.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(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 60px;
    padding: 1rem 2rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

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

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

.logo-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #0f172a;
    border-radius: 50%;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

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

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.dropdown-menu-new {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0.75rem;
    list-style: none;
    margin: 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.dropdown-trigger.active .dropdown-menu-new {
    opacity: 1;
    visibility: visible;
}

.dropdown-link {
    display: block;
    padding: 0.875rem 1.25rem;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    transform: translateX(5px);
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-wrapper {
    padding: 1rem 1.5rem;
    }
    
    .hamburger-btn {
    display: flex;
    }
    
    .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem;
    transform: translateX(110%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
    transform: translateX(0);
    }
    
/*    .mobile-overlay {
    display: block;
    }*/
    
    .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
    padding: 1.25rem 1rem;
    border-radius: 0;
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    }
    
    .nav-link::before {
    display: none;
    }
    
    .dropdown-menu-new {
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease, max-height 0.4s ease;
    }
    
    .dropdown-trigger.active .dropdown-menu-new {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    padding: 0.5rem 0;
    }
    
    .dropdown-link {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    }
    
    .dropdown-link:hover {
    transform: translateX(10px);
    }
}

@media (max-width: 576px) {
    .nav-container {
    padding: 0 1rem;
    }
    
    .nav-wrapper {
    padding: 0.875rem 1.25rem;
    border-radius: 50px;
    }
    
    .logo-circle {
    width: 36px;
    height: 36px;
    }
    
    .logo-circle::before {
    width: 18px;
    height: 18px;
    }
    
    .brand-text {
    font-size: 1.25rem;
    }
    
    .nav-menu {
    width: 280px;
    padding: 5rem 1.5rem 2rem;
    }
    
    .nav-link {
    font-size: 1rem;
    padding: 1rem 0.75rem;
    }
}

/* Active state for current page */
.nav-link.active {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

/* Ensure header doesn't overlap content */
body {
    padding-top: 100px;
}

@media (max-width: 992px) {
    body {
    padding-top: 90px;
    }
}
/* Hero Asymmetric Split Design - Unique ID: hero-asym-split-2x9 */
.hero-asym-split-2x9 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

/* Background Layer */
.hero-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.2) 50%, rgba(236, 72, 153, 0.3) 100%);
    mix-blend-mode: multiply;
}

/* Animated Shapes */
.hero-animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

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

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    bottom: -150px;
    right: -50px;
    animation-delay: 7s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 14s;
}

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

/* Content Container */
.hero-content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 4rem;
    align-items: center;
}

/* Text Column */
.hero-text-column {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: #a5b4fc;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

.badge-icon {
    color: #6366f1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
    opacity: 1;
    transform: scale(1);
    }
    50% {
    opacity: 0.7;
    transform: scale(1.1);
    }
}

.hero-main-heading {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    margin-bottom: 2.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.7;
    color: #cbd5e1;
    font-weight: 400;
    max-width: 600px;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-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;
}

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

.hero-btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

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

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

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

.hero-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: transparent;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

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

.hero-floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.75rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
}

.hero-floating-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.hero-card-1 {
    top: 0;
    left: 0;
    width: 280px;
    animation: floatCard1 6s ease-in-out infinite;
}

.hero-card-2 {
    top: 180px;
    right: 0;
    width: 260px;
    animation: floatCard2 7s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-card-3 {
    bottom: 0;
    left: 60px;
    width: 270px;
    animation: floatCard3 8s ease-in-out infinite;
    animation-delay: 2s;
}

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

@keyframes floatCard2 {
    0%, 100% {
    transform: translateY(0) rotate(0deg);
    }
    50% {
    transform: translateY(-25px) rotate(-2deg);
    }
}

@keyframes floatCard3 {
    0%, 100% {
    transform: translateY(0) rotate(0deg);
    }
    50% {
    transform: translateY(-15px) rotate(1deg);
    }
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.card-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-description {
    font-size: 0.9375rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.hero-decorative-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 2px dashed rgba(99, 102, 241, 0.2);
    z-index: -1;
    animation: rotate 40s linear infinite;
}

@keyframes rotate {
    from {
    transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
    transform: translate(-50%, -50%) rotate(360deg);
    }
}



/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .hero-text-column {
    padding-right: 0;
    text-align: center;
    }
    
    .hero-badge {
    margin-left: auto;
    margin-right: auto;
    }
    
    .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    }
    
    .hero-cta-group {
    justify-content: center;
    }
    
    .hero-trust-indicators {
    justify-content: center;
    }
    
    .hero-visual-column {
    height: 500px;
    margin: 0 auto;
    max-width: 500px;
    }
    
    .hero-card-1 {
    width: 240px;
    }
    
    .hero-card-2 {
    width: 220px;
    top: 150px;
    }
    
    .hero-card-3 {
    width: 230px;
    left: 40px;
    }
}

@media (max-width: 768px) {
    .hero-content-container {
    padding: 6rem 1.5rem 4rem;
    }
    
    .hero-main-heading {
    font-size: 2.5rem;
    }
    
    .hero-subtitle {
    font-size: 1.125rem;
    }
    
    .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .hero-trust-indicators {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    }
    
    .trust-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    }
    
    .hero-visual-column {
    height: 400px;
    }
    
    .hero-floating-card {
    padding: 1.25rem;
    }
    
    .hero-card-1 {
    width: 200px;
    top: 0;
    left: 0;
    }
    
    .hero-card-2 {
    width: 180px;
    top: 120px;
    right: 0;
    }
    
    .hero-card-3 {
    width: 190px;
    bottom: 0;
    left: 20px;
    }
    
    .card-title {
    font-size: 1.125rem;
    }
    
    .card-description {
    font-size: 0.875rem;
    }
    
    .card-icon-wrapper {
    width: 52px;
    height: 52px;
    }
    
    .hero-decorative-circle {
    width: 350px;
    height: 350px;
    }
    
    .shape-1 {
    width: 300px;
    height: 300px;
    }
    
    .shape-2 {
    width: 250px;
    height: 250px;
    }
    
    .shape-3 {
    width: 200px;
    height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-main-heading {
    font-size: 2rem;
    }
    
    .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
    align-items:center;
}
    
    .hero-btn {
    width: 80%;
    justify-content: center;
    }
    
    .hero-visual-column {
    height: 350px;
    }
    
    .hero-card-1 {
    width: 160px;
    }
    
    .hero-card-2 {
    width: 150px;
    top: 100px;
    }
    
    .hero-card-3 {
    width: 155px;
    left: 10px;
    }

}
/* Futures Block - Diagonal Split Grid with Gradient Accents */
.futures-block-zx89 {
    position: relative;
    padding: 8rem 0 10rem;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

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

.futures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

/* Future Cards */
.future-card {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.future-card-1 {
    transform: translateY(3rem);
}

.future-card-2 {
    transform: translateY(0);
}

.future-card-3 {
    transform: translateY(3rem);
}

.future-card:hover {
    transform: translateY(-1rem) !important;
}

.future-card-inner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.future-card:hover .future-card-inner {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* Image Wrapper */
.future-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
}

.future-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
}

.future-image img,
.future-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.future-card:hover .future-image img,
.future-card:hover .future-image svg {
    transform: scale(1.08);
}

/* Image Accent Backgrounds */
.image-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.future-card:hover .image-accent {
    opacity: 0.25;
    transform: scale(1.05);
}

.accent-coral {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #f06292 100%);
}

.accent-lime {
    background: linear-gradient(135deg, #a8e063 0%, #56ab2f 50%, #06d6a0 100%);
}

.accent-cyan {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 50%, #7b68ee 100%);
}

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

.future-header {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.future-card-1:hover .future-header {
    color: #ff6b6b;
}

.future-card-2:hover .future-header {
    color: #a8e063;
}

.future-card-3:hover .future-header {
    color: #00d4ff;
}

.future-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

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

.decoration-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(80px);
    opacity: 0.08;
    animation: blob-float 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: #ff6b6b;
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: #a8e063;
    top: 30%;
    right: -10%;
    animation-delay: 7s;
}

.blob-3 {
    width: 450px;
    height: 450px;
    background: #00d4ff;
    bottom: -15%;
    left: 20%;
    animation-delay: 14s;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .futures-grid {
    gap: 2.5rem;
    }
    
    .future-card-inner {
    padding: 2rem;
    }
}

@media (max-width: 992px) {
    .futures-block-zx89 {
    padding: 6rem 0 7rem;
    }
    
    .futures-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .future-card-1,
    .future-card-2,
    .future-card-3 {
    transform: translateY(0) !important;
    }
    
    .future-image-wrapper {
    height: 200px;
    }
    
    .future-header {
    font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .futures-block-zx89 {
    padding: 5rem 0 6rem;
    }
    
    .futures-container {
    padding: 0 1.5rem;
    }
    
    .future-card-inner {
    padding: 1.75rem;
    }
    
    .future-image-wrapper {
    height: 180px;
    margin-bottom: 1.5rem;
    }
    
    .future-header {
    font-size: 1.375rem;
    margin-bottom: 0.875rem;
    }
    
    .future-text {
    font-size: 1rem;
    }
    
    .decoration-blob {
    filter: blur(60px);
    }
    
    .blob-1,
    .blob-2,
    .blob-3 {
    width: 300px;
    height: 300px;
    }
}

@media (max-width: 576px) {
    .futures-grid {
    gap: 2rem;
    }
    
    .future-card-inner {
    padding: 1.5rem;
    border-radius: 20px;
    }
    
    .future-image-wrapper {
    height: 160px;
    border-radius: 15px;
    }
    
    .future-header {
    font-size: 1.25rem;
    }
    
    .future-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    }
}
/* Testimonials Carousel Section - Vibrant Gradient Design */
.testimonials-carousel-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.testimonials-carousel-section .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: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Hide radio inputs */
.carousel-radio {
    display: none;
}

/* Carousel Container */
.testimonials-carousel-container {
    overflow: hidden;
    border-radius: 24px;
    position: relative;
}

/* Testimonials Track */
.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Testimonial Card */
.testimonial-card {
    min-width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.testimonial-content {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 3.5rem 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-content {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.quote-icon {
    color: #6366f1;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.testimonial-text {
    font-size: 1.375rem;
    line-height: 1.75;
    color: #e2e8f0;
    margin: 0 0 2.5rem 0;
    font-weight: 400;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.author-avatar {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.08);
}

.author-avatar svg {
    display: block;
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.star-rating {
    display: flex;
    gap: 0.25rem;
}

.star-rating svg {
    width: 20px;
    height: 20px;
}

/* Carousel Navigation */
.carousel-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.nav-button {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.nav-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.6);
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.nav-button:active {
    transform: scale(0.95);
}

.nav-prev {
    margin-left: -28px;
}

.nav-next {
    margin-right: -28px;
}

/* Carousel Pagination */
.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

/* Carousel State Management with CSS */
#slide-1:checked ~ .testimonials-carousel-container .testimonials-track {
    transform: translateX(0%);
}

#slide-2:checked ~ .testimonials-carousel-container .testimonials-track {
    transform: translateX(-100%);
}

#slide-3:checked ~ .testimonials-carousel-container .testimonials-track {
    transform: translateX(-200%);
}

/* Active pagination dot */
#slide-1:checked ~ .carousel-pagination .pagination-dot:nth-child(1),
#slide-2:checked ~ .carousel-pagination .pagination-dot:nth-child(2),
#slide-3:checked ~ .carousel-pagination .pagination-dot:nth-child(3) {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.3);
}

/* Navigation button visibility logic */
#slide-1:checked ~ .carousel-navigation .nav-prev {
    display: none;
}

#slide-3:checked ~ .carousel-navigation .nav-next {
    display: none;
}

/* Static Fallback Grid */
.testimonials-static-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card-static {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card-static:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-title {
    font-size: 2.75rem;
    }
    
    .testimonial-content {
    padding: 3rem 2.5rem;
    }
    
    .testimonial-text {
    font-size: 1.25rem;
    }
    
    .nav-button {
    width: 48px;
    height: 48px;
    }
    
    .nav-prev {
    margin-left: -24px;
    }
    
    .nav-next {
    margin-right: -24px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-section {
    padding: 5rem 0;
    }
    
    .testimonials-title {
    font-size: 2.25rem;
    }
    
    .testimonials-header {
    margin-bottom: 3rem;
    }
    
    .testimonial-content {
    padding: 2.5rem 2rem;
    }
    
    .testimonial-text {
    font-size: 1.125rem;
    line-height: 1.65;
    margin-bottom: 2rem;
    }
    
    .quote-icon svg {
    width: 40px;
    height: 40px;
    }
    
    .author-avatar svg {
    width: 56px;
    height: 56px;
    }
    
    .author-name {
    font-size: 1.125rem;
    }
    
    .star-rating svg {
    width: 18px;
    height: 18px;
    }
    
    .nav-button {
    width: 44px;
    height: 44px;
    }
    
    .nav-prev {
    margin-left: -22px;
    }
    
    .nav-next {
    margin-right: -22px;
    }
    
    .nav-button svg {
    width: 20px;
    height: 20px;
    }
    
    .carousel-pagination {
    margin-top: 2.5rem;
    gap: 0.75rem;
    }
    
    .pagination-dot {
    width: 10px;
    height: 10px;
    }
    
    .testimonials-static-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }
    
    .testimonial-card-static {
    padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .testimonials-carousel-section {
    padding: 4rem 0;
    }
    
    .testimonials-title {
    font-size: 1.875rem;
    }
    
    .testimonial-content {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    }
    
    .testimonial-text {
    font-size: 1.0625rem;
    margin-bottom: 1.75rem;
    }
    
    .quote-icon {
    margin-bottom: 1.5rem;
    }
    
    .quote-icon svg {
    width: 36px;
    height: 36px;
    }
    
    .testimonial-author {
    gap: 1rem;
    }
    
    .author-avatar svg {
    width: 48px;
    height: 48px;
    }
    
    .author-name {
    font-size: 1.0625rem;
    }
    
    .star-rating svg {
    width: 16px;
    height: 16px;
    }
    
    .nav-button {
    width: 40px;
    height: 40px;
    }
    
    .nav-prev {
    margin-left: -20px;
    }
    
    .nav-next {
    margin-right: -20px;
    }
    
    .nav-button svg {
    width: 18px;
    height: 18px;
    }
    
    .carousel-pagination {
    margin-top: 2rem;
    }
}
/* Services Block: Floating Card Grid with Gradient Accents */
.services-floating-grid {
    padding: 7rem 0 8rem;
    background: linear-gradient(160deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.services-floating-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-floating-grid::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.services-main-title {
    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, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #00d4ff 0%, #7b2ff7 50%, #ff6b9d 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(123, 47, 247, 0.3);
}

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

.service-card-float {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

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

.service-card-float:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(123, 47, 247, 0.2);
}

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

.service-card-float:nth-child(odd) {
    transform: rotate(-1deg);
}

.service-card-float:nth-child(even) {
    transform: rotate(1deg);
}

.service-card-float:hover {
    transform: translateY(-12px) scale(1.02) rotate(0deg);
}

.service-card-inner {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(123, 47, 247, 0.05) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-card-float:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 47, 247, 0.1) 100%);
}

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

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

.service-content-block {
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-title-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.service-description-text {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.service-action-zone {
    margin-top: auto;
}

.service-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #7b2ff7 0%, #00d4ff 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 47, 247, 0.25);
    position: relative;
    overflow: hidden;
}

.service-more-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.5s ease;
}

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

.service-more-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(123, 47, 247, 0.35);
}

.service-more-btn:focus {
    outline: 3px solid rgba(123, 47, 247, 0.4);
    outline-offset: 2px;
}

.service-more-btn span {
    position: relative;
    z-index: 1;
}

.btn-arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

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

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

@media (max-width: 768px) {
    .services-floating-grid {
    padding: 4rem 0 5rem;
    }
    
    .services-container-wrapper {
    padding: 0 1.5rem;
    }
    
    .services-grid-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }
    
    .services-header-zone {
    margin-bottom: 3rem;
    }
    
    .services-main-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    }
    
    .title-accent-line {
    width: 80px;
    height: 4px;
    }
    
    .service-card-float:nth-child(odd),
    .service-card-float:nth-child(even) {
    transform: rotate(0deg);
    }
    
    .service-card-float:hover {
    transform: translateY(-8px) scale(1.01);
    }
    
    .service-card-inner {
    padding: 2rem 1.5rem;
    }
    
    .service-icon-wrapper {
    width: 70px;
    height: 70px;
    }
    
    .service-icon-svg {
    width: 48px;
    height: 48px;
    }
    
    .service-title-text {
    font-size: 1.375rem;
    }
    
    .service-description-text {
    font-size: 1rem;
    }
    
    .service-more-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .services-floating-grid {
    padding: 3rem 0 4rem;
    }
    
    .services-container-wrapper {
    padding: 0 1rem;
    }
    
    .services-main-title {
    font-size: 2rem;
    }
    
    .service-card-inner {
    padding: 1.75rem 1.25rem;
    }
    
    .service-title-text {
    font-size: 1.25rem;
    }
    
    .service-more-btn {
    width: 100%;
    justify-content: center;
    }
}
/* FAQ Section: Asymmetric Violet Wave Design */
.faq-section-violet-wave {
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #f8f7ff 0%, #ffffff 50%, #faf5ff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section-violet-wave::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
    z-index: 1;
}

.faq-section-violet-wave::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 65%);
    border-radius: 60% 40% 50% 50% / 45% 55% 45% 55%;
    z-index: 1;
}

.faq-section-violet-wave .container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* Header Container */
.faq-header-container {
    text-align: center;
    margin-bottom: 4.5rem;
    position: relative;
}

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

.faq-decorative-blob {
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    margin: 0 auto;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* FAQ Accordion Wrapper */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* FAQ Item */
.faq-item-vw {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.faq-item-vw::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #8b5cf6 0%, #ec4899 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item-vw:hover {
    box-shadow: 0 8px 35px rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, 0.1);
}

.faq-item-vw.faq-active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, rgba(236, 72, 153, 0.03) 100%);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.18);
    border-color: rgba(139, 92, 246, 0.2);
}

.faq-item-vw.faq-active::before {
    opacity: 1;
}

/* Question Header */
.faq-question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    cursor: pointer;
    gap: 2rem;
    transition: all 0.3s ease;
}

.faq-question-header:hover {
    background: rgba(139, 92, 246, 0.02);
}

.faq-question-header:focus {
    outline: 3px solid rgba(139, 92, 246, 0.3);
    outline-offset: -3px;
}

.faq-question-text {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item-vw.faq-active .faq-question-text {
    color: #7c3aed;
}

/* Icon Toggle */
.faq-icon-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item-vw:hover .faq-icon-toggle {
    background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.faq-item-vw.faq-active .faq-icon-toggle {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
    transform: rotate(180deg);
}

.faq-icon-plus,
.faq-icon-minus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6b7280;
    transition: all 0.3s ease;
}

.faq-item-vw:hover .faq-icon-plus,
.faq-item-vw:hover .faq-icon-minus {
    color: #7c3aed;
}

.faq-item-vw.faq-active .faq-icon-plus,
.faq-item-vw.faq-active .faq-icon-minus {
    color: #ffffff;
}

.faq-icon-minus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.faq-item-vw.faq-active .faq-icon-plus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item-vw.faq-active .faq-icon-minus {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

/* Answer Content */
.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
}

.faq-item-vw.faq-active .faq-answer-content {
    max-height: 800px;
    opacity: 1;
}

.faq-answer-inner {
    padding: 0 2.5rem 2.5rem;
    padding-top: 0.5rem;
}

.faq-answer-inner p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
    letter-spacing: 0.01em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section-violet-wave {
    padding: 5rem 0 6rem;
    }
    
    .faq-section-violet-wave::before,
    .faq-section-violet-wave::after {
    width: 400px;
    height: 400px;
    }
    
    .faq-header-container {
    margin-bottom: 3rem;
    }
    
    .faq-main-title {
    font-size: 2.25rem;
    }
    
    .faq-accordion-wrapper {
    gap: 1rem;
    }
    
    .faq-question-header {
    padding: 1.5rem 1.75rem;
    gap: 1.25rem;
    }
    
    .faq-question-text {
    font-size: 1.125rem;
    }
    
    .faq-icon-toggle {
    width: 38px;
    height: 38px;
    min-width: 38px;
    }
    
    .faq-answer-inner {
    padding: 0 1.75rem 2rem;
    }
    
    .faq-answer-inner p {
    font-size: 1rem;
    line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .faq-section-violet-wave {
    padding: 4rem 0 5rem;
    }
    
    .faq-main-title {
    font-size: 1.875rem;
    }
    
    .faq-question-header {
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    }
    
    .faq-question-text {
    font-size: 1rem;
    }
    
    .faq-icon-toggle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    }
    
    .faq-answer-inner {
    padding: 0 1.5rem 1.75rem;
    }
    
    .faq-answer-inner p {
    font-size: 0.9375rem;
    }
    
    .faq-item-vw {
    border-radius: 18px;
    }
}

/* Focus and Accessibility */
.faq-question-header:focus-visible {
    outline: 3px solid #8b5cf6;
    outline-offset: 2px;
}

/* Smooth Animations */
@media (prefers-reduced-motion: reduce) {
    .faq-item-vw,
    .faq-question-header,
    .faq-icon-toggle,
    .faq-answer-content {
    transition: none;
    }
}
/* Contact Form Split Design - Unique Gradient Layout */
.contact-form-split {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    width: 100%;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    min-height: 650px;
}

/* Visual Side with Floating Shapes */
.contact-visual-side {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.shape-1 {
    width: 200px;
    height: 200px;
    background: #ffffff;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: #f0f0f0;
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 120px;
    height: 120px;
    background: #e0e0e0;
    bottom: 15%;
    left: 30%;
    animation-delay: 4s;
}

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

/* Form Side */
.contact-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background: #ffffff;
}

.form-container {
    width: 100%;
    max-width: 500px;
}

.contact-heading {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

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

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a4a6a;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
    color: #1a1a2e;
    background: #f7f7fb;
    border: 2px solid transparent;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    background: #ffffff;
    border-color: #4facfe;
    box-shadow: 0 0 0 4px rgba(79, 172, 254, 0.1);
    transform: translateY(-2px);
}

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

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

/* Submit Button */
.form-submit-btn {
    margin-top: 1rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    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.3), transparent);
    transition: left 0.5s ease;
}

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

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.form-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

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

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

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

/* Input Validation States */
.form-input:invalid:not(:placeholder-shown),
.form-textarea:invalid:not(:placeholder-shown) {
    border-color: #ff6b6b;
}

.form-input:valid:not(:placeholder-shown),
.form-textarea:valid:not(:placeholder-shown) {
    border-color: #51cf66;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
    grid-template-columns: 1fr;
    }

    .contact-visual-side {
    display: none;
    }

    .contact-form-side {
    padding: 3rem 2rem;
    }

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

@media (max-width: 768px) {
    .contact-form-split {
    padding: 2rem 1rem;
    min-height: auto;
    }

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

    .contact-form-side {
    padding: 2.5rem 1.5rem;
    }

    .contact-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
    }

    .form-input,
    .form-textarea {
    font-size: 1rem;
    padding: 0.875rem 1rem;
    }

    .form-submit-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    }

    .form-group {
    gap: 0.375rem;
    }

    .contact-form {
    gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-heading {
    font-size: 1.75rem;
    }

    .form-label {
    font-size: 0.8rem;
    }

    .form-textarea {
    min-height: 120px;
    }
}
/* 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;
    }
}
