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

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #f285174d;
}

#about {
    font-size: 1.2rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown-trigger {
    cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 576px) {
    .header-glass-nav {
    padding: 1rem 0;
    }
    
    .mobile-nav {
    width: 100%;
    max-width: 100%;
    }
    
    .mobile-nav-links {
    padding: 1.5rem 1rem;
    }
}
/* 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;
    }
}
/* Features Chess Grid - Organic Shapes with Vibrant Colors */
.features-chess-grid {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8f0 50%, #fff0e6 100%);
    position: relative;
    overflow: hidden;
}

.features-chess-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-blob 8s ease-in-out infinite;
}

.features-chess-grid::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-blob 10s ease-in-out infinite reverse;
}

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

.features-chess-grid .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

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

.feature-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Chess pattern - alternating positions */
.feature-card-1 {
    transform: translateY(0);
    border-color: rgba(255, 107, 129, 0.3);
}

.feature-card-1:hover {
    border-color: #ff6b81;
    transform: translateY(-12px) scale(1.02);
}

.feature-card-2 {
    transform: translateY(40px);
    border-color: rgba(126, 214, 223, 0.3);
}

.feature-card-2:hover {
    border-color: #7ed6df;
    transform: translateY(28px) scale(1.02);
}

.feature-card-3 {
    transform: translateY(0);
    border-color: rgba(255, 193, 7, 0.3);
}

.feature-card-3:hover {
    border-color: #ffc107;
    transform: translateY(-12px) scale(1.02);
}

/* Organic blob backgrounds */
.feature-blob {
    position: absolute;
    width: 280px;
    height: 280px;
    top: -80px;
    right: -80px;
    opacity: 0.08;
    transition: all 0.6s ease;
    z-index: 1;
}

.blob-1 {
    background: #ff6b81;
    border-radius: 42% 58% 70% 30% / 45% 65% 35% 55%;
    animation: morph-blob-1 10s ease-in-out infinite;
}

.blob-2 {
    background: #7ed6df;
    border-radius: 58% 42% 30% 70% / 55% 35% 65% 45%;
    animation: morph-blob-2 12s ease-in-out infinite;
}

.blob-3 {
    background: #ffc107;
    border-radius: 35% 65% 45% 55% / 60% 40% 60% 40%;
    animation: morph-blob-3 11s ease-in-out infinite;
}

@keyframes morph-blob-1 {
    0%, 100% {
    border-radius: 42% 58% 70% 30% / 45% 65% 35% 55%;
    transform: rotate(0deg) scale(1);
    }
    33% {
    border-radius: 65% 35% 50% 50% / 40% 60% 40% 60%;
    transform: rotate(120deg) scale(1.1);
    }
    66% {
    border-radius: 50% 50% 35% 65% / 55% 45% 55% 45%;
    transform: rotate(240deg) scale(0.95);
    }
}

@keyframes morph-blob-2 {
    0%, 100% {
    border-radius: 58% 42% 30% 70% / 55% 35% 65% 45%;
    transform: rotate(0deg) scale(1);
    }
    33% {
    border-radius: 45% 55% 60% 40% / 50% 50% 50% 50%;
    transform: rotate(135deg) scale(1.08);
    }
    66% {
    border-radius: 35% 65% 55% 45% / 45% 55% 45% 55%;
    transform: rotate(270deg) scale(0.97);
    }
}

@keyframes morph-blob-3 {
    0%, 100% {
    border-radius: 35% 65% 45% 55% / 60% 40% 60% 40%;
    transform: rotate(0deg) scale(1);
    }
    33% {
    border-radius: 55% 45% 65% 35% / 45% 55% 45% 55%;
    transform: rotate(110deg) scale(1.05);
    }
    66% {
    border-radius: 48% 52% 40% 60% / 52% 48% 52% 48%;
    transform: rotate(220deg) scale(0.98);
    }
}

.feature-card:hover .feature-blob {
    opacity: 0.15;
    transform: scale(1.2) rotate(45deg);
}

/* Feature image styling */
.feature-image-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card-1 .feature-image-wrapper {
    background: linear-gradient(135deg, #ff6b81 0%, #ff8fab 100%);
    box-shadow: 0 8px 24px rgba(255, 107, 129, 0.25);
}

.feature-card-2 .feature-image-wrapper {
    background: linear-gradient(135deg, #7ed6df 0%, #a8e6ed 100%);
    box-shadow: 0 8px 24px rgba(126, 214, 223, 0.25);
}

.feature-card-3 .feature-image-wrapper {
    background: linear-gradient(135deg, #ffc107 0%, #ffd54f 100%);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.25);
}

.feature-card:hover .feature-image-wrapper {
    transform: rotate(-5deg) scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.1);
}

/* Feature content */
.feature-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.feature-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3436;
    line-height: 1.3;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.feature-card-1 .feature-title {
    color: #ff6b81;
}

.feature-card-2 .feature-title {
    color: #0fb9b1;
}

.feature-card-3 .feature-title {
    color: #f39c12;
}

.feature-card:hover .feature-title {
    transform: translateY(-3px);
}

.feature-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #636e72;
    margin: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-description {
    color: #2d3436;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-chess-grid {
    padding: 6rem 0;
    }

    .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    }

    .feature-card-1,
    .feature-card-2,
    .feature-card-3 {
    transform: translateY(0);
    }

    .feature-card-1:hover,
    .feature-card-3:hover {
    transform: translateY(-12px) scale(1.02);
    }

    .feature-card-2:hover {
    transform: translateY(-12px) scale(1.02);
    }
}

@media (max-width: 768px) {
    .features-chess-grid {
    padding: 5rem 0;
    }

    .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    }

    .feature-card {
    padding: 2.5rem 2rem;
    border-radius: 24px;
    }

    .feature-blob {
    width: 200px;
    height: 200px;
    top: -60px;
    right: -60px;
    }

    .feature-image-wrapper {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    }

    .feature-image {
    padding: 1.25rem;
    }

    .feature-title {
    font-size: 1.5rem;
    margin-bottom: 0.875rem;
    }

    .feature-description {
    font-size: 1rem;
    line-height: 1.65;
    }
}

@media (max-width: 576px) {
    .features-chess-grid {
    padding: 4rem 0;
    }

    .features-chess-grid .container {
    padding: 0 1rem;
    }

    .features-grid {
    gap: 1.5rem;
    }

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

    .feature-image-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 18px;
    }

    .feature-title {
    font-size: 1.375rem;
    }

    .feature-description {
    font-size: 0.9375rem;
    }
}
/* Testimonials Carousel Section - Asymmetric Split Design */
.testimonials-carousel-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 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(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-carousel-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.testimonials-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Hide radio inputs */
.testimonials-carousel input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

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

.testimonial-card {
    flex: 0 0 33.333%;
    padding: 4rem 3rem;
    box-sizing: border-box;
}

/* Slide positions based on radio button state */
#slide1:checked ~ .testimonials-track {
    transform: translateX(0%);
}

#slide2:checked ~ .testimonials-track {
    transform: translateX(-33.333%);
}

#slide3:checked ~ .testimonials-track {
    transform: translateX(-66.666%);
}

/* Testimonial Content */
.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    min-height: 400px;
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.testimonial-text-wrapper {
    text-align: center;
    position: relative;
}

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

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

.testimonial-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: #667eea;
    margin: 0;
    letter-spacing: 0.02em;
}

/* Carousel Controls - Dots */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.95) 30%);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-dot:hover {
    background: rgba(102, 126, 234, 0.5);
    transform: scale(1.2);
}

#slide1:checked ~ .carousel-controls label[for="slide1"],
#slide2:checked ~ .carousel-controls label[for="slide2"],
#slide3:checked ~ .carousel-controls label[for="slide3"] {
    background: #667eea;
    width: 32px;
    border-radius: 6px;
}

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

.carousel-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    pointer-events: all;
    color: #667eea;
}

.carousel-nav:hover {
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transform: scale(1.1);
}

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

.carousel-prev {
    margin-left: -1rem;
}

.carousel-next {
    margin-right: -1rem;
}

/* Dynamic navigation updates */
#slide1:checked ~ .carousel-navigation .carousel-prev {
    pointer-events: all;
}

#slide1:checked ~ .carousel-navigation .carousel-next {
    pointer-events: all;
}

#slide2:checked ~ .carousel-navigation .carousel-prev {
    pointer-events: all;
}

#slide2:checked ~ .carousel-navigation .carousel-next {
    pointer-events: all;
}

#slide3:checked ~ .carousel-navigation .carousel-prev {
    pointer-events: all;
}

#slide3:checked ~ .carousel-navigation .carousel-next {
    pointer-events: all;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-carousel-section {
    padding: 5rem 0;
    }
    
    .testimonials-header {
    margin-bottom: 3rem;
    }
    
    .testimonials-title {
    font-size: 2rem;
    }
    
    .testimonial-card {
    padding: 3rem 2rem;
    }
    
    .testimonial-content {
    min-height: 450px;
    }
    
    .testimonial-avatar {
    width: 100px;
    height: 100px;
    }
    
    .testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    }
    
    .testimonial-name {
    font-size: 1.25rem;
    }
    
    .carousel-navigation {
    padding: 0 0.5rem;
    }
    
    .carousel-nav {
    width: 40px;
    height: 40px;
    }
    
    .carousel-prev {
    margin-left: 0;
    }
    
    .carousel-next {
    margin-right: 0;
    }
}

@media (max-width: 576px) {
    .testimonials-carousel-section .container {
    padding: 0 1rem;
    }
    
    .testimonials-carousel {
    border-radius: 20px;
    }
    
    .testimonial-card {
    padding: 2.5rem 1.5rem;
    }
    
    .testimonial-text {
    font-size: 1rem;
    }
    
    .testimonial-name {
    font-size: 1.125rem;
    }
    
    .quote-icon svg {
    width: 32px;
    height: 32px;
    }
}

/* No-JS Fallback - Stack all testimonials */
@supports not (backdrop-filter: blur(10px)) {
    .testimonials-track {
    flex-direction: column;
    width: 100%;
    }
    
    .testimonial-card {
    flex: 1 1 auto;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    }
    
    .testimonial-card:last-child {
    border-bottom: none;
    }
    
    .carousel-controls,
    .carousel-navigation {
    display: none;
    }
}

/* Accessibility - Focus states */
.carousel-dot:focus,
.carousel-nav:focus {
    outline: 3px solid #667eea;
    outline-offset: 4px;
}

/* Print styles */
@media print {
    .testimonials-track {
    flex-direction: column;
    width: 100%;
    transform: none !important;
    }
    
    .testimonial-card {
    flex: 1 1 auto;
    page-break-inside: avoid;
    }
    
    .carousel-controls,
    .carousel-navigation {
    display: none;
    }
}
/* Services Block: Diagonal Grid with Gradient Accents */
.services-diagonal-grid {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(165deg, #f8f9ff 0%, #fff5f8 50%, #f0f9ff 100%);
    overflow: hidden;
}

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

.services-header-wrapper {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

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

.services-title-accent {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #ec4899, #f59e0b);
    margin: 0 auto;
    border-radius: 50px;
    position: relative;
}

.services-title-accent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #f59e0b;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
    border-color: rgba(236, 72, 153, 0.2);
}

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

.service-card-1 { animation-delay: 0.1s; }
.service-card-2 { animation-delay: 0.2s; }
.service-card-3 { animation-delay: 0.3s; }
.service-card-4 { animation-delay: 0.4s; }
.service-card-5 { animation-delay: 0.5s; }
.service-card-6 { animation-delay: 0.6s; }

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1.75rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 20px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: rotate(-5deg) scale(1.1);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
}

.service-icon {
    width: 48px;
    height: 48px;
    color: #6366f1;
    transition: all 0.4s ease;
}

.service-card-1 .service-icon { color: #6366f1; }
.service-card-2 .service-icon { color: #ec4899; }
.service-card-3 .service-icon { color: #8b5cf6; }
.service-card-4 .service-icon { color: #14b8a6; }
.service-card-5 .service-icon { color: #f59e0b; }
.service-card-6 .service-icon { color: #ef4444; }

.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px currentColor);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.service-card:hover .service-name {
    color: #6366f1;
}

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

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.service-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-btn:hover::before {
    left: 100%;
}

.service-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

.service-btn:focus {
    outline: 3px solid rgba(99, 102, 241, 0.4);
    outline-offset: 3px;
}

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

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

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

/* Background decorative elements */
.services-bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.services-bg-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    top: -150px;
    right: -150px;
    animation: float-1 20s ease-in-out infinite;
}

.services-bg-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, #8b5cf6, #14b8a6);
    bottom: -100px;
    left: -100px;
    animation: float-2 18s ease-in-out infinite;
}

.services-bg-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, #f59e0b, #ec4899);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-3 22s ease-in-out infinite;
}

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

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-40px, -40px) rotate(-180deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

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

@media (max-width: 768px) {
    .services-diagonal-grid {
    padding: 5rem 0;
    }
    
    .services-container {
    padding: 0 1.5rem;
    }
    
    .services-grid-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    }
    
    .service-card {
    padding: 2rem;
    }
    
    .services-header-wrapper {
    margin-bottom: 3rem;
    }
    
    .services-main-title {
    font-size: 2.25rem;
    }
    
    .service-name {
    font-size: 1.375rem;
    }
    
    .service-description {
    font-size: 1rem;
    }
    
    .service-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    }
}

@media (max-width: 576px) {
    .services-diagonal-grid {
    padding: 4rem 0;
    }
    
    .services-container {
    padding: 0 1rem;
    }
    
    .service-card {
    padding: 1.75rem;
    }
    
    .service-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    }
    
    .service-icon {
    width: 40px;
    height: 40px;
    }
    
    .service-name {
    font-size: 1.25rem;
    }
}
/* FAQ Section: Geometric gradient cards with asymmetric masonry layout */
.faq-section-geometric {
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #f8f0ff 0%, #e8f5ff 50%, #fff5f0 100%);
    position: relative;
    overflow: hidden;
}

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

.faq-section-geometric::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(96, 165, 250, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

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

.faq-header-wrapper {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.faq-main-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

.faq-decorative-line::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #7c3aed;
    border-radius: 50%;
}

.faq-decorative-line::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #ec4899;
    border-radius: 50%;
}

.faq-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.faq-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    padding: 3px;
    background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 50%, #f472b6 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    z-index: 2;
    transition: opacity 0.4s ease;
}

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

.faq-card:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.faq-card:hover::after {
    opacity: 0.7;
}

.faq-card-1 {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
}

.faq-card-2 {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
}

.faq-card-3 {
    background: linear-gradient(135deg, #f472b6 0%, #fbcfe8 100%);
}

.faq-card-4 {
    background: linear-gradient(135deg, #34d399 0%, #6ee7b7 100%);
}

.faq-card-5 {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #fbbf24 0%, #fcd34d 100%);
}

.faq-card-inner {
    position: relative;
    z-index: 3;
    padding: 3rem 2.5rem;
}

.faq-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0.08;
    color: #1f2937;
    user-select: none;
    pointer-events: none;
}

.faq-question {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.25rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 2rem;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 1rem;
    height: 1rem;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    border-radius: 50%;
}

.faq-answer-content {
    display: block;
    overflow: visible;
    padding-left: 2rem;
}

.faq-answer {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .faq-section-geometric {
    padding: 6rem 0 7rem;
    }
    
    .faq-main-title {
    font-size: 3rem;
    }
    
    .faq-grid-container {
    gap: 2rem;
    }
    
    .faq-card-inner {
    padding: 2.5rem 2rem;
    }
    
    .faq-question {
    font-size: 1.375rem;
    }
    
    .faq-answer {
    font-size: 1.0625rem;
    }
}

@media (max-width: 768px) {
    .faq-section-geometric {
    padding: 5rem 0 6rem;
    }
    
    .faq-main-title {
    font-size: 2.5rem;
    }
    
    .faq-header-wrapper {
    margin-bottom: 3.5rem;
    }
    
    .faq-grid-container {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    }
    
    .faq-card-5 {
    grid-column: auto;
    }
    
    .faq-card-inner {
    padding: 2rem 1.75rem;
    }
    
    .faq-number {
    font-size: 4rem;
    top: 1rem;
    right: 1.5rem;
    }
    
    .faq-question {
    font-size: 1.25rem;
    padding-left: 1.5rem;
    }
    
    .faq-question::before {
    width: 0.875rem;
    height: 0.875rem;
    top: 0.3rem;
    }
    
    .faq-answer-content {
    padding-left: 1.5rem;
    }
    
    .faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .faq-section-geometric {
    padding: 4rem 0 5rem;
    }
    
    .faq-section-geometric .container {
    padding: 0 1rem;
    }
    
    .faq-main-title {
    font-size: 2rem;
    }
    
    .faq-decorative-line {
    width: 80px;
    height: 5px;
    }
    
    .faq-decorative-line::before,
    .faq-decorative-line::after {
    width: 16px;
    height: 16px;
    }
    
    .faq-decorative-line::before {
    left: -24px;
    }
    
    .faq-decorative-line::after {
    right: -24px;
    }
    
    .faq-header-wrapper {
    margin-bottom: 3rem;
    }
    
    .faq-grid-container {
    gap: 1.5rem;
    }
    
    .faq-card {
    border-radius: 20px;
    }
    
    .faq-card::after {
    border-radius: 20px;
    padding: 2px;
    }
    
    .faq-card-inner {
    padding: 1.75rem 1.5rem;
    }
    
    .faq-number {
    font-size: 3.5rem;
    top: 0.75rem;
    right: 1.25rem;
    }
    
    .faq-question {
    font-size: 1.125rem;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
    }
    
    .faq-question::before {
    width: 0.75rem;
    height: 0.75rem;
    top: 0.25rem;
    }
    
    .faq-answer-content {
    padding-left: 1.25rem;
    }
    
    .faq-answer {
    font-size: 0.9375rem;
    }
}
/* Contact Form Section - Asymmetric Split with Floating Card Design */
.contact-form-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.contact-content-wrapper {
    display: grid;

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    }
}
/* Contact Information Block: Asymmetric Split with Floating Cards Design */
.contact-info-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

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

.contact-info-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    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: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-content-wrapper {
    width: 100%;
}

.contact-header-area {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-main-header {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.contact-main-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
    border-radius: 10px;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 3rem;
    align-items: start;
}

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

.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(30, 41, 59, 0.08);
    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: 4px;
    height: 100%;
    background: linear-gradient(180deg, #6366f1 0%, #ec4899 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 35px rgba(30, 41, 59, 0.15);
}

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

.contact-address-card {
    border-left: 4px solid #6366f1;
}

.contact-phone-card {
    border-left: 4px solid #8b5cf6;
}

.contact-email-card {
    border-left: 4px solid #ec4899;
}

.contact-icon-wrapper {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, #f0f1ff 0%, #e0e7ff 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-address-card .contact-icon-wrapper {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.contact-phone-card .contact-icon-wrapper {
    background: linear-gradient(135deg, #e9d5ff 0%, #d8b4fe 100%);
}

.contact-email-card .contact-icon-wrapper {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

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

.contact-icon {
    width: 28px;
    height: 28px;
    color: #6366f1;
}

.contact-phone-card .contact-icon {
    color: #8b5cf6;
}

.contact-email-card .contact-icon {
    color: #ec4899;
}

.contact-info-content {
    flex: 1;
}

.contact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
    line-height: 1.6;
}

.contact-link {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

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

.contact-link:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
    border-radius: 4px;
}

.contact-map-column {
    position: sticky;
    top: 2rem;
}

.contact-map-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(30, 41, 59, 0.12);
    position: relative;
    overflow: hidden;
}

.contact-map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
}

.contact-map-container {
    border-radius: 18px;
    overflow: hidden;
    height: 500px;
    position: relative;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .contact-map-column {
    position: static;
    }
    
    .contact-main-header {
    font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
    padding: 5rem 0;
    }
    
    .contact-main-header {
    font-size: 2.25rem;
    }
    
    .contact-header-area {
    margin-bottom: 3rem;
    }
    
    .contact-card {
    padding: 1.5rem;
    gap: 1.25rem;
    }
    
    .contact-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    }
    
    .contact-icon {
    width: 24px;
    height: 24px;
    }
    
    .contact-value {
    font-size: 1rem;
    }
    
    .contact-map-container {
    height: 400px;
    }
    
    .contact-card:hover {
    transform: translateX(4px);
    }
}

@media (max-width: 576px) {
    .contact-info-section {
    padding: 4rem 0;
    }
    
    .contact-main-header {
    font-size: 1.875rem;
    }
    
    .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    }
    
    .contact-map-wrapper {
    padding: 0.75rem;
    }
    
    .contact-map-container {
    height: 320px;
    }
    
    .contact-details-column {
    gap: 1.5rem;
    }
}
/* Modern Gradient Footer with Icon Accents */
.footer-gradient-modern {
    position: relative;
    background: linear-gradient(135deg, #ffeef8 0%, #fff5f0 50%, #f0f9ff 100%);
    padding: 5rem 0 2rem;
    overflow: hidden;
}

.footer-gradient-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(196, 69, 105, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    z-index: 1;
}

/* Company Info Styles */
.footer-company-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand-icon {
    flex-shrink: 0;
}

.footer-brand-icon svg {
    display: block;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 157, 0.3));
    transition: transform 0.3s ease;
}

.footer-brand:hover .footer-brand-icon svg {
    transform: scale(1.05) rotate(5deg);
}

.footer-brand-name {
    font-size: 1.875rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    letter-spacing: -0.02em;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.6;
}

.footer-icon {
    flex-shrink: 0;
    color: #ff6b9d;
    transition: transform 0.3s ease;
}

.footer-contact-item:hover .footer-icon {
    transform: scale(1.1);
}

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

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

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

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

/* Navigation Section Styles */
.footer-nav-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.footer-nav-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-nav-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #c44569);
    border-radius: 2px;
}

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

.footer-nav-link {
    color: #4a5568;
    text-decoration: none;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding-left: 1.25rem;
}

.footer-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #ff6b9d;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-nav-link:hover {
    color: #ff6b9d;
    padding-left: 1.5rem;
}

.footer-nav-link:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

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

/* Wave Divider */
.footer-wave-divider {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
}

.footer-wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* Footer Bottom Bar */
.footer-bottom {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid rgba(196, 69, 105, 0.15);
    text-align: center;
    z-index: 1;
}

.footer-copyright {
    font-size: 0.9375rem;
    color: #718096;
    margin: 0;
}

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

    .footer-nav-section {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    }
}

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

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

    .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    }

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

    .footer-nav-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    }

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

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

    .footer-bottom {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem 0;
    }

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

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

    .footer-wave-divider svg {
    height: 50px;
    }
}

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

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

    .footer-brand-icon svg {
    width: 40px;
    height: 40px;
    }

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

    .footer-contact-details {
    gap: 1rem;
    }

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

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

    .footer-nav-title {
    font-size: 1rem;
    }

    .footer-nav-list {
    gap: 0.75rem;
    }

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

    .footer-nav-link:hover {
    padding-left: 1.25rem;
    }

    .footer-bottom {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem 0;
    }
}
