:root {
    --primary: #1a365d;
    --primary-dark: #0a1628;
    --primary-light: #2c5282;
    --secondary: #4299e1;
    --secondary-light: #63b3ed;
    --accent: #48bb78;
    --accent-dark: #38a169;
    --accent-cyan: #22d3ee;
    --background: linear-gradient(135deg, #070d1a 0%, #0f1d32 50%, #070d1a 100%);
    --background-section: linear-gradient(180deg, #0f1d32 0%, #070d1a 100%);
    --background-alt: linear-gradient(180deg, #070d1a 0%, #1a365d 50%, #070d1a 100%);
    --surface: rgba(15, 25, 45, 0.85);
    --surface-light: rgba(30, 50, 80, 0.6);
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dark: #1e293b;
    --border: rgba(66, 153, 225, 0.15);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.4), 0 2px 4px -1px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.5), 0 4px 6px -2px rgba(0,0,0,0.4);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.6), 0 12px 20px -8px rgba(0,0,0,0.4);
    --glow-blue: 0 0 40px rgba(66, 153, 225, 0.25);
    --glow-green: 0 0 40px rgba(72, 187, 120, 0.25);
    --glow-cyan: 0 0 40px rgba(34, 211, 238, 0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: #060c18;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 8, 18, 0.85);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 180, 255, 0.15);
    box-shadow: 0 0 25px rgba(0, 120, 255, 0.08), 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 5%,
        rgba(0, 180, 255, 0.6) 25%,
        rgba(0, 255, 200, 0.8) 50%,
        rgba(0, 180, 255, 0.6) 75%,
        transparent 95%
    );
    box-shadow: 0 0 15px rgba(0, 200, 255, 0.5), 0 0 30px rgba(0, 200, 255, 0.2);
    animation: neonPulse 3s ease-in-out infinite;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: none;
}

.header.scrolled {
    background: rgba(5, 8, 18, 0.95);
    border-bottom-color: rgba(0, 180, 255, 0.25);
    box-shadow: 0 0 35px rgba(0, 120, 255, 0.12), 0 8px 40px rgba(0, 0, 0, 0.5);
}

.header.scrolled::before {
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.7), 0 0 40px rgba(0, 200, 255, 0.3);
}

@keyframes neonPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 20px;
    min-height: 64px;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    flex-shrink: 0;
}

.logo-text {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1;
    display: inline-flex;
    transition: filter 0.3s ease;
}

.logo-gobo {
    color: #3366ff;
    text-shadow: 0 0 12px rgba(51, 102, 255, 0.4);
}

.logo-tix {
    color: #e62020;
    text-shadow: 0 0 12px rgba(230, 32, 32, 0.4);
}

.logo:hover .logo-text {
    filter: brightness(1.2);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    flex: 1;
    min-width: 0;
}

.nav-link {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 8px;
    font-weight: 500;
    transition: color 0.2s ease, background 0.2s ease;
    font-size: 12.5px;
    position: relative;
    white-space: nowrap;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: white;
    background: rgba(66,153,225,0.12);
    border-color: rgba(66,153,225,0.15);
}

.nav-link.active {
    color: white;
    background: rgba(66, 153, 225, 0.16);
    border-color: rgba(66, 153, 225, 0.25);
}

.nav-link::before {
    display: none;
}

/* ===== Dropdown Nav ===== */
.nav-dropdown {
    position: relative;
}

.nav-link--dropdown {
    background: none;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-family: inherit;
}

.nav-caret {
    font-size: 10px;
    opacity: 0.6;
    transition: transform 0.2s ease;
    line-height: 1;
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 170px;
    background: #1a2540;
    border: 1px solid rgba(66, 153, 225, 0.2);
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    transform: translateX(-50%) translateY(6px);
    z-index: 100;
}

.nav-dropdown.is-open > .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown.is-open > .nav-link--dropdown .nav-caret {
    transform: rotate(180deg);
}

.nav-dropdown.active > .nav-link--dropdown {
    color: white;
    background: rgba(66, 153, 225, 0.16);
    border-color: rgba(66, 153, 225, 0.25);
}

.nav-dropdown__item {
    display: block;
    padding: 9px 14px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 7px;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.nav-dropdown__item:hover {
    background: rgba(66, 153, 225, 0.15);
    color: white;
}

.nav-dropdown__item.active {
    background: rgba(66, 153, 225, 0.2);
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-mobile-actions {
    display: none;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    border: 1px solid transparent;
}

.btn-header--login {
    background: rgba(72, 187, 120, 0.12);
    border-color: rgba(72, 187, 120, 0.35);
    color: #9ae6b4;
}

.btn-header--login:hover {
    background: rgba(72, 187, 120, 0.22);
    border-color: rgba(72, 187, 120, 0.55);
    color: #fff;
    transform: translateY(-1px);
}

.btn-header--download {
    background: rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.35);
    color: #c3dafe;
}

.btn-header--download:hover {
    background: rgba(102, 126, 234, 0.22);
    border-color: rgba(102, 126, 234, 0.55);
    color: #fff;
    transform: translateY(-1px);
}

.btn-header--shop {
    background: rgba(108, 60, 224, 0.12);
    border-color: rgba(108, 60, 224, 0.35);
    color: #ddd6fe;
}

.btn-header--shop:hover {
    background: rgba(108, 60, 224, 0.22);
    border-color: rgba(108, 60, 224, 0.55);
    color: #fff;
    transform: translateY(-1px);
}

.btn-header--shop.is-active {
    background: rgba(108, 60, 224, 0.28);
    border-color: rgba(108, 60, 224, 0.6);
    color: #f3e8ff;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--text-muted);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn:hover {
    color: white;
}

.lang-btn.is-active {
    background: rgba(66, 153, 225, 0.28);
    color: white;
}

.lang-switch--mobile {
    align-self: flex-start;
    margin-bottom: 4px;
}

/* Legacy — keep for any old markup references */
.btn-login { display: none; }
.header-left { display: contents; }

.nav-link--download { display: none !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1280px) {
    .nav-link {
        padding: 7px 8px;
        font-size: 12px;
    }
    .btn-header {
        padding: 7px 10px;
        font-size: 11.5px;
    }
    .lang-btn {
        padding: 4px 8px;
        font-size: 10.5px;
    }
    .logo-text {
        font-size: 22px;
    }
}

@media (max-width: 1100px) {
    .nav-link {
        padding: 7px 6px;
        font-size: 11.5px;
    }
    .btn-header {
        padding: 6px 9px;
        font-size: 11px;
    }
    .header-inner {
        gap: 10px;
        padding: 8px 16px;
    }
    .header-actions .btn-header--download {
        display: none;
    }
}

@media (max-width: 960px) {
    .nav-toggle {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .nav-mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 8px;
        padding-top: 16px;
        border-top: 1px solid rgba(66, 153, 225, 0.15);
    }

    .nav-mobile-actions .btn-header {
        width: 100%;
        padding: 12px 16px;
    }

    .nav-mobile-actions .lang-switch {
        width: 100%;
        justify-content: center;
    }

    .nav-mobile-actions .lang-btn {
        flex: 1;
        padding: 8px 10px;
    }
    
    .nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 16px 20px 24px;
        gap: 4px;
        transform: translateY(-150%);
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid rgba(66, 153, 225, 0.2);
        flex: none;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }
    
    .nav.open {
        transform: translateY(0);
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
        padding: 12px 14px;
        color: var(--text);
        border-radius: 8px;
    }
    
    .nav-link.active {
        background: rgba(66, 153, 225, 0.2);
    }
    
    .nav-link:hover {
        background: rgba(66, 153, 225, 0.15);
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-link--dropdown {
        width: 100%;
        text-align: left;
        justify-content: space-between;
    }

    .nav-dropdown__menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        min-width: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0 0 0 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease, padding 0.25s ease;
    }

    .nav-dropdown.is-open > .nav-dropdown__menu {
        max-height: 200px;
        padding: 4px 0 4px 16px;
        transform: none;
    }

    .nav-dropdown__item {
        font-size: 14px;
        padding: 10px 14px;
        border-left: 2px solid rgba(66, 153, 225, 0.2);
    }

    .nav-dropdown__item.active {
        border-left-color: var(--secondary-light);
    }
}

.login-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.login-modal.open {
    opacity: 1;
    visibility: visible;
}

.login-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.login-modal-content {
    position: relative;
    background: linear-gradient(180deg, rgba(15, 25, 50, 0.95) 0%, rgba(8, 16, 35, 0.98) 100%);
    border-radius: var(--radius);
    width: 90%;
    max-width: 420px;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 25px 60px -12px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(66, 153, 225, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(66, 153, 225, 0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.login-modal.open .login-modal-content {
    transform: scale(1) translateY(0);
}

.login-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    opacity: 0.8;
    transition: var(--transition);
    z-index: 10;
}

.login-modal-close:hover {
    opacity: 1;
}

.login-modal-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.login-modal-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.login-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.login-modal-header p {
    opacity: 0.9;
    font-size: 14px;
}

.login-modal-body {
    padding: 30px;
    background: rgba(15, 23, 42, 0.5);
}

.login-section {
    margin-bottom: 20px;
}

.login-section:last-child {
    margin-bottom: 0;
}

.login-section-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.login-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(15, 25, 50, 0.5);
    border: 1px solid rgba(66, 153, 225, 0.15);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.login-card:hover {
    border-color: rgba(66, 153, 225, 0.4);
    background: rgba(66, 153, 225, 0.1);
    transform: translateX(4px);
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.4), 0 0 30px rgba(66, 153, 225, 0.1);
}

.login-card-icon {
    font-size: 32px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.15), rgba(34, 211, 238, 0.1));
    border: 1px solid rgba(66, 153, 225, 0.2);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.login-card-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-light);
}

.login-card-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.login-card-arrow {
    margin-left: auto;
    font-size: 24px;
    color: var(--secondary);
    transition: var(--transition);
}

.login-card + .login-card {
    margin-top: 10px;
}

.login-card:hover .login-card-arrow {
    transform: translateX(5px);
}

.main-content {
    padding-top: 64px;
    position: relative;
    z-index: 1;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: transparent;
    overflow: hidden;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(6, 12, 24, 0.9), transparent);
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero::before,
.hero::after {
    display: none;
}

@keyframes floatBubble {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    25% { transform: translateY(-40px) translateX(20px) scale(1.05); }
    50% { transform: translateY(-20px) translateX(-10px) scale(0.98); }
    75% { transform: translateY(-60px) translateX(30px) scale(1.02); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(66, 153, 225, 0.1);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(66, 153, 225, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    letter-spacing: 0.3px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: badgeDotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--accent);
}

@keyframes badgeDotPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(38px, 5.5vw, 62px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-title-highlight {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--accent-cyan) 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradientShift 6s ease-in-out infinite;
}

@keyframes textGradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--secondary-light);
}

.hero-desc {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 550px;
    color: var(--text-muted);
    line-height: 1.7;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-actions,
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(66, 153, 225, 0.15);
}

.hero-stat {
    text-align: center;
    padding: 14px 22px;
    background: rgba(66, 153, 225, 0.06);
    border: 1px solid rgba(66, 153, 225, 0.12);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-stat:hover {
    background: rgba(66, 153, 225, 0.12);
    border-color: rgba(66, 153, 225, 0.3);
    transform: translateY(-2px);
}

.hero-stat-num {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    border: none;
    cursor: pointer;
    position: relative;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #2f855a 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(72, 187, 120, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(72, 187, 120, 0.4), 0 0 20px rgba(72, 187, 120, 0.2);
}

.btn-secondary {
    background: rgba(66, 153, 225, 0.1);
    color: var(--secondary-light);
    border: 1px solid rgba(66, 153, 225, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(66, 153, 225, 0.2);
    border-color: rgba(66, 153, 225, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.2);
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.hero-trust {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.trust-text {
    font-size: 13px;
    opacity: 0.9;
}

.trust-text strong {
    display: block;
    font-size: 14px;
}

.section {
    padding: 90px 0;
    position: relative;
    z-index: 1;
}

.btn-card {
    margin-top: 16px;
    display: inline-block;
}

.system-coming-soon {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(148, 163, 184, 0.06);
    border: 1px dashed rgba(148, 163, 184, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section:nth-child(even) {
    background: transparent;
}

.section:nth-child(odd) {
    background: rgba(10, 20, 40, 0.3);
}

.section-alt {
    background: rgba(15, 30, 60, 0.25) !important;
    border-top: 1px solid rgba(66, 153, 225, 0.08);
    border-bottom: 1px solid rgba(66, 153, 225, 0.08);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(66, 153, 225, 0.3), rgba(34, 211, 238, 0.2), rgba(66, 153, 225, 0.3), transparent);
}

.section-alt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(66, 153, 225, 0.3), rgba(34, 211, 238, 0.2), rgba(66, 153, 225, 0.3), transparent);
}

.section-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-99%);
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.section-divider .shape-fill {
    fill: rgba(15, 23, 42, 0.8);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(66, 153, 225, 0.1);
    color: var(--secondary-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    border: 1px solid rgba(66, 153, 225, 0.2);
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.section-title {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 40%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: linear-gradient(180deg, rgba(15, 25, 50, 0.5) 0%, rgba(8, 16, 35, 0.6) 100%);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid rgba(66, 153, 225, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(66, 153, 225, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(180deg, rgba(20, 35, 65, 0.7) 0%, rgba(10, 20, 45, 0.8) 100%);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(66, 153, 225, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    border-color: rgba(66, 153, 225, 0.3);
}

@keyframes blurTransition {
    0% { filter: blur(0px); }
    30% { filter: blur(4px); }
    100% { filter: blur(0px); }
}

@keyframes blurTransitionSmall {
    0% { filter: blur(0px); }
    30% { filter: blur(2px); }
    100% { filter: blur(0px); }
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.15), rgba(34, 211, 238, 0.1));
    border: 1px solid rgba(66, 153, 225, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.25), rgba(34, 211, 238, 0.15));
    border-color: rgba(66, 153, 225, 0.4);
    box-shadow: 0 0 30px rgba(66, 153, 225, 0.15);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-light);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.service-list {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
    padding: 5px 0;
}

.service-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
}

/* Reusable centered icon+text card — replaces one-off inline styles */
.showcase-card {
    padding: 48px 32px;
    text-align: center;
}

.showcase-card--fill {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-card__icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.showcase-card__icon--lg {
    font-size: 80px;
}

.showcase-card__title {
    color: var(--secondary-light);
    font-size: 24px;
}

.showcase-card__subtitle {
    color: var(--text-muted);
    font-size: 16px;
    margin-top: 8px;
}

.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, rgba(15, 30, 60, 0.9) 0%, rgba(66, 153, 225, 0.3) 100%);
    padding: 20px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg), var(--glow-blue);
    text-align: center;
    border: 1px solid rgba(66, 153, 225, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.about-badge-float strong {
    display: block;
    font-size: 32px;
    color: white;
}

.about-badge-float span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.about-content h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(15, 25, 50, 0.4);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(66, 153, 225, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-feature:hover {
    background: rgba(20, 35, 65, 0.5);
    border-color: rgba(66, 153, 225, 0.3);
    transform: translateX(5px);
}

.about-feature span:first-child {
    font-size: 20px;
}

.about-feature span:last-child {
    font-size: 14px;
    font-weight: 500;
}

.cta-section {
    background: linear-gradient(135deg, rgba(15, 30, 60, 0.6) 0%, rgba(10, 20, 45, 0.7) 100%);
    padding: 80px 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    border: 1px solid rgba(66, 153, 225, 0.12);
    border-radius: var(--radius);
    z-index: 1;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(66, 153, 225, 0.4), rgba(34, 211, 238, 0.3), rgba(66, 153, 225, 0.4), transparent);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(66, 153, 225, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    opacity: 0.85;
    margin-bottom: 32px;
    font-size: 18px;
    color: var(--text-muted);
}

.cta-buttons,
.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: white;
    font-weight: 500;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    background: linear-gradient(180deg, rgba(15, 25, 50, 0.5) 0%, rgba(8, 16, 35, 0.6) 100%);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid rgba(66, 153, 225, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info:hover {
    background: linear-gradient(180deg, rgba(20, 35, 65, 0.6) 0%, rgba(10, 20, 45, 0.7) 100%);
    border-color: rgba(66, 153, 225, 0.25);
    box-shadow: 0 0 40px rgba(66, 153, 225, 0.08);
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-light);
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-list .icon {
    width: 45px;
    height: 45px;
    background: rgba(66, 153, 225, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border: 1px solid rgba(66, 153, 225, 0.3);
}

.contact-list .info strong {
    display: block;
    color: var(--text);
    margin-bottom: 5px;
}

.contact-list .info span {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.contact-form {
    background: linear-gradient(180deg, rgba(15, 25, 50, 0.5) 0%, rgba(8, 16, 35, 0.6) 100%);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid rgba(66, 153, 225, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form:hover {
    background: linear-gradient(180deg, rgba(20, 35, 65, 0.6) 0%, rgba(10, 20, 45, 0.7) 100%);
    border-color: rgba(66, 153, 225, 0.25);
    box-shadow: 0 0 40px rgba(66, 153, 225, 0.08);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-light);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(66, 153, 225, 0.15);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
    font-family: inherit;
    background: rgba(8, 16, 35, 0.6);
    color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(66, 153, 225, 0.5);
    background: rgba(15, 25, 50, 0.8);
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1), 0 0 20px rgba(66, 153, 225, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(66, 153, 225, 0.3);
    letter-spacing: 0.3px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(66, 153, 225, 0.4);
}

.footer {
    background: linear-gradient(180deg, rgba(8, 16, 32, 0.8) 0%, rgba(5, 10, 22, 0.95) 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
    margin-top: 40px;
    border-top: 1px solid rgba(66, 153, 225, 0.1);
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(66, 153, 225, 0.3), rgba(34, 211, 238, 0.2), rgba(66, 153, 225, 0.3), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 200px;
    background: radial-gradient(ellipse at center top, rgba(66, 153, 225, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo .logo-text {
    font-size: 22px;
}

.footer-desc {
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 1px solid transparent;
}

.badge-mof {
    background: rgba(72, 187, 120, 0.1);
    color: #9ae6b4;
    border-color: rgba(72, 187, 120, 0.2);
}

.badge-stb {
    background: rgba(66, 153, 225, 0.1);
    color: #90cdf4;
    border-color: rgba(66, 153, 225, 0.2);
}

.badge-einvoice {
    background: rgba(237, 137, 54, 0.1);
    color: #fbd38d;
    border-color: rgba(237, 137, 54, 0.2);
}

.badge-cidb {
    background: rgba(159, 122, 234, 0.1);
    color: #d6bcfa;
    border-color: rgba(159, 122, 234, 0.2);
}

.badge-tcc {
    background: rgba(236, 72, 153, 0.1);
    color: #f9a8d4;
    border-color: rgba(236, 72, 153, 0.2);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact .contact-icon {
    font-size: 16px;
}

.footer-contact span {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hours-row {
    display: block;
}

.hours-row strong {
    opacity: 0.95;
    font-weight: 600;
    margin-right: 2px;
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-credit {
    margin-top: 5px;
    font-size: 12px !important;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 900;
    animation: whatsappPulse 3s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 8px rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    animation: none;
}

.whatsapp-icon {
    font-size: 24px;
}

@media (max-width: 480px) {
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
    }
}

.page-header {
    background: linear-gradient(180deg, rgba(10, 20, 45, 0.4) 0%, transparent 100%);
    padding: 130px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(66, 153, 225, 0.2), transparent);
}

@keyframes bgScroll {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.page-header p {
    opacity: 0.9;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    opacity: 0.5;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.link-accent { color: var(--secondary-light); }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

.map-container {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(66, 153, 225, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.alert {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.alert-success {
    background: rgba(72,187,120,0.1);
    color: var(--accent-dark);
    border: 1px solid rgba(72,187,120,0.3);
}

.alert-error {
    background: rgba(245,101,101,0.1);
    color: #fc8181;
    border: 1px solid rgba(245,101,101,0.3);
}

/* Global Background Animation - Fixed across entire page */
/* ========== METEOR SHOWER BACKGROUND ========== */
.global-bg-animation {
    --bg-offset: 0s;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: linear-gradient(180deg, #050a16 0%, #081124 35%, #0b1830 65%, #050a16 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.global-bg-animation.synced {
    opacity: 1;
}

.no-js .global-bg-animation {
    opacity: 1;
}

.bg-stars-static {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 8% 12%, rgba(220,235,255,0.7) 50%, transparent 50%),
        radial-gradient(1px 1px at 22% 38%, rgba(200,220,255,0.5) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 38% 6%, rgba(220,235,255,0.6) 50%, transparent 50%),
        radial-gradient(1px 1px at 55% 28%, rgba(200,220,255,0.45) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 70% 15%, rgba(220,235,255,0.6) 50%, transparent 50%),
        radial-gradient(1px 1px at 85% 42%, rgba(200,220,255,0.5) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 12% 62%, rgba(220,235,255,0.55) 50%, transparent 50%),
        radial-gradient(1px 1px at 45% 72%, rgba(200,220,255,0.4) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 65% 85%, rgba(220,235,255,0.6) 50%, transparent 50%),
        radial-gradient(1px 1px at 92% 68%, rgba(200,220,255,0.45) 50%, transparent 50%),
        radial-gradient(1px 1px at 30% 92%, rgba(200,220,255,0.4) 50%, transparent 50%),
        radial-gradient(1.5px 1.5px at 78% 58%, rgba(220,235,255,0.5) 50%, transparent 50%);
}

.meteor {
    position: absolute;
    top: -5%;
    left: 0;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 6px 1px rgba(200, 225, 255, 0.9), 0 0 14px 3px rgba(140, 190, 255, 0.4);
    opacity: 0;
    animation: meteorFall linear infinite;
    animation-delay: var(--bg-offset);
}

.meteor::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    width: 90px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(210, 230, 255, 0.75));
    transform: translateY(-50%);
}

.meteor--1 { left: 8%;  top: -8%;  animation-duration: 5s;  animation-delay: calc(var(--bg-offset) - 0.5s); }
.meteor--2 { left: 28%; top: -12%; animation-duration: 7s;  animation-delay: calc(var(--bg-offset) - 3s); }
.meteor--3 { left: 48%; top: -6%;  animation-duration: 6s;  animation-delay: calc(var(--bg-offset) - 1.8s); }
.meteor--4 { left: 65%; top: -14%; animation-duration: 8.5s; animation-delay: calc(var(--bg-offset) - 5s); }
.meteor--5 { left: 18%; top: -10%; animation-duration: 9s;  animation-delay: calc(var(--bg-offset) - 6.5s); }
.meteor--6 { left: 82%; top: -8%;  animation-duration: 6.5s; animation-delay: calc(var(--bg-offset) - 2.5s); }
.meteor--7 { left: 55%; top: -16%; animation-duration: 7.5s; animation-delay: calc(var(--bg-offset) - 4s); }
.meteor--8 { left: 92%; top: -10%; animation-duration: 5.5s; animation-delay: calc(var(--bg-offset) - 1s); }

.bg-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 85% 75% at 50% 45%, transparent 35%, rgba(8, 15, 28, 0.55) 100%);
    z-index: 3;
    pointer-events: none;
}

@keyframes meteorFall {
    0% { transform: translate(0, 0) rotate(35deg); opacity: 0; }
    3% { opacity: 1; }
    18% { transform: translate(38vw, 55vh) rotate(35deg); opacity: 0; }
    100% { transform: translate(38vw, 55vh) rotate(35deg); opacity: 0; }
}

.bg-grid, .bg-grid-glow, .bg-spotlight, .bg-shimmer, .bg-aurora-layer, .bg-mesh-layer, .bg-noise-layer,
.bg-particles, .bg-glow, .bg-orbs, .bg-orb, .orb, .bg-stars, .star, .bg-dots, .dot { display: none; }





/* Entry Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slideUpIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUpIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glowing Effects */
.hero-badge {
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(66,153,225,0.3); }
    50% { box-shadow: 0 0 40px rgba(66,153,225,0.5); }
}

/* Button Hover Glow */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.06),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.page-header .particle {
    opacity: 0.6;
}

/* Gallery Item Dark Theme */
.gallery-item {
    border: 1px solid rgba(66, 153, 225, 0.2);
}

.gallery-item:hover {
    border-color: var(--secondary);
    box-shadow: var(--glow-blue);
}

/* Empty Gallery State */
.gallery-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.gallery-empty p {
    font-size: 18px;
}

/* Additional Colored Sections */
.section-colored {
    background: linear-gradient(180deg, rgba(26, 54, 93, 0.3) 0%, rgba(15, 23, 42, 0.5) 100%);
}

.section-dark {
    background: linear-gradient(180deg, #0f172a 0%, rgba(30, 41, 59, 0.8) 100%);
}

/* Card Glow Effects */
.card-glow {
    box-shadow: 0 0 40px rgba(66, 153, 225, 0.15);
    transition: var(--transition);
}

.card-glow:hover {
    box-shadow: 0 0 60px rgba(66, 153, 225, 0.25);
}

/* Text gradient utility */
.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Border glow utility */
.border-glow {
    border: 1px solid rgba(66, 153, 225, 0.3);
    box-shadow: inset 0 0 20px rgba(66, 153, 225, 0.1);
}

/* ========== PAGE LOADER ========== */
.page-loader {
    position: fixed;
    inset: 0;
    background: #060c18;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-icon {
    font-size: 60px;
    animation: loaderBounce 1s ease-in-out infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    margin: 20px auto;
    border: 3px solid rgba(66, 153, 225, 0.2);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: loaderSpin 1s linear infinite;
}

.loader-text {
    color: var(--text-muted);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes loaderBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.5) 100%);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid rgba(66, 153, 225, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(66, 153, 225, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(66, 153, 225, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    font-weight: 700;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 14px;
    margin-top: 5px;
}

/* ========== CLIENT LOGOS ========== */
.clients-section {
    padding: 60px 0;
    background: rgba(15, 23, 42, 0.4);
    position: relative;
    z-index: 1;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: rgba(30, 41, 59, 0.4);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(66, 153, 225, 0.1);
    transition: all 0.3s ease;
    min-width: 150px;
}

.client-logo:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(66, 153, 225, 0.3);
    transform: translateY(-3px);
}

.client-logo img {
    max-height: 50px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%) brightness(2);
}

.client-logo:hover img {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

.client-logo-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}

.client-logo-text span {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
}

/* ========== FAQ SECTION ========== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.6) 100%);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    border: 1px solid rgba(66, 153, 225, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(66, 153, 225, 0.3);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(66, 153, 225, 0.1);
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.faq-icon {
    font-size: 20px;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ========== QUOTE REQUEST FORM ========== */
.quote-form {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.5) 100%);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid rgba(66, 153, 225, 0.2);
}

.quote-form h3 {
    font-size: 24px;
    color: var(--secondary-light);
    margin-bottom: 25px;
    text-align: center;
}

.quote-form--narrow {
    max-width: 700px;
    margin: 0 auto;
}

.quote-form__alt-cta {
    margin-top: 30px;
    padding: 24px;
    text-align: center;
}

.section--tight-bottom { padding-bottom: 0; }
.fs-24 { font-size: 24px; }
.showcase-card--narrow { max-width: 520px; margin: 0 auto; }
.empty-state-card { max-width: 520px; margin: 0 auto; padding: 48px 32px; }
.text-muted {
    color: var(--text-muted);
}

.section-title--sm {
    font-size: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
    background: rgba(15, 23, 42, 0.6);
    color: var(--text);
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.2);
}

/* ========== BLOG SECTION ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.5) 100%);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(66, 153, 225, 0.15);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(66, 153, 225, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--secondary-light);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 10px;
}

/* ========== PROJECT SHOWCASE ========== */
.project-showcase {
    max-width: 900px;
    margin: 0 auto;
}

.project-card {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.6) 100%);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid rgba(66, 153, 225, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.project-icon {
    font-size: 48px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
}

.project-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-light);
    margin-bottom: 5px;
}

.project-tag {
    display: inline-block;
    background: rgba(72, 187, 120, 0.2);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.project-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.project-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

@media (max-width: 600px) {
    .project-features {
        grid-template-columns: 1fr;
    }
}

.project-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(15, 23, 42, 0.4);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(66, 153, 225, 0.1);
}

.project-feature .feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.project-feature .feature-info strong {
    display: block;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 3px;
}

.project-feature .feature-info span {
    color: var(--text-muted);
    font-size: 13px;
}

.project-summary {
    padding-top: 20px;
    border-top: 1px solid rgba(66, 153, 225, 0.15);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.project-summary .summary-item {
    color: var(--text-muted);
    font-size: 14px;
}

.project-summary .summary-item strong {
    color: var(--secondary-light);
}

/* ========== PROJECTS GRID (public projects.php listing) ========== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.project-list-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(15, 25, 50, 0.5) 0%, rgba(8, 16, 35, 0.6) 100%);
    border: 1px solid rgba(66, 153, 225, 0.15);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.project-list-card:hover {
    transform: translateY(-4px);
    border-color: rgba(66, 153, 225, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.project-list-card__media {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.18), rgba(108, 60, 224, 0.18));
}

.project-list-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-list-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.project-list-card__tag {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--secondary-light);
    background: rgba(66, 153, 225, 0.12);
    border: 1px solid rgba(66, 153, 225, 0.3);
    padding: 4px 10px;
    border-radius: 999px;
}

.project-list-card__title {
    font-size: 19px;
    font-weight: 700;
    color: white;
}

.project-list-card__desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.project-list-card__highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.project-list-card__highlights li::before {
    content: '✓ ';
    color: var(--secondary-light);
    font-weight: 700;
}

.project-list-card__link {
    margin-top: auto;
    align-self: flex-start;
}

/* ========== TIMELINE (centered) ========== */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(66, 153, 225, 0.6), rgba(108, 60, 224, 0.15));
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-bottom: 48px;
    width: 100%;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item__content {
    width: calc(50% - 40px);
    padding: 20px 24px;
    background: rgba(15, 25, 50, 0.6);
    border: 1px solid rgba(66, 153, 225, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.timeline-item:hover .timeline-item__content {
    border-color: rgba(66, 153, 225, 0.35);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-item:nth-child(odd) .timeline-item__content {
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-item__content {
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 22px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0a1628;
    border: 2px solid var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transform: translateX(-50%);
    z-index: 5;
    box-shadow: 0 0 12px rgba(66, 153, 225, 0.3);
}

.timeline-year {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-light);
    background: rgba(66, 153, 225, 0.12);
    border: 1px solid rgba(66, 153, 225, 0.3);
    padding: 3px 12px;
    border-radius: 999px;
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 17px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.timeline-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.timeline-item.has-image {
    cursor: pointer;
}

.timeline-hover-img {
    position: absolute;
    top: 50%;
    width: 240px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(66, 153, 225, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 20;
}

.timeline-item:nth-child(odd) .timeline-hover-img {
    right: 0;
    left: calc(50% + 30px);
    transform: translateY(-50%) scale(0.92);
}

.timeline-item:nth-child(even) .timeline-hover-img {
    left: auto;
    right: calc(50% + 30px);
    transform: translateY(-50%) scale(0.92);
}

.timeline-item.has-image:hover > .timeline-hover-img {
    opacity: 1;
    visibility: visible;
}

.timeline-item:nth-child(odd).has-image:hover > .timeline-hover-img {
    transform: translateY(-50%) scale(1);
}

.timeline-item:nth-child(even).has-image:hover > .timeline-hover-img {
    transform: translateY(-50%) scale(1);
}

.timeline-hover-img img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
}

/* Timeline scroll nav buttons */
.timeline-nav-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.timeline-nav-btns--bottom {
    margin-bottom: 0;
    margin-top: 24px;
}

.tl-scroll-btn {
    min-width: 130px;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tl-scroll-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
        transform: none;
    }

    .timeline-item {
        justify-content: flex-start !important;
        padding-left: 50px;
    }

    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
    }

    .timeline-item__content {
        width: 100%;
        text-align: left !important;
    }

    .timeline-hover-img {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto;
        transform: none !important;
        width: 100%;
        max-width: 280px;
        margin-top: 12px;
        max-height: 0;
        transition: opacity 0.25s ease, max-height 0.3s ease, visibility 0.25s ease;
    }

    .timeline-item.has-image:hover > .timeline-hover-img,
    .timeline-item.has-image.img-open > .timeline-hover-img {
        max-height: 250px;
        transform: none !important;
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== CATEGORY QUICK-NAV (services.php) ========== */
.category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: -20px auto 40px;
    max-width: 900px;
}

.category-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(66, 153, 225, 0.2);
    text-decoration: none;
    transition: var(--transition);
}

.category-nav__link:hover {
    color: white;
    background: rgba(66, 153, 225, 0.15);
    border-color: rgba(66, 153, 225, 0.4);
    transform: translateY(-2px);
}

/* ========== TURNKEY SOLUTIONS ========== */
.turnkey-highlight {
    max-width: 900px;
    margin: 0 auto;
}

.turnkey-card {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.6) 0%, rgba(30, 41, 59, 0.5) 100%);
    border-radius: var(--radius);
    padding: 40px;
    border: 2px solid rgba(72, 187, 120, 0.3);
    position: relative;
    overflow: hidden;
}

.turnkey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
}

.turnkey-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.turnkey-icon {
    font-size: 48px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #2f855a);
    border-radius: var(--radius);
    box-shadow: 0 8px 20px rgba(72, 187, 120, 0.3);
}

.turnkey-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.turnkey-tag {
    display: inline-block;
    background: rgba(72, 187, 120, 0.2);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(72, 187, 120, 0.3);
}

.turnkey-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.turnkey-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 768px) {
    .turnkey-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .turnkey-features {
        grid-template-columns: 1fr;
    }
}

.turnkey-feature {
    background: rgba(15, 23, 42, 0.5);
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(66, 153, 225, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.turnkey-feature:hover {
    border-color: rgba(72, 187, 120, 0.4);
    transform: translateY(-3px);
}

.turnkey-feature span {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.turnkey-feature strong {
    display: block;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 5px;
}

.turnkey-feature p {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

/* ========== STATS COUNTER ========== */
.stats-section {
    padding: 60px 0;
    background: rgba(26, 54, 93, 0.5);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== ADMIN DASHBOARD ========== */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    border-right: 1px solid rgba(66, 153, 225, 0.2);
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(66, 153, 225, 0.2);
}

.admin-nav {
    list-style: none;
}

.admin-nav li {
    margin-bottom: 5px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    font-size: 14px;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(66, 153, 225, 0.15);
    color: white;
}

.admin-nav a.active {
    border-left: 3px solid var(--secondary);
}

.admin-main {
    flex: 1;
    margin-left: 260px;
    padding: 30px;
    background: #0f172a;
    min-height: 100vh;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.admin-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
}

.admin-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.admin-card {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.7) 100%);
    border-radius: var(--radius);
    padding: 25px;
    border: 1px solid rgba(66, 153, 225, 0.15);
}

.admin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.admin-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.admin-card-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
}

.admin-card-label {
    font-size: 14px;
    color: var(--text-muted);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.6) 100%);
    border-radius: var(--radius);
    overflow: hidden;
}

.admin-table th,
.admin-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(66, 153, 225, 0.1);
}

.admin-table th {
    background: rgba(66, 153, 225, 0.1);
    color: var(--text);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table td {
    color: var(--text-muted);
    font-size: 14px;
}

.admin-table tr:hover td {
    background: rgba(66, 153, 225, 0.05);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-danger {
    background: #ef4444;
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

@media (max-width: 768px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }
    
    .admin-main {
        margin-left: 0;
    }
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================================ */

/* ========== SAFE AREA INSETS (for notched phones) ========== */
@supports (padding: env(safe-area-inset-top)) {
    .header {
        padding-top: env(safe-area-inset-top);
    }
    
    .main-content {
        padding-top: calc(70px + env(safe-area-inset-top));
    }
    
    .footer-bottom {
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .whatsapp-float {
        bottom: calc(20px + env(safe-area-inset-bottom));
        right: calc(20px + env(safe-area-inset-right));
    }
    
    .login-modal-content {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ========== TABLET (max-width: 1024px) ========== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        max-width: 600px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .contact-grid {
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== TABLET PORTRAIT (max-width: 768px) ========== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Header Mobile */
    .header-inner {
        padding: 10px 15px;
        min-height: 56px;
        gap: 12px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 80vh;
        padding: 20px 0;
    }
    
    .hero h1 {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .hero-actions,
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn,
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .hero-stat-num {
        font-size: 22px;
    }
    
    .hero-stat-label {
        font-size: 11px;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-desc {
        font-size: 15px;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-badge-float {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
    
    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 20px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .footer-col:first-child {
        grid-column: span 2;
    }

    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding: 18px 0;
    }
    
    /* Page Header */
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        margin-bottom: 20px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Stats */
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    /* Clients */
    .clients-section {
        padding: 40px 0;
    }
    
    .clients-grid {
        gap: 15px;
    }
    
    .client-logo {
        padding: 15px;
        min-width: 120px;
    }
    
    /* Quote Form */
    .quote-form {
        padding: 30px;
    }
    
    .quote-grid {
        grid-template-columns: 1fr;
    }
    
    /* Project/Turnkey */
    .project-card,
    .turnkey-card {
        padding: 25px;
    }
    
    .project-header,
    .turnkey-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .project-icon,
    .turnkey-icon {
        width: 70px;
        height: 70px;
        font-size: 36px;
    }
    
    .project-features {
        grid-template-columns: 1fr;
    }
    
    .turnkey-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Login Modal */
    .login-modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .login-modal-header {
        padding: 30px 20px;
    }
    
    .login-modal-body {
        padding: 20px;
    }
    
    .login-section-title {
        font-size: 14px;
    }
    
    .login-cards-grid {
        grid-template-columns: 1fr;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
    }
}

/* ========== MOBILE (max-width: 480px) ========== */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header Mobile Small */
    .header-inner {
        padding: 8px 12px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    /* Hero Small Mobile */
    .hero {
        min-height: 85vh;
    }
    
    .hero h1 {
        font-size: 26px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Section Small */
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-badge {
        font-size: 11px;
        padding: 4px 12px;
    }
    
    /* Service Cards */
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        font-size: 16px;
    }
    
    .service-card p {
        font-size: 13px;
    }
    
    .service-list li {
        font-size: 12px;
    }
    
    /* Contact */
    .contact-info,
    .contact-form {
        padding: 20px;
    }
    
    .contact-list .icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
    }
    
    .footer-col:first-child {
        grid-column: span 2;
    }

    .footer-col:last-child {
        grid-column: span 2;
    }
    
    .footer-logo .logo-text {
        font-size: 18px;
    }

    .footer-desc {
        font-size: 13px;
        margin: 8px 0 10px;
    }
    
    .footer-col h4 {
        font-size: 13px;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .footer-links li {
        margin-bottom: 6px;
    }
    
    .footer-links a,
    .footer-contact span {
        font-size: 12px;
    }

    .footer-contact li {
        margin-bottom: 8px;
        gap: 8px;
    }

    .footer-contact .contact-icon {
        font-size: 13px;
    }
    
    .footer-bottom {
        margin-top: 20px;
        padding: 15px 0;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .footer-badges {
        gap: 6px;
    }

    .footer-badges .badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    /* Page Header */
    .page-header {
        padding: 90px 0 50px;
    }
    
    .page-header h1 {
        font-size: 26px;
    }
    
    .page-header p {
        font-size: 14px;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        aspect-ratio: 16/10;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    /* Turnkey */
    .turnkey-features {
        grid-template-columns: 1fr;
    }
    
    .turnkey-feature {
        padding: 15px;
    }
    
    .turnkey-feature span {
        font-size: 28px;
    }
    
    /* Project Summary */
    .project-summary {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Hero Stats Small */
    .hero-stats {
        gap: 10px;
        justify-content: center;
    }
    
    .hero-stat-num {
        font-size: 20px;
    }
    
    .hero-stat-label {
        font-size: 10px;
    }
    
    /* CTA */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    .cta-section p {
        font-size: 14px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* WhatsApp */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 12px;
        border-radius: 50%;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-icon {
        font-size: 22px;
    }
    
    /* Quote Form */
    .quote-form {
        padding: 20px;
    }
    
    .quote-form h3 {
        font-size: 20px;
    }
    
    /* Tables */
    .admin-table {
        font-size: 12px;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 10px 12px;
    }
}

/* ========== VERY SMALL MOBILE (max-width: 360px) ========== */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero h1 {
        font-size: 22px;
    }
    
    .hero p {
        font-size: 13px;
    }
    
    .logo-text {
        font-size: 18px;
    }

    .btn-login {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .service-card h3 {
        font-size: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== LANDSCAPE MOBILE ========== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-trust {
        display: none;
    }
    
    .page-header {
        padding: 80px 0 40px;
    }
}

/* ========== TOUCH DEVICE OPTIMIZATIONS ========== */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .testimonial-card:hover,
    .blog-card:hover,
    .login-card:hover {
        transform: none;
    }
    
    .nav-link:hover::before {
        width: 0;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    .service-card:active {
        transform: scale(0.99);
    }
}

/* ========== SHOP (listings) ========== */
.shop-section {
    padding: 60px 0 80px;
}
.shop-section .container {
    max-width: 1200px;
}
.shop-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}
.shop-sidebar {
    position: sticky;
    top: 88px;
    background: rgba(15, 25, 45, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(66, 153, 225, 0.18);
    border-radius: 14px;
    padding: 16px 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.shop-sidebar__title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 12px;
    padding: 0 4px;
}
.shop-filters {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.shop-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.shop-filter:hover {
    background: rgba(66, 153, 225, 0.1);
    border-color: rgba(66, 153, 225, 0.2);
}
.shop-filter.is-active {
    background: rgba(108, 60, 224, 0.2);
    border-color: rgba(108, 60, 224, 0.45);
    color: #e9d5ff;
}
.shop-filter__count {
    font-size: 11px;
    font-weight: 700;
    min-width: 22px;
    text-align: center;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
}
.shop-filter.is-active .shop-filter__count {
    background: rgba(108, 60, 224, 0.35);
    color: #f3e8ff;
}
.shop-main {
    min-width: 0;
}
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(66, 153, 225, 0.12);
}
.shop-result-count {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}
.shop-view-toggle {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    border-radius: 10px;
    background: rgba(15, 25, 45, 0.88);
    border: 1px solid rgba(66, 153, 225, 0.18);
}
.shop-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.shop-view-btn:hover {
    color: var(--text);
    background: rgba(66, 153, 225, 0.12);
}
.shop-view-btn.is-active {
    background: rgba(108, 60, 224, 0.35);
    color: #f3e8ff;
}
.shop-view-btn svg {
    flex-shrink: 0;
}
.shop-results--grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 270px));
    justify-content: start;
    gap: 22px;
}
.shop-results--list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.shop-results--list .shop-card {
    flex-direction: row;
    align-items: stretch;
    max-width: none;
    width: 100%;
}
.shop-results--list .shop-card:hover {
    transform: translateY(-2px);
}
.shop-results--list .shop-card__media {
    width: 240px;
    flex-shrink: 0;
}
.shop-results--list .shop-card__img-wrap {
    aspect-ratio: auto;
    height: 100%;
    min-height: 150px;
}
.shop-results--list .shop-card__price-tag {
    display: none;
}
.shop-results--list .shop-card__price--list {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #c4b5fd;
    margin: 0;
}
.shop-results--list .shop-card__body {
    padding: 16px 18px;
    justify-content: center;
}
.shop-results--list .shop-card__detail {
    -webkit-line-clamp: 3;
}
.shop-results--list .shop-card__actions {
    max-width: 300px;
    grid-template-columns: 1fr 1.15fr;
}
.shop-card__price--list {
    display: none;
}
.shop-filter-empty {
    text-align: center;
    padding: 48px 20px;
    color: var(--text-muted);
    background: rgba(15, 25, 45, 0.5);
    border-radius: 14px;
    border: 1px dashed rgba(66, 153, 225, 0.2);
}
.shop-filter-empty p {
    margin: 0;
}
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 270px));
    justify-content: center;
    gap: 22px;
}
.shop-card {
    position: relative;
    background: rgba(15, 25, 45, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(66, 153, 225, 0.18);
    display: flex;
    flex-direction: column;
    color: var(--text);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.shop-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, #6C3CE0, #48bb78);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 2;
}
.shop-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 60, 224, 0.45);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.45),
        0 0 24px rgba(108, 60, 224, 0.15);
}
.shop-card:hover::before {
    opacity: 1;
}
.shop-card__media {
    position: relative;
    isolation: isolate;
}
.shop-card__img-wrap {
    aspect-ratio: 16 / 10;
    background: linear-gradient(145deg, rgba(10, 20, 40, 0.9) 0%, rgba(20, 35, 60, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}
.shop-card__img-wrap--placeholder {
    font-size: 40px;
}
.shop-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-card:hover .shop-card__img {
    transform: scale(1.06);
}
.shop-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #c4b5fd;
    background: rgba(15, 25, 45, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid rgba(108, 60, 224, 0.35);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.shop-card__price-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    font-size: 13px;
    font-weight: 800;
    color: #e9d5ff;
    background: rgba(15, 25, 45, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid rgba(108, 60, 224, 0.4);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    letter-spacing: -0.02em;
}
.shop-card__body {
    padding: 14px 15px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.shop-card__item-no {
    margin: 0;
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.shop-card__item-no span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #c4b5fd;
    background: rgba(108, 60, 224, 0.18);
    border: 1px solid rgba(108, 60, 224, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
}
.shop-card__title {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.shop-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.shop-card__title a:hover {
    color: #c4b5fd;
}
.shop-card__pv {
    font-size: 11px;
    margin: 0;
    color: #64748b;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.shop-card__detail {
    font-size: 12px;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.shop-card__specs {
    margin: 0;
    padding-left: 18px;
    font-size: 12px;
    color: #64748b;
}
.shop-card__price {
    font-size: 17px;
    font-weight: 800;
    color: #6C3CE0;
    margin: 2px 0 0;
    letter-spacing: -0.02em;
}
.shop-card__actions {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 8px;
    margin-top: auto;
    padding-top: 6px;
}
.shop-card__actions .btn {
    font-size: 12px;
    font-weight: 600;
    padding: 9px 10px;
    min-width: 0;
    text-align: center;
    border-radius: 10px;
    line-height: 1.2;
}
.shop-card__btn-view {
    background: rgba(66, 153, 225, 0.12) !important;
    color: var(--secondary-light) !important;
    border: 1px solid rgba(66, 153, 225, 0.35) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}
.shop-card__btn-view:hover {
    background: rgba(66, 153, 225, 0.22) !important;
    color: #fff !important;
    border-color: rgba(66, 153, 225, 0.55) !important;
    transform: none !important;
    box-shadow: 0 4px 14px rgba(66, 153, 225, 0.2) !important;
}
.shop-card__btn-order {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%) !important;
    border: none !important;
    box-shadow: 0 3px 10px rgba(72, 187, 120, 0.35) !important;
}
.shop-card__btn-order:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(72, 187, 120, 0.45) !important;
}
.shop-card__actions .btn-secondary {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.shop-card__actions .btn-secondary:hover {
    background: #e2e8f0;
    color: #1e293b;
    border-color: #cbd5e1;
    transform: none;
    box-shadow: none;
}
.shop-card__actions .btn-primary {
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.35);
}
.shop-card__actions .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(72, 187, 120, 0.4);
}
.shop-card__footer {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(66, 153, 225, 0.12);
}
.shop-card__sales-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #48bb78;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.2);
}
.shop-card__sales {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.shop-card__order {
    margin-top: auto;
    text-align: center;
}
.shop-empty {
    text-align: center;
    padding: 48px 20px;
    color: #94a3b8;
}
.shop-item {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    background: rgba(15, 25, 45, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(66, 153, 225, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    color: var(--text);
}
.shop-item__main-wrap {
    aspect-ratio: 16 / 10;
    background: rgba(10, 20, 40, 0.9);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(66, 153, 225, 0.12);
}
.shop-item__main-wrap--placeholder{ font-size:72px; }
.shop-item__main{ width:100%; height:100%; object-fit:cover; display:block; }
.shop-item__thumbs{ display:flex; gap:10px; margin-top:12px; flex-wrap:wrap; }
.shop-item__thumb{
  border:2px solid transparent;
  border-radius:10px;
  padding:0;
  background:none;
  cursor:pointer;
  width:72px;
  height:72px;
  overflow:hidden;
}
.shop-item__thumb.is-active{ border-color:#6C3CE0; }
.shop-item__thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.shop-item__info{ display:flex; flex-direction:column; gap:12px; }
.shop-item__title{ font-size:28px; font-weight:800; margin:0; line-height:1.25; color:var(--text); }
.shop-item__pv{ margin:0; color:var(--text-muted); }
.shop-item__price{ font-size:32px; font-weight:800; color:#c4b5fd; margin:0; }
.shop-item__detail h3{ font-size:15px; margin:0 0 8px; color:var(--text); }
.shop-item__detail p{ margin:0; color:var(--text-muted); line-height:1.6; white-space:pre-line; }
.shop-item__actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:8px; }
.shop-item__sales{ margin:0; font-size:13px; color:var(--text-muted); }
@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .shop-sidebar {
        position: static;
        padding: 12px;
    }
    .shop-sidebar__title {
        margin-bottom: 10px;
    }
    .shop-filters {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .shop-filters::-webkit-scrollbar {
        display: none;
    }
    .shop-filter {
        flex: 0 0 auto;
        width: auto;
        white-space: nowrap;
        padding: 8px 12px;
        font-size: 13px;
    }
    .shop-toolbar {
        flex-wrap: wrap;
        margin-bottom: 14px;
    }
    .shop-view-btn span {
        display: none;
    }
    .shop-results--grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .shop-results--list .shop-card {
        flex-direction: column;
    }
    .shop-results--list .shop-card__media {
        width: 100%;
    }
    .shop-results--list .shop-card__img-wrap {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }
    .shop-results--list .shop-card__actions {
        max-width: none;
    }
    .shop-card__body {
        padding: 11px 12px 12px;
    }
    .shop-card__title {
        font-size: 13px;
    }
    .shop-card__price-tag {
        font-size: 11px;
        padding: 4px 8px;
    }
    .shop-card__actions {
        grid-template-columns: 1fr;
    }
    .shop-card__actions .btn {
        padding: 8px;
    }
    .shop-item {
        grid-template-columns: 1fr;
        padding: 16px;
    }
    .shop-item__title {
        font-size: 22px;
    }
}

/* Mobile shop: fix scroll flicker (backdrop-filter + animated bg repaint) */
@media (max-width: 960px) {
    .header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(6, 12, 24, 0.97);
    }

    .header.scrolled {
        background: rgba(6, 12, 24, 0.99);
    }

    .page-shop .global-bg-animation,
    .page-shop .global-bg-animation.synced,
    .page-shop .bg-mesh-layer,
    .page-shop .bg-aurora-layer {
        animation: none !important;
    }

    .page-shop .global-bg-animation .orb,
    .page-shop .global-bg-animation .dot,
    .page-shop .global-bg-animation .star,
    .page-shop .global-bg-animation .bg-grid,
    .page-shop .global-bg-animation .bg-grid-glow,
    .page-shop .global-bg-animation .bg-shimmer {
        animation: none !important;
    }

    .page-shop .shop-section {
        isolation: isolate;
    }

    .page-shop .shop-card,
    .page-shop .shop-sidebar,
    .page-shop .shop-view-toggle,
    .page-shop .shop-item,
    .page-shop .shop-filter-empty,
    .page-shop .shop-card__badge,
    .page-shop .shop-card__price-tag {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .page-shop .shop-card {
        background: #121e33;
    }

    .page-shop .shop-sidebar,
    .page-shop .shop-view-toggle,
    .page-shop .shop-item,
    .page-shop .shop-filter-empty {
        background: #121e33;
    }

    .page-shop .shop-card__badge,
    .page-shop .shop-card__price-tag {
        background: rgba(8, 14, 28, 0.92);
    }

    .page-shop .shop-filters {
        overscroll-behavior-x: contain;
    }

    .page-shop .shop-card:hover {
        transform: none;
        box-shadow:
            0 4px 20px rgba(0, 0, 0, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .page-shop .shop-card:hover::before {
        opacity: 0;
    }

    .page-shop .shop-card:hover .shop-card__img {
        transform: none;
    }
}

@media (hover: none) and (pointer: coarse) {
    .shop-card:hover {
        transform: none;
    }

    .shop-card:hover::before {
        opacity: 0;
    }

    .shop-card:hover .shop-card__img {
        transform: none;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .header,
    .footer,
    .whatsapp-float,
    .global-bg-animation,
    .login-modal {
        display: none !important;
    }
    
    .main-content {
        padding-top: 0;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        background: transparent !important;
    }
}
