@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: #6ca6b94d;
}

#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;
}
/* Glassmorphic Floating Header */
.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::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.header-glass-nav.scrolled::before {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

/* Brand Section */
.brand-section {
    flex-shrink: 0;
}

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

.brand-logo:hover {
    color: #6366f1;
    transform: translateY(-2px);
}

.logo-icon {
    color: #6366f1;
    transition: all 0.3s ease;
}

.brand-logo:hover .logo-icon {
    transform: rotate(180deg);
}

.brand-text {
    letter-spacing: -0.02em;
}

/* Desktop Navigation */
.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.25rem;
    color: #334155;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.header-glass-nav.scrolled .nav-link {
    color: #1e293b;
}

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

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

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

/* Dropdown Menu */
.dropdown-menu-new {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 0.5rem;
    min-width: 220px;
    list-style: none;
    margin: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

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

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

.dropdown-link:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    transform: translateX(4px);
}

/* Search Section */
.search-section {
    flex-shrink: 0;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 240px;
    padding: 0.75rem 3rem 0.75rem 1.25rem;
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #1e293b;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    outline: none;
}

.search-input::placeholder {
    color: #64748b;
}

.search-input:focus {
    border-color: #6366f1;
    background: rgba(255, 255, 255, 0.9);
    width: 280px;
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #6366f1;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #4f46e5;
    transform: translateY(-50%) scale(1.1);
}

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

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

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.mobile-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.2);
}

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

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

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

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    color: #1e293b;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 16px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    transform: translateX(8px);
}

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

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

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

.mobile-dropdown-menu-new.active {
    max-height: 500px;
    padding: 0.5rem 0 0.5rem 1.5rem;
}

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

.mobile-dropdown-link:hover {
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
    transform: translateX(6px);
}

/* Mobile Search */
.mobile-search {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.mobile-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-search-input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 1.5rem;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    color: #1e293b;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.mobile-search-input::placeholder {
    color: #64748b;
}

.mobile-search-input:focus {
    border-color: #6366f1;
    background: #ffffff;
}

.mobile-search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #6366f1;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-search-btn:hover {
    background: #4f46e5;
    transform: translateY(-50%) scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .desktop-nav,
    .search-section {
    display: none;
    }
    
    .mobile-toggle {
    display: flex;
    }
    
    .header-container {
    gap: 1rem;
    }
}

@media (max-width: 576px) {
    .header-container {
    padding: 0 1.25rem;
    }
    
    .brand-logo {
    font-size: 1.25rem;
    }
    
    .logo-icon {
    width: 32px;
    height: 32px;
    }
    
    .mobile-nav {
    width: 90%;
    padding: 5rem 1.5rem 2rem;
    }
    
    .mobile-nav-link {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
    }
}

/* Accessibility */
.nav-link:focus,
.dropdown-link:focus,
.mobile-nav-link:focus,
.search-btn:focus,
.mobile-toggle:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}
/* Hero Quantum - Unique Diagonal Layout */
.hero-quantum {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a0b2e 50%, #16213e 100%);
    display: flex;
    flex-direction: column;
}

/* Animated Background Layers */
.quantum-bg-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.layer-1 {
    background: radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.layer-2 {
    background: radial-gradient(circle at 80% 60%, rgba(247, 37, 133, 0.12) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite reverse;
}

.layer-3 {
    background: radial-gradient(circle at 50% 80%, rgba(123, 47, 247, 0.1) 0%, transparent 50%);
    animation: float 30s ease-in-out infinite;
}

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

/* Orbiting Decorations */
.orbit-container {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 400px;
    height: 400px;
    transform: translate(0, -50%);
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 300px;
    height: 300px;
    border-color: rgba(0, 212, 255, 0.3);
    animation: rotate 30s linear infinite;
}

.ring-2 {
    width: 400px;
    height: 400px;
    border-color: rgba(247, 37, 133, 0.2);
    animation: rotate 40s linear infinite reverse;
}

.orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
}

.dot-1 {
    background: #00d4ff;
    animation: orbit1 20s linear infinite;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.dot-2 {
    background: #f72585;
    animation: orbit2 25s linear infinite;
    box-shadow: 0 0 20px rgba(247, 37, 133, 0.8);
}

.dot-3 {
    background: #ffd60a;
    animation: orbit3 30s linear infinite;
    box-shadow: 0 0 20px rgba(255, 214, 10, 0.8);
}

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

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

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

@keyframes orbit3 {
    from { transform: translate(-50%, -50%) rotate(120deg) translateX(180px) rotate(-120deg); }
    to { transform: translate(-50%, -50%) rotate(480deg) translateX(180px) rotate(-480deg); }
}

/* Header Navigation */
.quantum-header {
    position: relative;
    z-index: 1000;
    padding: 1.5rem 0;
}

.header-blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(10, 10, 26, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-mark {
    display: flex;
    align-items: center;
    transition: transform 0.4s ease;
}

.logo-mark:hover {
    transform: rotate(180deg) scale(1.1);
}

.main-nav {
    display: flex;
    gap: 3rem;
}

.nav-item {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #7b2ff7);
    transition: width 0.4s ease;
}

.nav-item:hover {
    color: #00d4ff;
}

.nav-item:hover::after {
    width: 100%;
}

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

.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.bar {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-checkbox:checked ~ .menu-trigger .bar-top {
    transform: translateY(9px) rotate(45deg);
    background: #00d4ff;
}

.menu-checkbox:checked ~ .menu-trigger .bar-mid {
    opacity: 0;
    transform: scaleX(0);
}

.menu-checkbox:checked ~ .menu-trigger .bar-bot {
    transform: translateY(-9px) rotate(-45deg);
    background: #00d4ff;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(165deg, #0f0f1e 0%, #1a0b2e 100%);
    backdrop-filter: blur(20px);
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.menu-checkbox:checked ~ .mobile-drawer {
    right: 0;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.drawer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    transform: translateX(50px);
    opacity: 0;
}

.menu-checkbox:checked ~ .mobile-drawer .drawer-link {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.drawer-link:hover {
    color: #00d4ff;
    padding-left: 1rem;
    border-color: #00d4ff;
}

/* Hero Stage */
.hero-stage {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.stage-left {
    padding-right: 2rem;
}

.content-pod {
    max-width: 600px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00d4ff;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.pill-text {
    color: #00d4ff;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mega-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.title-fragment {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #7b2ff7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 6s ease infinite;
    background-size: 200% 200%;
}

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

.desc-block {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.action-cluster {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-quantum {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0a0a0a;
    text-decoration: none;
    overflow: hidden;
    border-radius: 50px;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7, #f72585);
    background-size: 200% 200%;
    animation: gradient-flow 4s ease infinite;
    z-index: -1;
    transition: transform 0.4s ease;
}

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

.btn-quantum:hover .btn-bg {
    transform: scale(1.1);
}

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

.btn-icon {
    transition: transform 0.4s ease;
}

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

.btn-quantum:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

/* Visual Composite */
.stage-right {
    position: relative;
}

.visual-composite {
    position: relative;
    width: 100%;
    height: 600px;
}

.main-visual {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 60px rgba(0, 212, 255, 0.3));
}

.shape-group-1 { animation: float-shape 6s ease-in-out infinite; }
.shape-group-2 { animation: float-shape 7s ease-in-out infinite 1s; }
.shape-group-3 { animation: float-shape 8s ease-in-out infinite 2s; }
.shape-group-4 { animation: float-shape 5s ease-in-out infinite 0.5s; }

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

/* Metric Cards */
.metric-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float-card 4s ease-in-out infinite;
}

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

.mc-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.mc-2 {
    top: 50%;
    right: -8%;
    animation-delay: 1s;
}

.mc-3 {
    bottom: 10%;
    left: 5%;
    animation-delay: 2s;
}

.mc-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mc-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.mc-value {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 700;
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-stage {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1.5rem;
    }
    
    .stage-left {
    padding-right: 0;
    text-align: center;
    }
    
    .content-pod {
    max-width: 100%;
    }
    
    .status-pill {
    margin-left: auto;
    margin-right: auto;
    }
    
    .action-cluster {
    justify-content: center;
    }
    
    .orbit-container {
    display: none;
    }
    
    .main-nav {
    display: none;
    }
    
    .menu-trigger {
    display: flex;
    }
    
    .visual-composite {
    height: 400px;
    }
    
    .mc-1 {
    left: 0;
    }
    
    .mc-2 {
    right: 0;
    }
    
    .mc-3 {
    left: 0;
    }
}

@media (max-width: 768px) {
    .mega-title {
    font-size: 2.5rem;
    }
    
    .lead-text {
    font-size: 1.125rem;
    }
    
    .btn-quantum {
    padding: 1rem 2rem;
    font-size: 1rem;
    }
    
    .metric-card {
    padding: 1rem;
    gap: 0.75rem;
    }
    
    .mc-value {
    font-size: 1rem;
    }
    
    .visual-composite {
    height: 300px;
    }
}

@media (max-width: 576px) {
    .header-inner {
    padding: 0 1rem;
    }
    
    .logo-mark svg {
    width: 40px;
    height: 40px;
    }
    
    .hero-stage {
    padding: 2rem 1rem;
    }
    
    .mega-title {
    font-size: 2rem;
    }
    
    .metric-card {
    position: static;
    margin-bottom: 1rem;
    }
    
    .visual-composite {
    height: 250px;
    }
}
/* Features Block: Diagonal Split Layout with Bold Gradients */
.features-diagonal-burst {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.features-diagonal-burst::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.features-diagonal-burst::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.features-diagonal-burst .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.feature-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);
    transform-style: preserve-3d;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

/* Unique gradient backgrounds for each card */
.feature-card-1 {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: #ffffff;
}

.feature-card-2 {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    color: #ffffff;
}

.feature-card-3 {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
}

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

.feature-card-2:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.feature-card-3:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.feature-image-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.feature-bg-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.2;
    animation: morph 8s ease-in-out infinite;
    z-index: 1;
}

.shape-1 {
    background: rgba(255, 255, 255, 0.3);
    animation-delay: 0s;
}

.shape-2 {
    background: rgba(255, 255, 255, 0.3);
    animation-delay: 1s;
}

.shape-3 {
    background: rgba(255, 255, 255, 0.3);
    animation-delay: 2s;
}

@keyframes morph {
    0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(0deg) scale(1);
    }
    25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    transform: rotate(90deg) scale(1.1);
    }
    50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    transform: rotate(180deg) scale(1);
    }
    75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    transform: rotate(270deg) scale(1.1);
    }
}

.feature-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.15) rotate(5deg);
}

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

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

.feature-description {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0;
}

.feature-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    opacity: 0.15;
    transition: all 0.4s ease;
}

.deco-1 {
    top: -20px;
    right: -20px;
    background: rgba(255, 255, 255, 0.4);
}

.deco-2 {
    bottom: -25px;
    left: -25px;
    background: rgba(255, 255, 255, 0.4);
}

.deco-3 {
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.4);
}

.feature-card:hover .feature-decoration {
    transform: scale(1.5);
    opacity: 0.25;
}

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

    .feature-card-3 {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    }
}

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

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

    .feature-card {
    padding: 2rem;
    }

    .feature-card-3 {
    grid-column: auto;
    max-width: 100%;
    }

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

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

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

    .feature-image {
    width: 70px;
    height: 70px;
    }
}

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

    .features-diagonal-burst .container {
    padding: 0 1.5rem;
    }

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

    .feature-card {
    padding: 1.75rem;
    }

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

    .feature-description {
    font-size: 0.9375rem;
    }
}
/* Testimonials Block: Modern Carousel Design */
.testimonials-block-xy7 {
    padding: 7rem 0;
    background: linear-gradient(165deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

.testimonials-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    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;
    position: relative;
    display: inline-block;
}

.testimonials-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f5576c 100%);
    border-radius: 10px;
}

/* Carousel Container */
.testimonials-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0 4rem;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: transform;
}

/* Testimonial Card */
.testimonial-card-item {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0 15px;
}

.testimonial-content-wrap {
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-content-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(245, 87, 108, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.testimonial-card-item:hover .testimonial-content-wrap {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.15);
}

.testimonial-card-item:hover .testimonial-content-wrap::before {
    opacity: 1;
}

/* Avatar */
.avatar-wrapper {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    position: relative;
}

.avatar-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card-item:hover .avatar-svg {
    transform: scale(1.08) rotate(3deg);
}

/* Text Area */
.testimonial-text-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote-icon-wrap {
    width: 40px;
    height: 40px;
    color: #667eea;
    opacity: 0.3;
}

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

.review-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
    font-weight: 400;
    position: relative;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 2px solid #e2e8f0;
}

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

.star-rating {
    display: flex;
    gap: 4px;
}

.star-icon {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    margin-left: 50px;
    margin-right: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: #667eea;
}

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

.carousel-prev {
    left: -28px;
}

.carousel-next {
    right: -28px;
}

.carousel-nav-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

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

/* Carousel Pagination */
.carousel-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    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 {
    width: 40px;
    border-radius: 10px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-block-xy7 {
    padding: 5rem 0;
    }
    
    .testimonials-main-title {
    font-size: 2.75rem;
    }
    
    .testimonial-content-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem;
    }
    
    .avatar-wrapper {
    width: 90px;
    height: 90px;
    }
    
    .reviewer-info {
    align-items: center;
    }
    
    .carousel-prev {
    left: -18px;
    }
    
    .carousel-next {
    right: -18px;
    }
    
    .carousel-nav-btn {
    width: 48px;
    height: 48px;
    }
}

@media (max-width: 768px) {
    .testimonials-block-xy7 {
    padding: 4rem 0;
    }
    
    .testimonials-header-wrap {
    margin-bottom: 3rem;
    }
    
    .testimonials-main-title {
    font-size: 2.25rem;
    }
    
    .testimonial-content-wrap {
    padding: 2rem;
    border-radius: 25px;
    }
    
    .review-text {
    font-size: 1rem;
    line-height: 1.7;
    }
    
    .reviewer-name {
    font-size: 1.125rem;
    }
    
    .avatar-wrapper {
    width: 80px;
    height: 80px;
    }
    
    .carousel-nav-btn {
    width: 44px;
    height: 44px;
    margin-left: 20px;
    margin-right: 20px;
    }
    
    .carousel-nav-btn svg {
    width: 20px;
    height: 20px;
    }
    
    .carousel-prev {
    left: 10px;
    }
    
    .carousel-next {
    right: 10px;
    }
    
    .pagination-dot {
    width: 10px;
    height: 10px;
    }
    
    .pagination-dot.active {
    width: 32px;
    }
    
    .carousel-pagination {
    margin-top: 2.5rem;
    }
}

@media (max-width: 576px) {
    .testimonials-block-xy7 {
    padding: 3rem 0;
    }
    
    .testimonials-main-title {
    font-size: 1.875rem;
    }
    
    .testimonial-content-wrap {
    padding: 1.75rem;
    gap: 1.5rem;
    }
    
    .review-text {
    font-size: 0.9375rem;
    }
    
    .avatar-wrapper {
    width: 70px;
    height: 70px;
    }
    
    .quote-icon-wrap {
    width: 32px;
    height: 32px;
    }
    
    .star-icon {
    width: 18px;
    height: 18px;
    }
    
    .testimonial-card-item {
    padding: 0 10px;
    }

    .carousel-nav-btn {
        margin-left: 10px;
        margin-right: 10px;
    }
}

/* Fallback for no JavaScript */
.no-js .testimonials-track {
    flex-direction: column;
    gap: 2rem;
}

.no-js .testimonial-card-item {
    min-width: 100%;
}

.no-js .carousel-nav-btn,
.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: Geometric Card Grid Design - NO :root variables */
.faq-section-geo-847 {
    padding: 8rem 0;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Small Mobile */
@media (max-width: 480px) {
    .faq-main-title-847 {
    font-size: 1.875rem;
    }
    
    .faq-card-inner-847 {
    padding: 1.5rem;
    }
    
    .faq-question-847 {
    font-size: 1.125rem;
    }
    
    .faq-answer-847 {
    font-size: 0.9375rem;
    }
}
/* Contact Form 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;
    }
}
/* Footer Wave Modern Design - Vibrant Coral & Mint Theme */
.footer-wave-modern {
    position: relative;
    background: linear-gradient(165deg, #fef9f3 0%, #fff5eb 50%, #ffeee0 100%);
    padding-top: 0;
    overflow: hidden;
}

.footer-wave-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-99%);
}

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

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 5rem 2rem 2rem;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

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

.footer-brand-wrapper {
    margin-bottom: 0.5rem;
}

.footer-brand-name {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #ff8787 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.footer-tagline {
    color: #8b5e3c;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #6b4423;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-phone-link {
    color: #6b4423;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-phone-link:hover {
    color: #ff6b6b;
    transform: translateX(3px);
}

/* Columns */
.footer-column-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #3d2817;
    margin: 0 0 1.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.75rem;
}

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

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

.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6b4423;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
}

.footer-link-arrow {
    display: inline-block;
    color: #ff6b6b;
    font-size: 1.125rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-nav-link:hover {
    color: #ff6b6b;
    transform: translateX(5px);
}

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

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

/* Newsletter Column */
.footer-newsletter-text {
    color: #6b4423;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    color: #ff6b6b;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.1);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.35);
}

.footer-social-link:focus {
    outline: 2px solid #ff6b6b;
    outline-offset: 3px;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255, 107, 107, 0.15);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    color: #8b5e3c;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-bottom-link {
    color: #6b4423;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

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

.footer-bottom-link:hover {
    color: #ff6b6b;
}

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

.footer-bottom-link:focus {
    outline: 2px solid #ff6b6b;
    outline-offset: 4px;
    border-radius: 3px;
}

.footer-separator {
    color: #d4a373;
    font-weight: 600;
}

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

@media (max-width: 992px) {
    .footer-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    }

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

@media (max-width: 768px) {
    .footer-container {
    padding: 4rem 1.5rem 2rem;
    }

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

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

    .footer-column-title {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }

    .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    }

    .footer-bottom-links {
    justify-content: center;
    }

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

@media (max-width: 576px) {
    .footer-container {
    padding: 3rem 1rem 1.5rem;
    }

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

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

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

    .footer-social-link {
    width: 40px;
    height: 40px;
    }

    .footer-social-link svg {
    width: 18px;
    height: 18px;
    }

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