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

#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 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 with Neon Accents */
.features-diagonal-neon {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    overflow: hidden;
}

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

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

/* Feature Card Styling */
.feature-card {
    position: relative;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

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

/* Feature Image Wrapper */
.feature-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.8);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

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

/* Image Glow Effect */
.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    z-index: 1;
}

.feature-card:hover .image-glow {
    opacity: 0.7;
}

.glow-lime {
    background: radial-gradient(circle, #c0ff00 0%, transparent 70%);
}

.glow-pink {
    background: radial-gradient(circle, #ff006e 0%, transparent 70%);
}

.glow-cyan {
    background: radial-gradient(circle, #00f5ff 0%, transparent 70%);
}

/* Feature Content */
.feature-content {
    padding: 2.5rem 2rem 2rem;
    position: relative;
    z-index: 3;
}

.feature-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
}

.card-accent-lime .feature-number {
    background: linear-gradient(135deg, #c0ff00 0%, #7fff00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-accent-pink .feature-number {
    background: linear-gradient(135deg, #ff006e 0%, #ff4d8f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-accent-cyan .feature-number {
    background: linear-gradient(135deg, #00f5ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

/* Accent Line */
.feature-accent-line {
    height: 4px;
    width: 0;
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.line-lime {
    background: linear-gradient(90deg, #c0ff00 0%, #7fff00 100%);
    box-shadow: 0 0 20px rgba(192, 255, 0, 0.5);
}

.line-pink {
    background: linear-gradient(90deg, #ff006e 0%, #ff4d8f 100%);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

.line-cyan {
    background: linear-gradient(90deg, #00f5ff 0%, #00d4ff 100%);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

/* Decorative Blobs */
.deco-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    animation: float-blob 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #c0ff00 0%, transparent 70%);
    top: -150px;
    left: -100px;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ff006e 0%, transparent 70%);
    bottom: -200px;
    right: -150px;
    animation-delay: -10s;
}

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

/* Decorative Grid Pattern */
.deco-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

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

    .feature-card:nth-child(3) {
    grid-column: span 2;
    max-width: 600px;
    margin: 0 auto;
    }
}

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

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

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

    .feature-card:nth-child(3) {
    grid-column: span 1;
    max-width: 100%;
    }

    .feature-image-wrapper {
    height: 220px;
    }

    .feature-content {
    padding: 2rem 1.5rem 1.5rem;
    }

    .feature-number {
    font-size: 2.5rem;
    }

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

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

    .blob-1,
    .blob-2 {
    width: 300px;
    height: 300px;
    }
}

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

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

    .feature-image-wrapper {
    height: 180px;
    }

    .feature-content {
    padding: 1.5rem 1.25rem;
    }

    .feature-number {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    }

    .feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    }

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

    .feature-card:hover {
    transform: translateY(-8px) scale(1.01);
    }
}

/* Focus States for Accessibility */
.feature-card:focus-within {
    outline: 3px solid rgba(192, 255, 0, 0.5);
    outline-offset: 4px;
}
/* Testimonials Carousel Section - Vibrant Gradient Design */
.testimonials-carousel-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

.testimonials-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.author-info {
    flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.services-block-fx9::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-block-fx9::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.services-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.15;
    background: linear-gradient(135deg, #0ea5e9 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.services-main-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #0ea5e9, #8b5cf6, #ec4899);
    border-radius: 10px;
}

.services-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
}

.service-card-item {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0ea5e9, #8b5cf6, #ec4899, #f59e0b);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
}

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

.service-card-item:nth-child(1) .service-icon-wrapper {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.service-card-item:nth-child(2) .service-icon-wrapper {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.service-card-item:nth-child(3) .service-icon-wrapper {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.service-card-item:nth-child(4) .service-icon-wrapper {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.service-card-item:nth-child(5) .service-icon-wrapper {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-card-item:nth-child(6) .service-icon-wrapper {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: all 0.4s ease;
    position: relative;
}

.service-card-item:hover .service-icon-wrapper {
    transform: scale(1.08) rotate(5deg);
}

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

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

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

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

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

.service-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
    letter-spacing: 0.01em;
    align-self: flex-start;
}

.service-cta-link:hover {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(14, 165, 233, 0.35);
}

.service-cta-link:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.2);
}

.service-cta-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-cta-link:hover::after {
    transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .services-block-fx9 {
    padding: 5rem 0 6rem;
    }

    .services-grid-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    }

    .services-header-wrap {
    margin-bottom: 3.5rem;
    }

    .service-card-item {
    padding: 2rem 1.75rem;
    }
}

@media (max-width: 768px) {
    .services-block-fx9 {
    padding: 4rem 0 5rem;
    }

    .services-main-title {
    font-size: 2.25rem;
    }

    .services-grid-container {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    }

    .service-card-item {
    padding: 2rem 1.5rem;
    }

    .service-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    }

    .service-svg-icon {
    width: 36px;
    height: 36px;
    }

    .service-name {
    font-size: 1.375rem;
    }

    .service-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    }

    .service-cta-link {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    }
}

@media (max-width: 576px) {
    .services-block-fx9 {
    padding: 3.5rem 0 4rem;
    }

    .services-block-fx9 .container {
    padding: 0 1rem;
    }

    .services-header-wrap {
    margin-bottom: 2.5rem;
    }

    .services-main-title {
    font-size: 2rem;
    }

    .services-main-title::after {
    width: 60px;
    height: 4px;
    }

    .service-card-item {
    border-radius: 20px;
    }

    .service-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    }

    .service-svg-icon {
    width: 32px;
    height: 32px;
    }
}
/* FAQ Section: Minimalist with Gradient Accent Lines */
.faq-section-creative {
    padding: 7rem 0;
    background: linear-gradient(180deg, #fef3f8 0%, #ffffff 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.faq-section-creative::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section-creative::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.faq-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item-modern {
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ec4899 0%, #8b5cf6 50%, #0ea5e9 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-modern:hover {
    border-color: rgba(236, 72, 153, 0.2);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.12);
}

.faq-item-modern:hover::before {
    transform: scaleX(1);
}

.faq-item-modern.faq-active {
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.15);
}

.faq-item-modern.faq-active::before {
    transform: scaleX(1);
}

.faq-question-btn {
    width: 100%;
    padding: 1.75rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question-btn:hover {
    background: rgba(236, 72, 153, 0.02);
}

.faq-question-btn:focus {
    outline: none;
}

.faq-question-btn:focus-visible {
    outline: 2px solid #ec4899;
    outline-offset: -2px;
}

.faq-question-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item-modern.faq-active .faq-question-text {
    color: #ec4899;
}

.faq-icon-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #64748b;
    transition: all 0.3s ease;
}

.faq-item-modern:hover .faq-icon-toggle {
    color: #ec4899;
    transform: scale(1.1);
}

.faq-item-modern.faq-active .faq-icon-toggle {
    color: #ec4899;
    transform: rotate(180deg);
}

.faq-icon-toggle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.icon-plus {
    opacity: 1;
}

.icon-minus {
    opacity: 0;
}

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

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

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 2rem 1.75rem 2rem;
}

.faq-answer-content p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #475569;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section-creative {
    padding: 4rem 0;
    }
    
    .faq-main-title {
    font-size: 2.25rem;
    }
    
    .faq-header-wrap {
    margin-bottom: 2.5rem;
    }
    
    .faq-accordion-container {
    gap: 1rem;
    }
    
    .faq-item-modern {
    border-radius: 12px;
    }
    
    .faq-question-btn {
    padding: 1.25rem 1.25rem;
    gap: 1rem;
    }
    
    .faq-question-text {
    font-size: 1.0625rem;
    }
    
    .faq-icon-toggle {
    width: 24px;
    height: 24px;
    }
    
    .faq-icon-toggle svg {
    width: 20px;
    height: 20px;
    }
    
    .faq-answer-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .faq-answer-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .faq-section-creative {
    padding: 3rem 0;
    }
    
    .faq-main-title {
    font-size: 1.875rem;
    }
    
    .faq-section-creative .container {
    padding: 0 1rem;
    }
    
    .faq-question-btn {
    padding: 1rem 1rem;
    }
    
    .faq-question-text {
    font-size: 1rem;
    }
    
    .faq-answer-content {
    padding: 0 1rem 1rem 1rem;
    }
}
/* Contact Form Section: Asymmetric Gradient Split with Floating Card */
.contact-form-section-qx7 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-wrapper-qx7 {
    position: relative;
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 100vh;
}

/* Gradient Decorative Side */
.contact-gradient-side-qx7 {
    position: relative;
    background: linear-gradient(165deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-decorative-circle-qx7 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    animation: float-circle-qx7 8s ease-in-out infinite;
    top: 20%;
    left: 10%;
}

.contact-decorative-circle-qx7.circle-secondary {
    width: 300px;
    height: 300px;
    bottom: 15%;
    right: 5%;
    top: auto;
    left: auto;
    animation-delay: 2s;
    animation-duration: 10s;
    background: rgba(255, 255, 255, 0.05);
}

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

/* Form Container Side */
.contact-form-container-qx7 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: #f8f9ff;
}

/* Floating Form Card */
.contact-form-card-qx7 {
    position: relative;
    width: 100%;
    max-width: 550px;
    background: #ffffff;
    border-radius: 30px;
    padding: 3.5rem;
    box-shadow: 
    0 20px 60px rgba(102, 126, 234, 0.15),
    0 0 0 1px rgba(102, 126, 234, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-card-qx7:hover {
    transform: translateY(-8px);
    box-shadow: 
    0 30px 80px rgba(102, 126, 234, 0.25),
    0 0 0 1px rgba(102, 126, 234, 0.08);
}

/* Header */
.contact-form-header-qx7 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 2.5rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.form-label-qx7 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #4a4a68;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.form-input-qx7,
.form-textarea-qx7 {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;
    color: #1a1a2e;
    background: #f8f9ff;
    border: 2px solid transparent;
    border-radius: 16px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form-input-qx7::placeholder,
.form-textarea-qx7::placeholder {
    color: #9ca3af;
}

.form-input-qx7:focus,
.form-textarea-qx7:focus {
    background: #ffffff;
    border-color: #667eea;
    box-shadow: 
    0 0 0 4px rgba(102, 126, 234, 0.1),
    0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.form-input-qx7:focus + .form-label-qx7,
.form-textarea-qx7:focus + .form-label-qx7 {
    color: #667eea;
}

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

/* Submit Button */
.form-submit-btn-qx7 {
    position: relative;
    width: 100%;
    padding: 1.125rem 2rem;
    margin-top: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    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.02em;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

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

.form-submit-btn-qx7:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
}

.form-submit-btn-qx7:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.35);
}

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

.btn-arrow-qx7 {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-wrapper-qx7 {
    grid-template-columns: 1fr;
    min-height: auto;
    }
    
    .contact-gradient-side-qx7 {
    display: none;
    }
    
    .contact-form-container-qx7 {
    padding: 5rem 2rem;
    }
}

@media (max-width: 768px) {
    .contact-form-section-qx7 {
    min-height: auto;
    padding: 3rem 0;
    }
    
    .contact-form-container-qx7 {
    padding: 3rem 1.25rem;
    }
    
    .contact-form-card-qx7 {
    padding: 2.5rem 1.75rem;
    border-radius: 24px;
    }
    
    .contact-form-header-qx7 {
    font-size: 2rem;
    margin-bottom: 2rem;
    }
    
    .contact-form-qx7 {
    gap: 1.5rem;
    }
    
    .form-input-qx7,
    .form-textarea-qx7 {
    font-size: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    }
    
    .form-submit-btn-qx7 {
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .contact-form-card-qx7 {
    padding: 2rem 1.5rem;
    }
    
    .contact-form-header-qx7 {
    font-size: 1.75rem;
    }
    
    .form-label-qx7 {
    font-size: 0.875rem;
    }
}
/* Contact Information Block - Asymmetric Floating Map Design */
.contact-info-section {
    position: relative;
    padding: 8rem 0 9rem;
    background: linear-gradient(165deg, #f8f9ff 0%, #fff5f8 50%, #f0f9ff 100%);
    overflow: hidden;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Header Styling */
.contact-header {
    margin-bottom: 4rem;
}

.contact-main-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-accent-line {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #ff6b9d 0%, #ffa07a 50%, #ffd700 100%);
    border-radius: 3px;
    position: relative;
}

.title-accent-line::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #40e0d0;
    border-radius: 50%;
    opacity: 0.3;
}

/* Contact Details Grid */
.contact-details-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #ff6b9d 0%, #ffa07a 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.15);
}

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

/* Icon Styling */
.contact-icon-wrapper {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    position: relative;
    transition: all 0.4s ease;
}

.address-icon {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    color: #ffffff;
}

.phone-icon {
    background: linear-gradient(135deg, #40e0d0 0%, #56efde 100%);
    color: #ffffff;
}

.email-icon {
    background: linear-gradient(135deg, #ffa07a 0%, #ffb894 100%);
    color: #ffffff;
}

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

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

/* Contact Content */
.contact-content {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 64px;
}

.contact-value {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.6;
    word-break: break-word;
}

.address-text {
    font-weight: 500;
}

.phone-link,
.email-link {
    text-decoration: none;
    color: #1a1a2e;
    transition: all 0.3s ease;
    position: relative;
}

.phone-link::after,
.email-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d 0%, #40e0d0 100%);
    transition: width 0.3s ease;
}

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

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

.phone-link:focus,
.email-link:focus {
    outline: 3px solid #ff6b9d;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Map Container */
.contact-map-container {
    position: relative;
    height: 600px;
}

.map-frame-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-frame-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

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

/* Decorative Blob Behind Map */
.map-decorative-blob {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #ff6b9d 0%, #40e0d0 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.08;
    z-index: -1;
    animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    33% {
    transform: translate(20px, -20px) rotate(120deg);
    border-radius: 50% 60% 50% 40% / 60% 40% 60% 40%;
    }
    66% {
    transform: translate(-20px, 20px) rotate(240deg);
    border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%;
    }
}

/* Background Decorative Elements */
.contact-bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    z-index: 1;
}

.decoration-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff6b9d 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.decoration-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #40e0d0 0%, transparent 70%);
    bottom: -150px;
    right: 10%;
}

.decoration-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #ffa07a 0%, transparent 70%);
    top: 50%;
    right: -125px;
    transform: translateY(-50%);
}

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

    .contact-map-container {
    height: 500px;
    }
}

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

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

    .contact-main-title {
    font-size: 2.5rem;
    }

    .contact-header {
    margin-bottom: 3rem;
    }

    .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    }

    .contact-card:hover {
    transform: translateY(-4px);
    }

    .contact-icon-wrapper {
    width: 56px;
    height: 56px;
    }

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

    .contact-value {
    font-size: 1.125rem;
    }

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

    .map-frame-wrapper {
    border-radius: 24px;
    }

    .map-decorative-blob {
    width: 200px;
    height: 200px;
    top: -30px;
    right: -30px;
    }

    .decoration-1 {
    width: 250px;
    height: 250px;
    }

    .decoration-2 {
    width: 200px;
    height: 200px;
    }

    .decoration-3 {
    width: 180px;
    height: 180px;
    }
}

@media (max-width: 480px) {
    .contact-main-title {
    font-size: 2rem;
    }

    .contact-card {
    padding: 1.5rem 1rem;
    }

    .contact-value {
    font-size: 1rem;
    }

    .contact-map-container {
    height: 350px;
    }
}
/* Modern Footer Block - Split Grid with Gradient Accents */
.footer-block-modern {
    position: relative;
    padding: 5rem 0 2rem;
    background: linear-gradient(165deg, #1a1a2e 0%, #0f0f1e 50%, #16213e 100%);
    color: #e4e4e7;
    overflow: hidden;
}

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

/* Top Grid Layout */
.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

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

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

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #a1a1aa;
}

.footer-icon {
    flex-shrink: 0;
    color: #00d4ff;
}

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

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

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

/* Navigation Column */
.footer-nav-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

.footer-nav-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    color: #e4e4e7;
    transition: all 0.3s ease;
}

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

.footer-link-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

/* Legal Column */
.footer-legal-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

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

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

.footer-legal-link:hover {
    color: #ffffff;
    padding-left: 2rem;
}

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

.footer-legal-link:focus {
    outline: 2px solid #00d4ff;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Decorative Divider */
.footer-divider {
    position: relative;
    width: 100%;
    height: 1px;
    margin: 3rem 0 2rem;
}

.footer-divider-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #3f3f46 20%, #3f3f46 80%, transparent 100%);
}

.footer-divider-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #00d4ff 50%, transparent 100%);
    filter: blur(3px);
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #71717a;
}

.footer-year {
    font-weight: 500;
}

.footer-brand-small {
    font-weight: 600;
    color: #a1a1aa;
}

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

.footer-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.footer-blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
    top: -150px;
    left: -100px;
}

.footer-blob-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #00ff88 0%, transparent 70%);
    bottom: -100px;
    right: -50px;
}

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

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

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

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

    .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    }

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

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

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

    .footer-copyright {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
    }
}

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

    .footer-top-grid {
    gap: 2rem;
    }

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

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

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

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

    .footer-divider {
    margin: 2rem 0 1.5rem;
    }
}
