@import url(//fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700);

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #158cbd4d;
}

#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 Block - Asymmetric Floating Cards with Gradient Mesh */
.features-floating-mesh {
    position: relative;
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #fff5f7 0%, #ffe8f0 25%, #fff9e6 50%, #f0f9ff 75%, #f5f3ff 100%);
    overflow: hidden;
}

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

.features-grid-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 2.5rem;
    position: relative;
}

/* Background Decorative Elements */
.bg-decoration-circle-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 170, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    z-index: 0;
    animation: float-slow 8s ease-in-out infinite;
}

.bg-decoration-circle-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 203, 255, 0.12) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
    z-index: 0;
    animation: float-slow 10s ease-in-out infinite reverse;
}

.bg-decoration-wave {
    position: absolute;
    width: 100%;
    height: 300px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 223, 107, 0.08) 50%, transparent 100%);
    transform: skewY(-2deg);
    z-index: 0;
}

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

/* Base Feature Card Styles */
.feature-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(255, 107, 170, 0.08);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 170, 0.03) 0%, rgba(107, 203, 255, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

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

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(255, 107, 170, 0.18);
}

/* Large Feature Card (Grid Position: Row 1-2, Col 1) */
.feature-card-large {
    grid-row: 1 / 3;
    grid-column: 1;
    background: linear-gradient(145deg, #ffffff 0%, #fff5f9 100%);
    border: 3px solid #ff6baa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3.5rem;
}

.feature-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.feature-image-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6baa 0%, #ff8cc7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(255, 107, 170, 0.3);
}

.feature-image-circle .feature-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-decoration-blob {
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 223, 107, 0.25);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: morph-blob 6s ease-in-out infinite;
}

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

/* Elevated Feature Card (Grid Position: Row 1, Col 2) */
.feature-card-elevated {
    grid-row: 1;
    grid-column: 2;
    background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%);
    border-left: 5px solid #6bcbff;
    position: relative;
}

.feature-icon-diamond {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #6bcbff 0%, #4db8ff 100%);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(107, 203, 255, 0.25);
    position: relative;
}

.feature-icon-diamond .feature-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transform: rotate(-45deg);
    filter: brightness(0) invert(1);
}

.feature-corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffdf6b 0%, #ffc93d 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.3;
}

.feature-card-elevated:hover .feature-icon-diamond {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 15px 45px rgba(107, 203, 255, 0.4);
}

/* Tilted Feature Card (Grid Position: Row 2, Col 2) */
.feature-card-tilted {
    grid-row: 2;
    grid-column: 2;
    background: linear-gradient(145deg, #ffffff 0%, #fffbf0 100%);
    border-bottom: 5px solid #ffdf6b;
    position: relative;
}

.feature-hexagon-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, #ffdf6b 0%, #ffc93d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 223, 107, 0.3);
    transition: all 0.4s ease;
}

.feature-hexagon-wrapper .feature-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) saturate(0) contrast(2);
}

.feature-glow-effect {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(255, 223, 107, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card-tilted:hover .feature-hexagon-wrapper {
    transform: rotate(15deg) scale(1.08);
    box-shadow: 0 15px 45px rgba(255, 223, 107, 0.45);
}

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

.feature-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.feature-card-large .feature-title {
    font-size: 2.25rem;
    color: #ff6baa;
}

.feature-card-elevated .feature-title {
    color: #6bcbff;
}

.feature-card-tilted .feature-title {
    color: #ffb03d;
}

.feature-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin: 0;
}

.feature-card-large .feature-description {
    font-size: 1.25rem;
}

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

    .feature-card-large {
    grid-row: auto;
    grid-column: auto;
    }

    .feature-card-elevated,
    .feature-card-tilted {
    grid-row: auto;
    grid-column: auto;
    }

    .feature-card {
    padding: 2.5rem;
    }

    .feature-card-large {
    padding: 3rem 2.5rem;
    }

    .feature-image-circle {
    width: 140px;
    height: 140px;
    }

    .feature-decoration-blob {
    width: 180px;
    height: 180px;
    }

    .feature-icon-diamond {
    width: 100px;
    height: 100px;
    }

    .feature-icon-diamond .feature-img {
    width: 60px;
    height: 60px;
    }

    .feature-hexagon-wrapper {
    width: 120px;
    height: 120px;
    }

    .feature-hexagon-wrapper .feature-img {
    width: 70px;
    height: 70px;
    }
}

@media (max-width: 768px) {
    .features-floating-mesh {
    padding: 5rem 0 6rem;
    }

    .features-floating-mesh .container {
    padding: 0 1.5rem;
    }

    .features-grid-container {
    gap: 1.5rem;
    }

    .feature-card {
    padding: 2rem;
    }

    .feature-card-large {
    padding: 2.5rem 2rem;
    }

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

    .feature-card-large .feature-title {
    font-size: 1.875rem;
    }

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

    .feature-card-large .feature-description {
    font-size: 1.125rem;
    }

    .feature-image-circle {
    width: 120px;
    height: 120px;
    }

    .feature-decoration-blob {
    width: 150px;
    height: 150px;
    }

    .feature-icon-diamond {
    width: 90px;
    height: 90px;
    }

    .feature-icon-diamond .feature-img {
    width: 50px;
    height: 50px;
    }

    .feature-hexagon-wrapper {
    width: 100px;
    height: 100px;
    }

    .feature-hexagon-wrapper .feature-img {
    width: 60px;
    height: 60px;
    }

    .bg-decoration-circle-1,
    .bg-decoration-circle-2 {
    display: none;
    }
}

@media (max-width: 576px) {
    .features-floating-mesh {
    padding: 4rem 0 5rem;
    }

    .feature-card {
    padding: 1.75rem;
    }

    .feature-card-large {
    padding: 2rem 1.75rem;
    }

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

    .feature-card-large .feature-title {
    font-size: 1.625rem;
    }

    .feature-description {
    font-size: 0.9375rem;
    }
}
/* Testimonials Carousel Block */
.testimonials-carousel-block {
    padding: 7rem 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel-block::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-carousel-block::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 35%;
    height: 55%;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.testimonials-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f5576c 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;
    padding: 0 60px;
}

.testimonials-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 100%;
}

/* Testimonial Card */
.testimonial-card {
    min-width: 100%;
    padding: 3.5rem 2.5rem;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0.85;
    transform: scale(0.95);
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.18);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f5576c 100%);
    border-radius: 30px 30px 0 0;
}

/* Avatar */
.testimonial-avatar {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

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

.testimonial-avatar svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 20px rgba(102, 126, 234, 0.25));
}

/* Content */
.testimonial-content {
    position: relative;
}

.quote-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1.5rem;
    color: #667eea;
    opacity: 0.3;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
}

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

.testimonial-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
}

/* Stars */
.testimonial-stars {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    color: #fbbf24;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #667eea;
}

.carousel-nav:hover {
    background: #667eea;
    border-color: #667eea;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.carousel-nav:focus {
    outline: 3px solid rgba(102, 126, 234, 0.3);
    outline-offset: 2px;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
}

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

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

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

.pagination-dot.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 32px;
    border-radius: 6px;
}

.pagination-dot:focus {
    outline: 3px solid rgba(102, 126, 234, 0.3);
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-carousel-block {
    padding: 5rem 0;
    }
    
    .testimonials-header h2 {
    font-size: 2.5rem;
    }
    
    .testimonial-card {
    padding: 3rem 2rem;
    }
    
    .testimonial-text {
    font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-block {
    padding: 4rem 0;
    }
    
    .testimonials-carousel-wrapper {
    padding: 0 50px;
    }
    
    .testimonial-card {
    padding: 2.5rem 1.5rem;
    }
    
    .testimonial-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    }
    
    .testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    }
    
    .testimonial-name {
    font-size: 1.25rem;
    }
    
    .carousel-nav {
    width: 44px;
    height: 44px;
    }
    
    .carousel-nav svg {
    width: 20px;
    height: 20px;
    }
}

@media (max-width: 576px) {
    .testimonials-carousel-block .container {
    padding: 0 1rem;
    }
    
    .testimonials-carousel-wrapper {
    padding: 0 40px;
    }
    
    .testimonial-card {
    padding: 2rem 1.25rem;
    border-radius: 20px;
    }
    
    .testimonial-avatar {
    width: 70px;
    height: 70px;
    }
    
    .quote-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
    }
    
    .testimonial-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }
    
    .testimonial-name {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    }
    
    .testimonial-stars svg {
    width: 18px;
    height: 18px;
    }
    
    .carousel-nav {
    width: 40px;
    height: 40px;
    }
    
    .carousel-nav svg {
    width: 18px;
    height: 18px;
    }
    
    .carousel-pagination {
    margin-top: 2rem;
    gap: 0.75rem;
    }
    
    .pagination-dot {
    width: 10px;
    height: 10px;
    }
    
    .pagination-dot.active {
    width: 28px;
    }
}

/* Fallback for no-JS - show all cards stacked */
.no-js .testimonials-carousel-track {
    flex-direction: column;
    gap: 2rem;
}

.no-js .testimonial-card {
    min-width: 100%;
    opacity: 1;
    transform: scale(1);
}

.no-js .carousel-nav,
.no-js .carousel-pagination {
    display: none;
}
/* Services Section: Asymmetric Grid with Gradient Accents */
.services-wave-grid {
    position: relative;
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 576px) {
    .services-grid-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }
    
    .service-card {
    padding: 2rem 1.5rem;
    }
    
    .service-icon-wrapper {
    width: 70px;
    height: 70px;
    }
    
    .service-svg-icon {
    width: 40px;
    height: 40px;
    }
    
    .service-title {
    font-size: 1.25rem;
    }
    
    .service-description {
    font-size: 1rem;
    }
    
    .service-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    }
    
    .bg-blob-1,
    .bg-blob-2,
    .bg-blob-3 {
    display: none;
    }
}
/* FAQ Section: Asymmetric Split Layout with Teal & Coral Palette */
.faq-section-asymmetric {
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #f0fdfa 0%, #ecfeff 40%, #fef2f2 100%);
    position: relative;
    overflow: hidden;
}

.faq-section-asymmetric::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section-asymmetric::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

/* Header Side */
.faq-header-side {
    position: sticky;
    top: 6rem;
    padding-right: 2rem;
}

.faq-main-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #0d9488 0%, #fb7185 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-decorative-shape {
    width: 120px;
    height: 8px;
    background: linear-gradient(90deg, #14b8a6 0%, #fb7185 100%);
    border-radius: 50px;
    margin-top: 1.5rem;
}

/* Accordion Side */
.faq-accordion-side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* FAQ Item Wrapper */
.faq-item-wrapper {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.faq-item-wrapper:hover {
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    border-color: rgba(20, 184, 166, 0.15);
    transform: translateY(-2px);
}

/* Hide checkbox */
.faq-checkbox {
    display: none;
}

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

.faq-question-label:hover {
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.03) 0%, rgba(251, 113, 133, 0.03) 100%);
}

.faq-question-label:focus-visible {
    outline: 3px solid #14b8a6;
    outline-offset: -3px;
}

.faq-question-text {
    font-size: 1.375rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    flex: 1;
    letter-spacing: -0.01em;
}

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

.faq-icon-plus,
.faq-icon-minus {
    position: absolute;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Answer Container - Collapsed by default */
.faq-answer-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 2.5rem 2rem;
    border-top: 1px solid rgba(20, 184, 166, 0.1);
}

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

/* Checked State - Expanded */
.faq-checkbox:checked ~ .faq-question-label .faq-icon-toggle {
    background: linear-gradient(135deg, #fb7185 0%, #f43f5e 100%);
    transform: rotate(180deg);
}

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

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

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

.faq-checkbox:checked ~ .faq-question-label {
    background: linear-gradient(90deg, rgba(251, 113, 133, 0.04) 0%, rgba(20, 184, 166, 0.04) 100%);
}

.faq-checkbox:checked ~ .faq-question-label .faq-question-text {
    color: #0d9488;
}

/* Responsive Design */
@media (max-width: 992px) {
    .faq-container-wrap {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    }
    
    .faq-header-side {
    position: static;
    padding-right: 0;
    text-align: center;
    }
    
    .faq-main-title {
    font-size: 3.5rem;
    }
    
    .faq-decorative-shape {
    margin-left: auto;
    margin-right: auto;
    }
}

@media (max-width: 768px) {
    .faq-section-asymmetric {
    padding: 5rem 0 6rem;
    }
    
    .faq-container-wrap {
    padding: 0 1.5rem;
    gap: 2.5rem;
    }
    
    .faq-main-title {
    font-size: 2.75rem;
    }
    
    .faq-question-label {
    padding: 1.5rem 1.75rem;
    gap: 1.25rem;
    }
    
    .faq-question-text {
    font-size: 1.125rem;
    }
    
    .faq-icon-toggle {
    width: 36px;
    height: 36px;
    }
    
    .faq-icon-plus,
    .faq-icon-minus {
    width: 20px;
    height: 20px;
    }
    
    .faq-answer-content {
    padding: 0 1.75rem 1.5rem;
    }
    
    .faq-answer-content p {
    font-size: 1rem;
    line-height: 1.7;
    }
    
    .faq-item-wrapper {
    border-radius: 18px;
    }
}

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

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

.contact-content-wrapper {
    display: grid;

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    }
}
/* Contact Information Section - Asymmetric Split with Vibrant Accents */
.contact-info-section-j8k {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    overflow: hidden;
}

.contact-info-section-j8k .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.contact-main-header {
    font-size: 3.75rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.header-accent-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
    margin: 0 auto;
    border-radius: 3px;
    position: relative;
}

.header-accent-line::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 6px;
    background: #3498db;
    left: -50px;
    border-radius: 3px;
}

.header-accent-line::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 6px;
    background: #f39c12;
    right: -50px;
    border-radius: 3px;
}

/* Content Grid Layout */
.contact-content-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: start;
}

/* Contact Details Column */
.contact-details-column {
    position: relative;
}

.contact-card-wrapper {
    background: #ffffff;
    border-radius: 30px;
    padding: 3.5rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.contact-card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #e74c3c 0%, #3498db 50%, #f39c12 100%);
    border-radius: 30px 30px 0 0;
}

/* Contact Info Items */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    padding: 2rem 0;
    border-bottom: 2px solid #f1f3f5;
    transition: all 0.4s ease;
}

.contact-info-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-item:first-of-type {
    padding-top: 0;
}

.contact-info-item:hover {
    transform: translateX(8px);
}

/* Icon Containers */
.icon-container {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.icon-container svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.address-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.phone-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.email-icon {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}

.contact-info-item:hover .icon-container {
    transform: scale(1.1) rotate(5deg);
}

/* Info Content */
.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.info-value {
    font-size: 1.375rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.5;
    margin: 0;
}

.address-value {
    font-size: 1.25rem;
}

.phone-link {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.phone-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    transition: width 0.4s ease;
}

.phone-link:hover {
    color: #2980b9;
    transform: translateY(-2px);
}

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

.email-value {
    color: #f39c12;
}

.email-text {
    font-size: 1.375rem;
    font-weight: 600;
}

/* Decorative Element */
.contact-decorative-element {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
}

/* Map Column */
.map-column {
    position: relative;
}

.map-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    height: 100%;
    min-height: 550px;
}

.map-frame {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

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

.map-overlay-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid transparent;
    border-radius: 30px;
    background: linear-gradient(135deg, #e74c3c, #3498db, #f39c12) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.4;
}

/* Background Decorations */
.bg-decoration-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.4;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.15) 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.15) 0%, transparent 70%);
    bottom: -150px;
    right: -50px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .contact-main-header {
    font-size: 2.75rem;
    }
    
    .map-container {
    min-height: 450px;
    }
    
    .map-frame iframe {
    min-height: 450px;
    }
}

@media (max-width: 768px) {
    .contact-info-section-j8k {
    padding: 5rem 0;
    }
    
    .contact-info-section-j8k .container {
    padding: 0 1.5rem;
    }
    
    .contact-header-wrap {
    margin-bottom: 3.5rem;
    }
    
    .contact-main-header {
    font-size: 2.25rem;
    }
    
    .header-accent-line::before,
    .header-accent-line::after {
    display: none;
    }
    
    .contact-card-wrapper {
    padding: 2.5rem 2rem;
    border-radius: 24px;
    }
    
    .contact-info-item {
    gap: 1.25rem;
    padding: 1.5rem 0;
    }
    
    .icon-container {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    }
    
    .icon-container svg {
    width: 28px;
    height: 28px;
    }
    
    .info-value {
    font-size: 1.125rem;
    }
    
    .address-value {
    font-size: 1.063rem;
    }
    
    .email-text {
    font-size: 1.125rem;
    }
    
    .map-container {
    min-height: 400px;
    border-radius: 24px;
    }
    
    .map-frame {
    border-radius: 24px;
    }
    
    .map-frame iframe {
    min-height: 400px;
    }
    
    .map-overlay-border {
    border-radius: 24px;
    border-width: 3px;
    }
    
    .contact-decorative-element {
    width: 100px;
    height: 100px;
    bottom: -15px;
    right: -15px;
    }
}

@media (max-width: 576px) {
    .contact-main-header {
    font-size: 1.875rem;
    }
    
    .contact-card-wrapper {
    padding: 2rem 1.5rem;
    }
    
    .info-value {
    font-size: 1rem;
    }
    
    .address-value {
    font-size: 0.938rem;
    }
    
    .email-text {
    font-size: 1rem;
    }
    
    .map-container {
    min-height: 350px;
    }
    
    .map-frame iframe {
    min-height: 350px;
    }
}
/* Modern Minimalist Footer with Gradient Accent */
.footer-block-modern {
    position: relative;
    padding: 5rem 0 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    overflow: hidden;
}

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

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

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

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

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

.footer-icon {
    flex-shrink: 0;
    color: #667eea;
    margin-top: 0.125rem;
}

.footer-address {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.footer-phone {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-phone::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.footer-phone:hover {
    color: #667eea;
}

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

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

/* Navigation Section */
.footer-navigation {
    display: flex;
    justify-content: flex-end;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 200px));
    gap: 3rem;
}

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

.footer-nav-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #667eea;
    margin: 0;
}

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

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

.footer-link::before {
    content: '';
    position: absolute;
    left: -1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.75rem;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #667eea;
    padding-left: 1.5rem;
}

.footer-link:hover::before {
    opacity: 1;
}

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

/* Footer Bottom Bar */
.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #cbd5e0 50%, transparent 100%);
    margin-bottom: 1.5rem;
}

.footer-copyright {
    text-align: center;
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
}

/* Decorative Gradient Accent */
.footer-gradient-accent {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.footer-container,
.footer-bottom {
    position: relative;
    z-index: 1;
}

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

    .footer-navigation {
    justify-content: flex-start;
    }

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

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

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

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

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

    .footer-gradient-accent {
    width: 300px;
    height: 300px;
    top: -5%;
    right: -15%;
    }

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

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

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

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

    .footer-contact-item {
    flex-direction: column;
    gap: 0.5rem;
    }

    .footer-address,
    .footer-phone,
    .footer-link {
    font-size: 0.9375rem;
    }

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

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