@import url(//fonts.googleapis.com/css?family=Open+Sans:300,400,600);

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

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

a:visited {
    color: inherit;
}

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

header {
    background-color: #02bc774d;
}

#about {
    font-size: 1.2rem;
}

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

@media only screen and (max-width: 450px) {
    .features-img {
        width: 200px;
    }
}
@media screen and (max-width: 768px) {
[data-aos-delay] {
    transition-delay: 0 !important;
}
}
#hero img {
    max-width: 100% !important;
    max-height: 100% !important;
}
/* Header Asymmetric Diagonal Design - Complete Standalone Styles */

.header-asymmetric-diagonal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #0f172a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-asymmetric-diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: -1;
}

.header-asymmetric-diagonal.header-scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 85px;
}

/* Brand Section */
.brand-section {
    position: relative;
    z-index: 10;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 42px;
    height: 42px;
    color: #fbbf24;
    transition: all 0.3s ease;
}

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

.brand-name {
    font-size: 1.625rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #cbd5e1;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: #fbbf24;
}

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

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

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

.dropdown-trigger {
    position: relative;
}

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

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

.dropdown-menu-new {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #1e293b;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    padding: 0.75rem;
    list-style: none;
    margin: 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.dropdown-menu-new::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #1e293b;
    border-left: 1px solid rgba(251, 191, 36, 0.1);
    border-top: 1px solid rgba(251, 191, 36, 0.1);
}

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

.dropdown-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    transform: translateX(4px);
}

/* Search Form */
.header-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 200px;
    padding: 0.625rem 2.75rem 0.625rem 1.125rem;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    width: 280px;
    background: rgba(30, 41, 59, 1);
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

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

.search-button {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-button:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

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

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu-active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.mobile-close:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

.mobile-nav-menu {
    list-style: none;
    margin: 5rem 0 2.5rem 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.25rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.mobile-nav-link:hover {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    transform: translateX(6px);
}

.mobile-dropdown-arrow {
    transition: transform 0.3s ease;
    color: #64748b;
}

.mobile-dropdown-trigger.mobile-dropdown-open .mobile-dropdown-arrow {
    transform: rotate(180deg);
    color: #fbbf24;
}

.mobile-dropdown-menu-new {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.mobile-dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.mobile-dropdown-link:hover {
    background: rgba(251, 191, 36, 0.05);
    color: #fbbf24;
    border-left-color: #fbbf24;
    transform: translateX(4px);
}

/* Mobile Search */
.mobile-search-form {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(251, 191, 36, 0.1);
}

.mobile-search-input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 1.25rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-search-input:focus {
    outline: none;
    background: rgba(30, 41, 59, 1);
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

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

.mobile-search-button {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-search-button:hover {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .desktop-menu,
    .header-search-form {
    display: none;
    }
    
    .hamburger-menu {
    display: flex;
    }
    
    .main-navigation {
    gap: 0;
    }
}

@media (max-width: 768px) {
    .header-container {
    padding: 0 1.25rem;
    min-height: 75px;
    }
    
    .brand-name {
    font-size: 1.375rem;
    }
    
    .logo-icon {
    width: 36px;
    height: 36px;
    }
    
    .mobile-menu-content {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    }
    
    .mobile-nav-menu {
    margin-top: 4rem;
    }
}

@media (max-width: 576px) {
    .header-container {
    padding: 0 1rem;
    min-height: 70px;
    }
    
    .brand-name {
    font-size: 1.25rem;
    }
    
    .logo-icon {
    width: 32px;
    height: 32px;
    }
    
    .mobile-nav-link {
    font-size: 1.0625rem;
    padding: 0.875rem 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 Section: Asymmetric Chess Grid with Coral & Lime */
.features-chess-grid {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(165deg, #fff5f7 0%, #f0fdf4 50%, #fffbeb 100%);
    overflow: hidden;
}

.features-chess-grid .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Chess Grid Layout */
.features-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.feature-large {
    grid-row: 1 / 3;
    grid-column: 1;
}

.feature-medium:nth-of-type(2) {
    grid-row: 1;
    grid-column: 2;
}

.feature-medium:nth-of-type(3) {
    grid-row: 2;
    grid-column: 2;
}

/* Feature Cards */
.feature-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(251, 113, 133, 0.08);
    border: 2px solid transparent;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 113, 133, 0.03) 0%, rgba(132, 204, 22, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 32px;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(251, 113, 133, 0.16), 0 8px 16px rgba(132, 204, 22, 0.08);
    border-color: rgba(251, 113, 133, 0.2);
}

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

/* Image Containers */
.feature-image-container {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
}

.feature-large .feature-image-container {
    height: 280px;
}

/* Image Shapes */
.image-blob,
.image-hexagon,
.image-circle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-blob {
    width: 200px;
    height: 200px;
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    background: linear-gradient(135deg, #fb7185 0%, #fbbf24 100%);
    padding: 8px;
    animation: morphBlob 8s ease-in-out infinite;
}

.image-hexagon {
    width: 180px;
    height: 180px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, #84cc16 0%, #22d3ee 100%);
    padding: 6px;
}

.image-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f472b6 0%, #fb923c 100%);
    padding: 6px;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.image-hexagon .feature-img {
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.feature-card:hover .image-blob,
.feature-card:hover .image-hexagon,
.feature-card:hover .image-circle {
    transform: scale(1.08) rotate(3deg);
}

/* Floating Accents */
.floating-accent {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    animation: floatAccent 6s ease-in-out infinite;
}

.accent-1 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.2) 0%, transparent 70%);
    top: -20px;
    right: -20px;
}

.accent-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.25) 0%, transparent 70%);
    bottom: 10px;
    left: -10px;
    animation-delay: 1s;
}

.accent-3 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.2) 0%, transparent 70%);
    top: 10px;
    left: -15px;
    animation-delay: 2s;
}

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

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

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

.feature-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

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

/* Background Decorations */
.bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
}

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

.deco-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #84cc16 0%, transparent 70%);
    bottom: -80px;
    right: 10%;
}

.deco-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
    top: 40%;
    right: -80px;
}

/* Animations */
@keyframes morphBlob {
    0%, 100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    }
    25% {
    border-radius: 70% 30% 50% 50% / 30% 65% 35% 70%;
    }
    50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
    border-radius: 30% 70% 70% 30% / 65% 45% 55% 35%;
    }
}

@keyframes floatAccent {
    0%, 100% {
    transform: translate(0, 0);
    }
    25% {
    transform: translate(10px, -10px);
    }
    50% {
    transform: translate(-5px, -15px);
    }
    75% {
    transform: translate(15px, -5px);
    }
}

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

    .feature-large,
    .feature-medium:nth-of-type(2),
    .feature-medium:nth-of-type(3) {
    grid-row: auto;
    grid-column: 1;
    }

    .feature-large .feature-image-container {
    height: 220px;
    }

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

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

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

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

    .feature-image-container {
    height: 180px;
    margin-bottom: 1.5rem;
    }

    .image-blob {
    width: 160px;
    height: 160px;
    }

    .image-hexagon,
    .image-circle {
    width: 150px;
    height: 150px;
    }

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

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

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

    .bg-decoration {
    filter: blur(60px);
    }
}

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

    .features-wrapper {
    gap: 1.5rem;
    }

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

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

    .feature-image-container {
    height: 160px;
    margin-bottom: 1.25rem;
    }

    .image-blob {
    width: 140px;
    height: 140px;
    }

    .image-hexagon,
    .image-circle {
    width: 130px;
    height: 130px;
    }

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

    .feature-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    }
}
/* Testimonials Carousel Block - Distinctive Design */
.testimonials-carousel-block {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #fce7f3 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.testimonials-carousel-block .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: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.testimonials-accent-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #6366f1 0%, #ec4899 50%, #8b5cf6 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

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

.testimonials-carousel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 480px;
    perspective: 1200px;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    max-width: 650px;
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(100%) scale(0.85) rotateY(-15deg);
    pointer-events: none;
    z-index: 1;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
    pointer-events: auto;
    z-index: 3;
}

.testimonial-card.prev {
    opacity: 0.4;
    transform: translateX(-80%) scale(0.85) rotateY(15deg);
    pointer-events: none;
    z-index: 2;
}

.testimonial-card.next {
    opacity: 0.4;
    transform: translateX(80%) scale(0.85) rotateY(-15deg);
    pointer-events: none;
    z-index: 2;
}

.testimonial-card:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

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

.testimonial-content {
    margin-bottom: 2.5rem;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid #f1f5f9;
}

.author-avatar {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3.5rem;
}

.carousel-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.carousel-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    border-color: #6366f1;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.carousel-btn:active:not(:disabled) {
    transform: scale(1.05);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.carousel-pagination {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

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

.pagination-dot.active {
    width: 40px;
    border-radius: 10px;
    background: linear-gradient(90deg, #6366f1 0%, #ec4899 100%);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Fallback static layout (no JS) */
@supports not (display: flex) {
    .testimonial-card {
    position: static;
    opacity: 1;
    transform: none;
    margin-bottom: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-carousel-block {
    padding: 5rem 0;
    }

    .testimonials-carousel {
    min-height: 520px;
    }

    .testimonial-card {
    padding: 2.5rem 2rem;
    }

    .testimonial-card.prev,
    .testimonial-card.next {
    opacity: 0;
    transform: translateX(0) scale(0.9);
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-block {
    padding: 4rem 0;
    }

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

    .testimonials-title {
    font-size: 2.25rem;
    }

    .testimonials-carousel {
    min-height: 560px;
    }

    .testimonial-card {
    padding: 2rem 1.5rem;
    border-radius: 25px;
    max-width: 100%;
    }

    .testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    }

    .testimonial-author {
    gap: 1rem;
    }

    .author-avatar {
    width: 56px;
    height: 56px;
    }

    .author-name {
    font-size: 1.125rem;
    }

    .carousel-navigation {
    gap: 1.5rem;
    margin-top: 2.5rem;
    }

    .carousel-btn {
    width: 48px;
    height: 48px;
    }

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

@media (max-width: 576px) {
    .testimonials-carousel-block {
    padding: 3rem 0;
    }

    .testimonials-carousel-block .container {
    padding: 0 1rem;
    }

    .testimonials-title {
    font-size: 2rem;
    }

    .testimonials-accent-line {
    width: 80px;
    height: 4px;
    }

    .testimonials-carousel {
    min-height: 600px;
    }

    .testimonial-card {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
    }

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

    .testimonial-text {
    font-size: 1.0625rem;
    }

    .carousel-btn {
    width: 44px;
    height: 44px;
    }

    .pagination-dot {
    width: 10px;
    height: 10px;
    }

    .pagination-dot.active {
    width: 32px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .testimonial-card,
    .carousel-btn,
    .pagination-dot,
    .author-avatar {
    transition: none;
    }
}

.carousel-btn:focus-visible {
    outline: 3px solid #6366f1;
    outline-offset: 4px;
}

.pagination-dot:focus-visible {
    outline: 2px solid #6366f1;
    outline-offset: 3px;
}
/* Services Block: Diagonal Grid with Floating Cards Design */
.services-diagonal-grid {
    position: relative;
    padding: 7rem 0 8rem;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

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

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

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

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

.services-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 50%, #ff0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-accent-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #00ff88 0%, #00d4ff 50%, #ff0080 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.services-grid-diagonal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    perspective: 1000px;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 212, 255, 0.05) 50%, rgba(255, 0, 128, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2), 0 0 40px rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 255, 136, 0.3);
}

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

.service-card-1 {
    transform: rotate(-1deg);
}

.service-card-2 {
    transform: rotate(1deg);
}

.service-card-3 {
    transform: rotate(-0.5deg);
}

.service-card-4 {
    transform: rotate(0.8deg);
}

.service-card-5 {
    transform: rotate(-1.2deg);
}

.service-card-6 {
    transform: rotate(0.6deg);
}

.service-card:hover.service-card-1,
.service-card:hover.service-card-2,
.service-card:hover.service-card-3,
.service-card:hover.service-card-4,
.service-card:hover.service-card-5,
.service-card:hover.service-card-6 {
    transform: translateY(-12px) scale(1.02) rotate(0deg);
}

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

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    border-color: rgba(0, 255, 136, 0.5);
}

.service-svg-icon {
    width: 44px;
    height: 44px;
    color: #00ff88;
    transition: all 0.4s ease;
}

.service-card:hover .service-svg-icon {
    color: #00d4ff;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6));
}

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

.service-card:hover .service-title {
    color: #00ff88;
}

.service-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.75rem;
    min-height: 4.5rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    color: #0a0a0a;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.service-btn:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #ff0080 100%);
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.4);
}

.service-btn:focus {
    outline: 2px solid #00ff88;
    outline-offset: 3px;
}

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

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

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

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

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

    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5,
    .service-card-6 {
    transform: rotate(0deg);
    }
}

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

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

    .services-grid-diagonal {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }

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

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

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

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

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

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

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

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

@media (max-width: 480px) {
    .services-diagonal-grid {
    padding: 3rem 0 4rem;
    }

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

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

    .service-card {
    padding: 1.75rem 1.25rem 1.5rem;
    }

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

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

    .service-title {
    font-size: 1.25rem;
    }

    .service-description {
    font-size: 0.9375rem;
    }
}
/* FAQ Section: Glassmorphic Design with Pure CSS Accordion */
.faq-section-glassy {
    padding: 7rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.faq-section-glassy::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    animation: faq-pattern-drift 60s linear infinite;
}

@keyframes faq-pattern-drift {
    0% {
    transform: translate(0, 0);
    }
    100% {
    transform: translate(40px, 40px);
    }
}

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

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

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

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

.faq-item-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.faq-item-glass:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.25);
    background: rgba(255, 255, 255, 0.2);
}

.faq-checkbox-hidden {
    display: none;
}

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

.faq-question-label:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question-label:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: -3px;
}

.faq-question-text {
    font-size: 1.375rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    flex: 1;
    padding-right: 2rem;
}

.faq-icon-indicator {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item-glass:hover .faq-icon-indicator {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
}

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

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

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

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

.faq-checkbox-hidden:checked ~ .faq-question-label .faq-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), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-checkbox-hidden:checked ~ .faq-answer-wrapper {
    max-height: 1000px;
    padding: 0 2.5rem 2rem 2.5rem;
}

.faq-answer-content {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-answer-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section-glassy {
    padding: 4rem 0;
    }

    .faq-header-wrapper {
    margin-bottom: 2.5rem;
    }

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

    .faq-accordion-container {
    gap: 1rem;
    }

    .faq-question-label {
    padding: 1.5rem 1.5rem;
    }

    .faq-question-text {
    font-size: 1.125rem;
    padding-right: 1rem;
    }

    .faq-icon-indicator {
    width: 40px;
    height: 40px;
    }

    .faq-icon-plus svg,
    .faq-icon-minus svg {
    width: 20px;
    height: 20px;
    }

    .faq-checkbox-hidden:checked ~ .faq-answer-wrapper {
    padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .faq-answer-content p {
    font-size: 1rem;
    line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .faq-section-glassy {
    padding: 3rem 0;
    }

    .faq-question-label {
    padding: 1.25rem 1.25rem;
    }

    .faq-question-text {
    font-size: 1rem;
    }

    .faq-item-glass {
    border-radius: 16px;
    }
}
/* Contact Form Block - Modern Floating Design */
.contact-form-block-kx9 {
    padding: 8rem 0;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.contact-form-block-kx9::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-form-block-kx9 .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.form-wrapper-inner {
    background: #ffffff;
    border-radius: 32px;
    padding: 4rem 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    position: relative;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-wrapper-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 32px 32px 0 0;
}

.form-header-area {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-contact {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

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

.form-label-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.01em;
    padding-left: 0.25rem;
}

.form-input-control,
.form-textarea-control {
    width: 100%;
    padding: 1.125rem 0rem;
    font-size: 1rem;
    font-family: inherit;
    color: #1e293b;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-input-control::placeholder,
.form-textarea-control::placeholder {
    color: #94a3b8;
}

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

.form-input-control:focus,
.form-textarea-control:focus {
    border-color: #6366f1;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1), 0 4px 12px rgba(99, 102, 241, 0.08);
    transform: translateY(-1px);
}

.form-input-control:active,
.form-textarea-control:active {
    transform: translateY(0);
}

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

.form-submit-wrapper {
    margin-top: 1rem;
}

.form-submit-btn {
    width: 100%;
    padding: 1.375rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25), 0 4px 8px rgba(99, 102, 241, 0.15);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

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

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

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.35), 0 6px 12px rgba(99, 102, 241, 0.2);
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.form-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.25), 0 2px 6px rgba(99, 102, 241, 0.15);
}

.form-submit-btn:focus {
    outline: none;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25), 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.btn-arrow-icon {
    display: inline-block;
    font-size: 1.375rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-block-kx9 {
    padding: 5rem 0;
    }
    
    .form-wrapper-inner {
    padding: 3rem 2rem;
    border-radius: 24px;
    }
    
    .form-header-area {
    margin-bottom: 2.5rem;
    }
    
    .section-title-contact {
    font-size: 2rem;
    }
    
    .contact-form-main {
    gap: 1.5rem;
    }
    
    .form-input-control,
    .form-textarea-control {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    border-radius: 12px;
    }
    
    .form-submit-btn {
    padding: 1.25rem 1.75rem;
    font-size: 1.0625rem;
    border-radius: 12px;
    }
}

@media (max-width: 576px) {
    .contact-form-block-kx9 {
    padding: 4rem 0;
    }
    
    .form-wrapper-inner {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    }
    
    .form-header-area {
    margin-bottom: 2rem;
    }
    
    .contact-form-main {
    gap: 1.25rem;
    }
    
    .form-label-text {
    font-size: 0.875rem;
    }
    
    .form-input-control,
    .form-textarea-control {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    }
    
    .form-submit-btn {
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
    gap: 0.625rem;
    }
    
    .btn-arrow-icon {
    font-size: 1.25rem;
    }
}
/* Contact Information Block - Organic Shapes with Terracotta & Sage Palette */

.contact-info-block-zx9 {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(165deg, #f7f4f1 0%, #faf8f6 50%, #f2ede8 100%);
    overflow: hidden;
}

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

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Details Panel */
.contact-details-panel {
    position: relative;
}

.contact-header-zone {
    margin-bottom: 3.5rem;
}

.contact-main-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: #2d3436;
    line-height: 1.15;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.title-accent-line {
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, #e07a5f 0%, #f4a261 100%);
    border-radius: 3px;
}

.contact-items-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Contact Item Cards */
.contact-item-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(45, 52, 54, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(224, 122, 95, 0.03) 0%, rgba(129, 178, 154, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(224, 122, 95, 0.15);
}

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

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

.address-bubble {
    background: linear-gradient(135deg, #e07a5f 0%, #f4a261 100%);
    color: #ffffff;
}

.phone-bubble {
    background: linear-gradient(135deg, #81b29a 0%, #95d5b2 100%);
    color: #ffffff;
}

.email-bubble {
    background: linear-gradient(135deg, #f4a261 0%, #e9c46a 100%);
    color: #ffffff;
}

.contact-item-card:hover .contact-icon-bubble {
    border-radius: 40% 50% 40% 50%;
    transform: rotate(10deg) scale(1.05);
}

.contact-svg-icon {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
}

/* Text Zone */
.contact-text-zone {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #636e72;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.5rem 0;
}

.contact-value {
    font-size: 1.25rem;
    font-weight: 500;
    color: #2d3436;
    line-height: 1.6;
    margin: 0;
    word-break: break-word;
}

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

.contact-link:hover {
    color: #e07a5f;
}

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

/* Map Panel */
.contact-map-panel {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.map-container-frame {
    position: sticky;
    top: 2rem;
    height: 600px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(45, 52, 54, 0.12);
    background: #e0e0e0;
}

.map-inner-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

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

.map-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(224, 122, 95, 0.05) 0%, transparent 30%, transparent 70%, rgba(129, 178, 154, 0.05) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Decorative Background Blobs */
.contact-bg-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
    opacity: 0.4;
    z-index: 1;
    animation: blob-float 20s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #e07a5f 0%, #f4a261 100%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #81b29a 0%, #95d5b2 100%);
    bottom: -120px;
    left: -80px;
    animation-delay: 7s;
}

.blob-3 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #f4a261 0%, #e9c46a 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes blob-float {
    0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
    }
    25% {
    transform: translate(20px, -30px) rotate(5deg);
    border-radius: 60% 40% 30% 70% / 60% 50% 60% 40%;
    }
    50% {
    transform: translate(-20px, 20px) rotate(-5deg);
    border-radius: 30% 70% 60% 40% / 40% 60% 50% 60%;
    }
    75% {
    transform: translate(30px, 10px) rotate(3deg);
    border-radius: 70% 30% 40% 60% / 50% 40% 60% 50%;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-info-block-zx9 {
    padding: 5rem 0;
    }
    
    .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    }
    
    .contact-main-title {
    font-size: 2.5rem;
    }
    
    .contact-map-panel {
    min-height: 450px;
    }
    
    .map-container-frame {
    position: relative;
    top: 0;
    height: 450px;
    }
}

@media (max-width: 768px) {
    .contact-info-block-zx9 {
    padding: 4rem 0;
    }
    
    .contact-container-wrap {
    padding: 0 1.5rem;
    }
    
    .contact-content-grid {
    gap: 2.5rem;
    }
    
    .contact-main-title {
    font-size: 2rem;
    }
    
    .contact-header-zone {
    margin-bottom: 2.5rem;
    }
    
    .contact-items-stack {
    gap: 1.5rem;
    }
    
    .contact-item-card {
    padding: 1.5rem;
    gap: 1.25rem;
    flex-direction: row;
    }
    
    .contact-icon-bubble {
    width: 56px;
    height: 56px;
    }
    
    .contact-svg-icon {
    width: 28px;
    height: 28px;
    }
    
    .contact-value {
    font-size: 1.125rem;
    }
    
    .contact-map-panel {
    min-height: 380px;
    }
    
    .map-container-frame {
    height: 380px;
    border-radius: 24px;
    }
    
    .contact-bg-blob {
    opacity: 0.25;
    }
    
    .blob-1 {
    width: 280px;
    height: 280px;
    top: -100px;
    right: -80px;
    }
    
    .blob-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -60px;
    }
    
    .blob-3 {
    width: 200px;
    height: 200px;
    }
}

@media (max-width: 576px) {
    .contact-main-title {
    font-size: 1.75rem;
    }
    
    .contact-item-card {
    padding: 1.25rem;
    gap: 1rem;
    }
    
    .contact-icon-bubble {
    width: 48px;
    height: 48px;
    }
    
    .contact-svg-icon {
    width: 24px;
    height: 24px;
    }
    
    .contact-label {
    font-size: 0.8rem;
    }
    
    .contact-value {
    font-size: 1rem;
    }
    
    .map-container-frame {
    height: 320px;
    border-radius: 20px;
    }
}
/* Footer: Modern Split Layout with Gradient Accent */
.footer-modern-split {
    position: relative;
    padding: 5rem 0 2rem;
    background: linear-gradient(165deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e8e8f0;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(232, 232, 240, 0.1);
}

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

.footer-brand-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #e94560 0%, #f39c12 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.footer-brand-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e94560 0%, #f39c12 100%);
    border-radius: 2px;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

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

.footer-address {
    color: #b8b8d0;
}

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

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

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

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

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

/* Navigation Column */
.footer-nav-column {
    display: flex;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.footer-navigation {
    width: 100%;
}

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

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

.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(232, 232, 240, 0.03);
    border-radius: 12px;
    color: #e8e8f0;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.footer-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(233, 69, 96, 0.1) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.footer-nav-link:hover::before {
    left: 100%;
}

.footer-nav-link:hover {
    background: rgba(233, 69, 96, 0.08);
    border-color: rgba(233, 69, 96, 0.3);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.2);
}

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

.footer-link-text {
    flex: 1;
}

.footer-link-arrow {
    width: 20px;
    height: 20px;
    color: #e94560;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

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

/* Legal Column */
.footer-legal-column {
    display: flex;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.footer-legal-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.footer-legal-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: rgba(243, 156, 18, 0.05);
    border-radius: 12px;
    color: #e8e8f0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 156, 18, 0.15);
    position: relative;
}

.footer-legal-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #f39c12 0%, #e94560 100%);
    border-radius: 12px 12px 0 0;
    transition: width 0.4s ease;
}

.footer-legal-link:hover {
    background: rgba(243, 156, 18, 0.12);
    border-color: rgba(243, 156, 18, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(243, 156, 18, 0.2);
}

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

.footer-legal-link:focus {
    outline: 2px solid #f39c12;
    outline-offset: 4px;
}

.footer-legal-icon {
    width: 22px;
    height: 22px;
    color: #f39c12;
    flex-shrink: 0;
}

/* Wave Divider */
.footer-wave-divider {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    height: 60px;
    color: #e94560;
    opacity: 0.3;
    pointer-events: none;
}

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

/* Bottom Bar */
.footer-bottom-bar {
    padding-top: 2rem;
}

.footer-copyright-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.footer-copyright-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(232, 232, 240, 0.2) 50%, transparent 100%);
    max-width: 200px;
}

.footer-copyright-text {
    margin: 0;
    font-size: 1rem;
    color: #b8b8d0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.footer-year {
    font-weight: 600;
    color: #e94560;
}

.footer-separator {
    color: rgba(232, 232, 240, 0.3);
    font-weight: 300;
}

.footer-brand-small {
    font-weight: 500;
}

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

.footer-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

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

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

.footer-bg-circle-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #e94560 0%, transparent 70%);
    top: 40%;
    left: -80px;
    animation: float-circle-3 22s ease-in-out infinite;
}

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

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

@keyframes float-circle-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, 35px) scale(1.08); }
}

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

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

    .footer-legal-wrapper {
    flex-direction: row;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    }
}

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

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

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

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

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

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

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

    .footer-legal-wrapper {
    flex-direction: column;
    gap: 1rem;
    }

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

    .footer-copyright-wrapper {
    flex-direction: column;
    gap: 1rem;
    }

    .footer-copyright-line {
    display: none;
    }

    .footer-copyright-text {
    font-size: 0.9375rem;
    flex-wrap: wrap;
    justify-content: center;
    }

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

    .footer-bg-circle-1 {
    width: 250px;
    height: 250px;
    }

    .footer-bg-circle-2 {
    width: 200px;
    height: 200px;
    }

    .footer-bg-circle-3 {
    width: 180px;
    height: 180px;
    }
}

@media (max-width: 480px) {
    .footer-modern-split {
    padding: 3rem 0 1rem;
    }

    .footer-content-grid {
    gap: 2.5rem;
    }

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

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

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

    .footer-legal-link:hover {
    transform: translateY(-2px);
    }
}
