*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --orange: #F97316;
            --black: #0a0a0a;
            --white: #ffffff;
        }

        body {
            font-family: 'Barlow', sans-serif;
            background-color: var(--black);
            color: var(--white);
            overflow-x: hidden;
        }

        /* ===== NAVBAR ===== */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            padding: 18px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(10,10,10,0.85);
            backdrop-filter: blur(10px);
        }

        .logo img {
            height: 55px;
            width: 180px;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            align-items: center;
            background: #1a1a1a;
            border-radius: 50px;
            padding: 18px 10px;
            gap: 4px;
            list-style: none;
            border: 1px solid rgba(255, 255, 255, 0.15);
            overflow: visible;
            position: relative;
            z-index: 200;
        }

        .nav-links a {
            text-decoration: none;
            color: #aaa;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.05em;
            padding: 14px 22px;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .nav-links a:hover,
        .nav-links a.active {
            background: #2a2a2a;
            color: var(--white);
        }

        .nav-links a.active {
            color: var(--orange);
        }

        .nav-cta {
            background: var(--orange);
            color: var(--white) !important;
            font-weight: 700 !important;
            padding: 12px 28px !important;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: background 0.3s ease;
        }

        .nav-cta:hover {
            background: #ea6a00;
        }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.65);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 0 20px 60px;
            animation: fadeUp 1s ease forwards;
            margin-top: 250px;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(40px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .hero h1 {
            font-family: 'Unbounded', sans-serif;
            font-size: clamp(24px, 4vw, 48px);
            line-height: 1.8;
            letter-spacing: -0.02em;
            color: var(--white);
            margin-bottom: 24px;
        }

        .hero h1 .highlight {
            background: var(--orange);
            color: var(--white);
            padding: 0px 6px;
            display: inline;
        }

        .hero h1 .icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--orange);
            border-radius: 50%;
            width: 70px;
            height: 70px;
            font-size: 36px;
            margin: 0 6px;
            vertical-align: middle;
        }

        .hero p {
            font-size: 15px;
            color: #ccc;
            max-width: 540px;
            margin: 0 auto 36px;
            line-height: 1.7;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--orange);
            color: var(--white);
            text-decoration: none;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 18px 40px;
            border-radius: 50px;
            transition: background 0.3s ease, transform 0.2s ease;
        }

        .hero-btn:hover {
            background: #ea6a00;
            transform: scale(1.04);
        }
        
        .hero {
            background-image: url('../images/bg.png');
            background-attachment: fixed;
        }
        
        @media (max-width: 768px) {
            .hero {
                background-image: url('../images/bg_mobile.png') !important;
                background-attachment: fixed !important;
            }
        }
        
        .hero-title-mobile {
            display: none;
        }

        @media (max-width: 768px) {
            .hero-title-desktop {
                display: none;
            }
            .hero-title-mobile {
                display: block;
            }
        }

        .hero-btn span {
            font-size: 18px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
    nav {
        padding: 14px 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        font-size: 12px;
        padding: 10px 16px !important;
        white-space: nowrap;
    }

    .hero {
    background-image: url('../images/bg_mobile.png') !important;
    background-attachment: scroll;
    }

    .hero-content {
        margin-top: 80px;
        padding: 0 16px;
        width: 100%;
    }

    .hero-title-mobile {
        font-size: 28px !important;
        word-break: break-word;
        line-height: 1.9 !important;
    }

    .hero h1 .icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}
        /* ===== MARQUEE SECTION ===== */
.marquee-section {
    position: relative;
    background-color: #f58327;
    overflow: hidden;
    padding: 220px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 12s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-front-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    max-height: 500px;
    object-fit: contain;
    pointer-events: none;
}

    /* ===== SERVICES ===== */
.services {
    padding: 100px 60px;
    background-color: var(--black);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.services-header h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(28px, 3.5vw, 48px);
    color: var(--white);
    letter-spacing: -0.02em;
}

.services-header h2 .highlight {
    background: var(--orange);
    color: var(--white);
    padding: 0 12px;
    display: inline-block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: #2a2a2a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
}

.service-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.75;
    flex: 1;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--orange);
}

@media (max-width: 768px) {
    .services {
        padding: 60px 20px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}
    
    /* ===== BRANDS SECTION ===== */
.brands {
    padding: 80px 0;
    background-color: var(--black);
    text-align: center;
    overflow: hidden;
}

.brands-tag {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.brands h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    color: var(--white);
    font-weight: 900;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

.brands-marquee {
    display: flex;
    width: max-content;
    animation: brands-scroll 18s linear infinite;
    gap: 16px;
}

.brands-marquee:hover {
    animation-play-state: paused;
}

@keyframes brands-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 72px;
    color: #aaa;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: border-color 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.brand-card:hover {
    border-color: var(--orange);
    color: var(--white);
}
    
    /* ===== PRICING SECTION ===== */
.pricing {
    padding: 100px 60px;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.pricing-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pricing-header h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(28px, 3.5vw, 48px);
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.pricing-header h2 .highlight {
    background: var(--orange);
    color: var(--white);
    padding: 0 12px;
    display: inline-block;
}

.pricing-toggle {
    display: inline-flex;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 50px;
    padding: 5px;
    gap: 4px;
    margin-bottom: 12px;
}

.toggle-btn {
    background: none;
    border: none;
    color: #888;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: var(--orange);
    color: var(--white);
}

.toggle-btn:hover:not(.active) {
    color: var(--white);
}

.pricing-save {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.pricing-save .hl {
    color: var(--orange);
    font-weight: 700;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 32px 28px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #F9731655;
    box-shadow: 0 0 40px rgba(249,115,22,0.1);
}

.best-value {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    font-family: 'Barlow', sans-serif;
}

.plan-name {
    display: inline-block;
    background: #252525;
    color: #aaa;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 28px;
}

.plan-price .currency {
    font-size: 20px;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-price .amount {
    font-family: 'Unbounded', sans-serif;
    font-size: 58px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.plan-price .period {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    margin-left: 2px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #999;
    font-size: 14px;
    line-height: 1.5;
}

.plan-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    transition: all 0.3s ease;
}

.plan-btn-outline {
    background: transparent;
    border: 1px solid #2a2a2a;
    color: #aaa;
}

.plan-btn-outline:hover {
    border-color: var(--orange);
    color: var(--white);
}

.plan-btn-primary {
    background: var(--orange);
    border: 1px solid var(--orange);
    color: var(--white);
}

.plan-btn-primar

/* ============================================
   DIGITAL MARKETING AGENCY - 4 SECTIONS CSS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700;900&display=swap');

:root {
    --bg-primary: #0d0d0d;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --accent-orange: #f07d00;
    --accent-orange-hover: #ff8c00;
    --text-white: #ffffff;
    --text-muted: #aaaaaa;
    --text-light: #cccccc;
    --border-radius: 14px;
    --border-color: #2a2a2a;
}

/* ============================================
   SECTION 1: OUR SPECIALITIES
   ============================================ */

.specialities-section {
    background-color: var(--bg-primary);
    padding: 80px 60px;
    font-family: 'Barlow', sans-serif;
    position: relative;
    overflow: hidden;
}

.specialities-section::before {
    display: none;
}

.specialities-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.specialities-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.why-us-badge {
    background-color: var(--accent-orange);
    color: var(--text-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
}

.specialities-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--text-white);
    letter-spacing: 1px;
    margin: 0;
}

.specialities-description {
    max-width: 340px;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-muted);
}

.specialities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.stat-card-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    min-height: 280px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.stat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.stat-card-image:hover img {
    transform: scale(1.04);
    opacity: 0.85;
}

.stat-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: var(--text-white);
    line-height: 1;
    letter-spacing: 2px;
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 8px;
}

.stat-description {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin-top: 6px;
}

.stat-card-plain {
    background-color: transparent;
    border-radius: var(--border-radius);
    padding: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: background 0.3s ease;
    align-self: stretch;
}
.stat-top {
    margin-bottom: 16px;
}

.stat-card-plain:hover {
    background-color: var(--bg-card-hover);
}

.stat-card-plain .stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: var(--text-white);
    line-height: 1;
}

.stat-card-plain .stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-top: 6px;
}

.stat-card-plain .stat-description {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-top: auto;
}

.stat-inner-card {
    background-color: #f58327;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* ============================================
   SECTION 2: FAQ
   ============================================ */

.faq-section {
    background-color: var(--bg-primary);
    background-image: url('/images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 60px;
    font-family: 'Barlow', sans-serif;
    position: relative;
    overflow: hidden;
}

.faq-answer-divider {
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.08) 20%,
        rgba(255, 255, 255, 0.08) 80%,
        transparent
    );
    margin: 0 24px;
}

.faq-section::before {
    display: none;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.faq-badge {
    display: inline-block;
    background-color: rgba(30, 30, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #FFD700;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.faq-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: var(--text-white);
    line-height: 1.1;
    letter-spacing: 1px;
    margin: 0;
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.faq-item {
    background-color: rgba(30, 30, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: background 0.3s ease;
    backdrop-filter: blur(4px);
}

.faq-item:hover {
    background-color: rgba(40, 40, 40, 0.90);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
}

.faq-question-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-white);
}

.faq-toggle-btn {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background-color: var(--accent-orange);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.faq-toggle-btn:hover {
    background-color: var(--accent-orange-hover);
}

.faq-toggle-btn svg {
    width: 16px;
    height: 16px;
    fill: white;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle-btn svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    padding-bottom: 20px;
    margin: 0;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px;
}

/* ============================================
   SECTION 3: CONTACT / LET'S TALK
   ============================================ */

.contact-section {
    background-color: var(--bg-primary);
    padding: 80px 60px;
    font-family: 'Barlow', sans-serif;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    display: none;
}

.contact-heading {
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.contact-heading h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 160px;
    line-height: 1;
    margin: 0;
}

.contact-heading h2 .white-text {
    color: var(--text-white);
    display: block;
}

.contact-heading h2 .orange-text {
    color: #F58327;
    display: block;
}

.contact-form-wrapper {
    flex: 0 0 620px;
    max-width: 620px;
    margin-left: auto;
    background-color: rgba(30, 30, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 36px;
    position: relative;
    z-index: 1;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background-color: #252525;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 14px;
    color: var(--text-white);
    font-family: 'Barlow', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #555555;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-orange);
}

.contact-form textarea {
    resize: vertical;
    min-height: 110px;
}

.contact-form .submit-btn {
    width: 100%;
    background-color: #FFD700;
    color: #1a1a1a;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 6px;
}

.contact-form .submit-btn:hover {
    background-color: #d4b71e;
    transform: translateY(-1px);
}

/* ============================================
   SECTION 4: FOOTER
   ============================================ */

.footer-section {
    background-color: var(--bg-primary);
    padding: 50px 60px 30px;
    font-family: 'Barlow', sans-serif;
    border-top: 1px solid var(--border-color);
}

.footer-wrapper {
    background-color: rgba(30, 30, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
}

.footer-top {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 0 0 260px;
}

.footer-contact-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: background 0.3s ease;
}

.footer-contact-card:hover {
    background-color: var(--bg-card-hover);
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(240, 125, 0, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact-text {
    font-size: 13px;
    color: var(--text-light);
}

.footer-nav-columns {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 60px;
}

.footer-nav-column h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-column ul li a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-column ul li a:hover {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-social-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-orange);
    letter-spacing: 1px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    background-color: var(--bg-card);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.social-icon-btn:hover {
    background-color: var(--accent-orange);
    transform: translateY(-2px);
}

.social-icon-btn svg {
    width: 17px;
    height: 17px;
    fill: #ffffff;
}
.footer-contact-card {
    background-color: rgba(30, 30, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: background 0.3s ease;
}
.footer-bottom-card {
    background-color: rgba(30, 30, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 20px 30px;
    text-align: center;
    margin-top: 20px;
}

.footer-bottom-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}
/* ============================================
   MOBILE RESPONSIVE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    body {
        overflow-x: clip;
    }

    nav {
        padding: 14px 20px;
        padding-left: 0px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        background-image: url('/images/bg_mobile.png') !important;
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }

    .hero-content {
        margin-top: 80px;
        padding: 0 16px;
        width: 100%;
    }

    .hero h1 {
        font-size: 36px;
        word-break: break-word;
    }

    .hero h1 .icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    
    .marquee-front-img {
    max-height: 280px;
    }
    
    .marquee-section {
    padding: 120px 0;
    }
    
    .brands h2 {
    font-size: 22px;
    }
    
    .pricing-cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 16px;
        scrollbar-width: none;
        padding-top: 20px;
    }

    .pricing-cards::-webkit-scrollbar {
        display: none;
    }

    .pricing-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .pricing {
    overflow: visible;
    padding: 100px 20px;
    }
    
    .specialities-section {
        padding: 50px 20px;
    }

    .specialities-header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.specialities-header-left {
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.specialities-title {
    font-size: 28px;
}

.specialities-description {
    max-width: 100%;
}

    .specialities-grid {
        grid-template-columns: 1fr;
    }
}
    
    @media (max-width: 768px) {
    .faq-title {
        font-size: 30px;
    }
}

    @media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        padding: 60px 20px;
        gap: 30px;
    }

    .contact-heading h2 {
        font-size: 80px;
    }

    .contact-form-wrapper {
        flex: none;
        max-width: 100%;
        width: 100%;
        margin-left: 0;
    }
}
    
    @media (max-width: 768px) {
    .footer-section {
        padding: 40px 20px 30px;
    }

    .footer-wrapper {
        padding: 20px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-nav-columns {
        flex-direction: column;
        gap: 30px;
    }

    .footer-contact-cards {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .footer-nav-columns {
        align-items: center;
        text-align: center;
    }
}

.hamburger {
    display: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        background: #1a1a1a;
        border: none;
        border-radius: 10px;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: #ffffff;
        border-radius: 2px;
    }
    
    .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0a0a0a;
    z-index: 999;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 0;
    padding: 40px 20px;
    }

    .nav-links.mobile-open li {
    width: 90%;
    display: flex;
    justify-content: center;
}

    .nav-links.mobile-open li a {
    font-size: 15px;
    padding: 14px 60px;
    width: 90%;
    text-align: center;
    display: block;
    border-radius: 50px;
    margin: 0 auto;
}
    
    .nav-links.mobile-open .nav-cta {
    display: flex !important;
    position: static;
    width: 90%;
    justify-content: center;
    margin-top: 10px;
    padding: 18px 0;
    font-size: 18px;
    border-radius: 50px;
}

    .mobile-nav-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 14px 20px;
        position: absolute;
        top: 0;
        left: 0;
        box-sizing: border-box;
    }

    .mobile-nav-logo {
        height: 54px;
        width: auto;
        display: block;
    }

    .mobile-close-btn {
        width: 44px;
        height: 44px;
        background: #1a1a1a;
        border: none;
        border-radius: 10px;
        color: #ff6a00;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .mobile-break {
        display: block;
    }

}

.mobile-break {
    display: none;
}

/* ===== DROPDOWN MENU ===== */
.has-dropdown {
    position: relative;
}

.has-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 8px 0;
    min-width: 190px;
    z-index: 9999;
    list-style: none;
    box-shadow: 0 12px 32px rgba(0,0,0,0.6);
    overflow: visible;
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #ccc;
    font-size: 14px;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
    border-radius: 0;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    color: #F97316;
    background: #1a1a1a;
}

.has-dropdown > a::after {
    display: none;
}

/* ===== Whatsspp-float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.6);
}