/* ============================================================
   ServiceCMS - Modern Premium Theme 2026
   Glassmorphism + Micro-animations + Premium Effects
   ============================================================ */

/* ── Google Fonts Override ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Variables ── */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #e0e7ff;
    --primary-glow: rgba(99, 102, 241, 0.15);
    --accent: #06b6d4;
    --accent-glow: rgba(6, 182, 212, 0.15);
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    --text: #0f172a;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 8px 32px rgba(99, 102, 241, 0.2);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* ── Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text);
    line-height: 1.7;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background: var(--primary);
    color: #fff;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* ── Scroll-reveal animation ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 var(--primary-glow);
    }

    50% {
        box-shadow: 0 0 0 12px transparent;
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease both;
}

/* ── Header ── */
.site-header {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.site-header .navbar {
    padding: 0.75rem 0;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text);
    padding: 0.5rem 1.1rem;
    position: relative;
    transition: all var(--transition);
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    transition: all var(--transition);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    left: 1rem;
    right: 1rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
}

.navbar-nav .nav-link.active {
    color: var(--primary);
}

/* ── CTA Button ── */
.btn-cta {
    background: var(--gradient);
    border: none;
    color: #fff;
    padding: 0.6rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: #fff;
}

.btn-cta:hover::before {
    opacity: 1;
}

.btn-cta:active {
    transform: translateY(0);
}

/* ── Hamburger ── */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.toggler-icon span {
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ── Hero / Slider ── */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Slider transitions */
.hero-slider[data-transition="fade"] .hero-slide {
    transition: opacity 1s ease;
}

.hero-slider[data-transition="slide"] .hero-slide {
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease;
}

.hero-slider[data-transition="slide"] .hero-slide.active {
    transform: translateX(0);
}

.hero-slider[data-transition="slide"] .hero-slide.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

.hero-slider[data-transition="zoom"] .hero-slide {
    transform: scale(1.2);
    transition: opacity 1s ease, transform 1s ease;
}

.hero-slider[data-transition="zoom"] .hero-slide.active {
    transform: scale(1);
}

.hero-slider[data-transition="kenburns"] .hero-slide {
    transition: opacity 1.2s ease;
}

.hero-slider[data-transition="kenburns"] .hero-slide.active {
    animation: kenburns 8s ease forwards;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.08) translate(-1%, -1%);
    }
}

.hero-slide .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
    z-index: 2;
}

.hero-slide .hero-content h1,
.hero-slide .hero-content p,
.hero-slide .hero-content .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.active .hero-content h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.hero-slide.active .hero-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.hero-slide.active .hero-content .btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 500px;
    margin-bottom: 1.5rem;
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    padding: 0;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.hero-dot.active {
    background: #fff;
    width: 32px;
    border-radius: 5px;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Hide slider arrows */
.slider-arrow {
    display: none !important;
}

/* ── Sections ── */
.section {
    padding: 6rem 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text);
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient);
    margin: 1rem auto 0;
    border-radius: 4px;
}

/* ── Service Cards ── */
.service-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    height: 100%;
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-subtle);
    opacity: 0;
    transition: opacity var(--transition);
    border-radius: inherit;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-card .icon-box {
    width: 72px;
    height: 72px;
    background: var(--gradient-subtle);
    color: var(--primary);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    transition: all var(--transition);
    position: relative;
}

.service-card:hover .icon-box {
    background: var(--gradient);
    color: #fff;
    transform: scale(1.1) rotate(-3deg);
    box-shadow: var(--shadow-glow);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    position: relative;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
    position: relative;
}

.service-card-img {
    transition: transform var(--transition-slow);
}

.service-card:hover .service-card-img,
.service-card:hover img {
    transform: scale(1.05);
}

/* ── About Section ── */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--gradient-subtle);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.about-stat .number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.about-stat .label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* ── Testimonials ── */
.testimonial-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-card .stars {
    color: #f59e0b;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
}

.testimonial-card .author {
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-card .author::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gradient);
    display: inline-block;
}

/* ── FAQ ── */
.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 0.75rem;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    background: var(--bg);
    transition: all var(--transition);
    font-size: 1rem;
}

.faq-question:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

.faq-question i {
    transition: transform var(--transition);
    font-size: 0.9rem;
    color: var(--text-light);
}

.faq-item.open .faq-question {
    color: var(--primary);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ── CTA Section ── */
.cta-section {
    background: var(--gradient);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -200px;
    right: -100px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: -150px;
    left: -50px;
}

.cta-section h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.cta-section .btn {
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    padding: 0.85rem 2.5rem;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    font-size: 1rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ── Blog Cards ── */
.post-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    height: 100%;
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.post-card .post-image {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform var(--transition-slow);
}

.post-card:hover .post-image {
    transform: scale(1.05);
}

.post-card .post-body {
    padding: 1.5rem;
}

.post-card .post-meta {
    font-size: 0.8rem;
    color: var(--text-lighter);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.post-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.post-card h3 a {
    color: var(--text);
    transition: color var(--transition);
}

.post-card h3 a:hover {
    color: var(--primary);
}

.post-card .post-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── Page Header ── */
.page-hero {
    background: var(--gradient);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>') repeat;
    opacity: 0.3;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    position: relative;
}

.breadcrumb-custom {
    justify-content: center;
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-custom .active {
    color: #fff;
}

/* ── Content ── */
.content-body {
    font-size: 1.05rem;
    line-height: 1.9;
}

.content-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.content-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-body img {
    border-radius: var(--radius);
    margin: 1.5rem 0;
    box-shadow: var(--shadow);
}

.content-body ul,
.content-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-body blockquote {
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--gradient-subtle);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-light);
}

/* ── Contact Form ── */
.contact-form .form-control {
    border-radius: var(--radius);
    border: 2px solid var(--border-light);
    padding: 0.85rem 1.25rem;
    transition: all var(--transition);
    font-size: 0.95rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
    outline: none;
}

.contact-form .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

/* ── Footer ── */
.site-footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: #94a3b8;
}

.footer-main {
    padding: 4rem 0;
}

.footer-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.footer-subtitle {
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-desc {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all var(--transition);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 0.25rem;
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
}

.footer-contact li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1rem;
}

.footer-contact a {
    color: #94a3b8;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-hours {
    list-style: none;
    padding: 0;
    font-size: 0.85rem;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.25rem 0;
    font-size: 0.85rem;
}

/* ── WhatsApp FAB ── */
.whatsapp-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    z-index: 1000;
    transition: all var(--transition);
    animation: pulse-glow 2s infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.1) rotate(-5deg);
    color: #fff;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

/* ── Mobile Menus ── */
.mobile-menu-offcanvas {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    z-index: 1050;
    transition: left var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.3);
}

.mobile-menu-offcanvas.show {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-header .brand-text {
    color: #fff;
    font-weight: 800;
    background: none;
    -webkit-text-fill-color: #fff;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.25rem;
    cursor: pointer;
    transition: color var(--transition);
}

.mobile-menu-close:hover {
    color: #fff;
}

.mobile-menu-nav {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    color: #d1d5db;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.mobile-menu-nav li a:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #fff;
    border-left-color: var(--primary);
}

.mobile-menu-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1045;
}

.mobile-menu-backdrop.show {
    display: block;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(20px);
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mobile-menu-overlay.show {
    display: flex;
}

.mobile-menu-overlay .mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.mobile-menu-nav-overlay ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-menu-nav-overlay li a {
    display: block;
    padding: 1.25rem;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: all var(--transition);
}

.mobile-menu-nav-overlay li a:hover {
    color: var(--primary);
    transform: scale(1.05);
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-slider {
        height: 450px;
    }
}

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

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

    .hero-slider {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .about-stat .number {
        font-size: 1.75rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }
}

/* ── Utility Animations ── */
.hover-lift {
    transition: transform var(--transition), box-shadow var(--transition);
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.hover-glow {
    transition: box-shadow var(--transition);
}

.hover-glow:hover {
    box-shadow: var(--shadow-glow);
}

/* ── Focus States ── */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}