:root {
    --bg-dark: #0a0a0a;
    --text-light: #ffffff;
    --text-muted: #888888;
    --red-accent: #cc0000;
    --red-bright: #ff0000;
    --border-color: #222222;
    --card-bg: #111111;
    --font-primary: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-primary);
    overflow-x: hidden;
    line-height: 1.5;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 20px 40px;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 32px;
    width: auto;
}

.desktop-nav {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: var(--red-accent);
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Fullscreen Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 99;
    backdrop-filter: blur(10px);
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.menu-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 30px;
}

.menu-content a {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s, transform 0.3s;
}

.menu-content a:hover {
    color: var(--red-accent);
    transform: scale(1.05);
}

/* Hero Slider */
.hero {
    position: relative;
    height: 100vh;
    padding: 0;
    overflow: hidden;
    display: block; /* Overriding previous flex display */
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 10%;
    z-index: 1;
}

.slide-1-bg {
    background-image: url('images/red-middle-east.jpg');
}
.slide-2-bg {
    background-image: url('images/hero-bg.png');
}

@media (max-width: 768px) {
    .slide-1-bg {
        background-image: url('images/mobile-slide-1.png') !important;
        background-size: cover !important;
        background-position: center center !important;
    }
    .slide-2-bg {
        background-image: url('images/mobile-slide-2.png') !important;
        background-size: cover !important;
        background-position: center center !important;
    }
    .hero-slide {
        padding: 0 5%;
    }
}

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

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease forwards;
}

.hero-content h1 span {
    color: var(--red-accent);
    font-style: italic;
}

.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--text-light);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.hero-dot.active {
    background: var(--red-accent);
    border-color: var(--red-accent);
}

.cta-link {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--red-accent);
    padding-bottom: 5px;
    transition: color 0.3s, gap 0.3s;
}

.cta-link:hover {
    color: var(--red-accent);
    gap: 15px;
}

.cta-link .arrow {
    color: var(--red-accent);
}

/* Brands Marquee */
.brands-marquee {
    background-color: #5a0000; /* Deep red matching the design */
    padding: 30px 0;
    text-align: center;
    overflow: hidden;
}

.marquee-title {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #ff9999;
}

.marquee-container {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    animation: scrollMarquee 50s linear infinite;
}

.marquee-content > * {
    margin-right: 50px;
}

.marquee-content span {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.marquee-content .separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.marquee-content .brand-logo {
    display: inline-block;
    vertical-align: middle;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 100px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.marquee-content .brand-logo:hover {
    opacity: 1;
    transform: scale(1.08);
    cursor: pointer;
}

.marquee-content .brand-logo[src*="philip_morris"] {
    width: 140px;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Expertise Section */
.expertise {
    padding: 80px 40px;
    background-color: var(--bg-dark);
}

.expertise h2 {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.expertise-slider-container {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.expertise-slider-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge */
}

.expertise-slider {
    display: flex;
    gap: 20px;
    width: max-content;
    padding-bottom: 20px;
}

.expertise-slider a {
    display: flex;
    text-decoration: none;
    color: inherit;
}

.expertise-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s, background-color 0.3s;
}

.expertise-card:hover {
    transform: translateY(-10px);
    border-color: var(--red-accent);
    background-color: #1a0505;
}

.card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.card-icon img {
    width: 100%;
    height: 100%;
}

.expertise-card h3 {
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.expertise-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.expertise-card .arrow {
    color: var(--red-accent);
    font-size: 18px;
    margin-top: auto;
    transition: transform 0.3s;
}

.expertise-card:hover .arrow {
    transform: translateX(10px);
}

@media (min-width: 1380px) {
    .expertise-slider-container {
        display: flex;
        justify-content: center;
    }
    .expertise-slider {
        width: 100%;
        max-width: 1300px;
        justify-content: center;
        gap: 30px;
    }
}

/* Featured Project */
.featured-project {
    display: flex;
    flex-direction: column;
    padding: 0 40px 80px 40px;
}

.section-tag {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.project-split {
    display: flex;
    height: 500px;
    background-color: var(--card-bg);
}

.project-slider {
    flex: 1.5;
    position: relative;
    overflow: hidden;
}

.project-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.project-slide.active {
    opacity: 1;
}

.project-caption-wrapper {
    flex: 1;
    position: relative;
    border-right: 1px solid var(--border-color);
    height: 100%;
}

.project-caption {
    position: absolute;
    inset: 0;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.5s ease-in-out;
}

.project-caption.active {
    opacity: 1;
    pointer-events: auto;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-arrow {
    background: rgba(0,0,0,0.5);
    border: 1px solid #333;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--red-accent);
    border-color: var(--red-accent);
}

/* Pagination Dots */
.slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 60px;
    display: flex;
    flex-wrap: wrap;
    max-width: 80%;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--red-accent);
}

.brand-tag {
    color: var(--red-accent);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.project-caption h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
}

.project-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}

.view-project {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.view-project .arrow {
    color: var(--red-accent);
    margin-left: 5px;
}

.project-cta {
    flex: 1;
    background-color: var(--red-accent);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-cta h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.4;
}

.start-project {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid white;
    padding-bottom: 5px;
    width: max-content;
}

/* Footer Blocks */
.footer-blocks {
    display: flex;
    padding: 0 40px 80px 40px;
    gap: 20px;
    height: auto;
}

.footer-card {
    flex: 1;
    position: relative;
    background-color: var(--card-bg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    background-size: cover;
    background-position: center;
}

.card-content-bottom h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.card-content-bottom a, .contact-btn {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--red-accent);
}

.red-text {
    color: var(--red-accent);
}

.investor-card {
    background-color: #ffffff;
    color: #000000;
    justify-content: center;
}

.investor-card .icon {
    width: 30px;
    height: 30px;
    margin-bottom: 20px;
}

.investor-card h3 {
    font-size: 20px;
    color: var(--red-accent);
    margin-bottom: 10px;
}

.investor-card p {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.investor-card .contact-btn {
    border: 1px solid var(--red-accent);
    padding: 10px 20px;
    display: inline-block;
    transition: background 0.3s, color 0.3s;
}

.investor-card .contact-btn:hover {
    background: var(--red-accent);
    color: white;
}


/* Our Clients Section */
.our-clients-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 80px 40px;
    background-image: url('images/our-clients-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #111111;
    z-index: 150;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-clients-section.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

/* Close Button for Overlay */
.close-overlay {
    position: fixed;
    top: 20px;
    right: 40px;
    background: none;
    border: none;
    font-size: 40px;
    font-weight: 300;
    color: #111111;
    cursor: pointer;
    z-index: 160;
    transition: color 0.3s, transform 0.3s;
}

.close-overlay:hover {
    color: var(--red-accent);
    transform: rotate(90deg);
}

.clients-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1500px;
    width: 100%;
    margin: auto;
}

/* Left Architectural Panel */
.clients-left-panel {
    flex: 0 0 540px;
    position: relative;
    background: transparent;
    border-radius: 0;
    padding: 40px 20px 40px 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 480px;
    overflow: visible;
    box-shadow: none;
    border: none;
}

/* The curved architectural lines in background are now part of the background image */
.clients-left-panel::before {
    display: none;
}

.clients-left-panel::after {
    display: none;
}

.glowing-neon-bar {
    display: none;
}

.clients-text-content {
    position: relative;
    z-index: 4;
}

.clients-text-content h1 {
    font-size: 54px;
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 16px;
    color: #111111;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.6);
}

.clients-text-content h1 .red {
    color: #cc0000;
    display: block;
}

.clients-text-content .divider {
    display: block;
    width: 60px;
    height: 4px;
    background-color: #cc0000;
    margin: 15px 0 24px 0;
    box-shadow: 0 0 14px rgba(204,0,0,0.8);
}

.clients-text-content p.body {
    font-size: 14px;
    color: #444444;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.7);
}

.clients-left-panel .impact {
    position: absolute;
    bottom: 20px;
    left: 160px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111111;
}

.clients-left-panel .impact span {
    color: #cc0000;
}

/* Right Brand Logos Panel */
.clients-right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.clients-logos-img {
    width: 100%;
    max-width: 820px;
    height: auto;
    object-fit: contain;
}

/* Brand Card Styling using a single Sprite Sheet */
.brand-card {
    background-image: url('images/brand-logos-sprite.jpg');
    background-size: 500% 600%;
    background-repeat: no-repeat;
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    aspect-ratio: 16 / 10;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: rgba(204, 0, 0, 0.3);
}

/* Column positions for 5-column sprite sheet */
.logo-card-1, .logo-card-6, .logo-card-11, .logo-card-16, .logo-card-21, .logo-card-26 { background-position-x: 0%; }
.logo-card-2, .logo-card-7, .logo-card-12, .logo-card-17, .logo-card-22, .logo-card-27 { background-position-x: 25%; }
.logo-card-3, .logo-card-8, .logo-card-13, .logo-card-18, .logo-card-23, .logo-card-28 { background-position-x: 50%; }
.logo-card-4, .logo-card-9, .logo-card-14, .logo-card-19, .logo-card-24, .logo-card-29 { background-position-x: 75%; }
.logo-card-5, .logo-card-10, .logo-card-15, .logo-card-20, .logo-card-25, .logo-card-30 { background-position-x: 100%; }

/* Row positions for 6-row sprite sheet */
.logo-card-1, .logo-card-2, .logo-card-3, .logo-card-4, .logo-card-5 { background-position-y: 0%; }
.logo-card-6, .logo-card-7, .logo-card-8, .logo-card-9, .logo-card-10 { background-position-y: 20%; }
.logo-card-11, .logo-card-12, .logo-card-13, .logo-card-14, .logo-card-15 { background-position-y: 40%; }
.logo-card-16, .logo-card-17, .logo-card-18, .logo-card-19, .logo-card-20 { background-position-y: 60%; }
.logo-card-21, .logo-card-22, .logo-card-23, .logo-card-24, .logo-card-25 { background-position-y: 80%; }
.logo-card-26, .logo-card-27, .logo-card-28, .logo-card-29, .logo-card-30 { background-position-y: 100%; }


/* Responsiveness for Clients Section */
@media (max-width: 1024px) {
    .clients-container {
        flex-direction: column;
        gap: 20px;
    }
    .clients-left-panel {
        flex: 1;
        min-height: auto;
        padding: 30px 30px 60px 30px;
    }
    .clients-left-panel .impact {
        position: static;
        margin-top: 30px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SR-Only accessibility class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Facts Card Styling */
.facts-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.facts-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.facts-card-image {
    flex: 0 0 55%;
    width: 100%;
    background-image: url('facts-about-us.png');
    background-size: cover;
    background-position: top center;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.horizontal-dot-line {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 25%;
    height: 1px;
    background-color: rgba(255,255,255,0.2);
}

.horizontal-dot-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2.5px;
    width: 6px;
    height: 6px;
    background-color: var(--red-accent);
    border-radius: 50%;
}

.facts-card-content {
    flex: 1;
    width: 100%;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    color: #000;
}

.facts-card-content h3 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 8px;
    margin-top: 5px;
}

.facts-divider {
    width: 30px;
    height: 2px;
    background-color: var(--red-accent);
    margin: 0 auto;
}

.facts-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.read-more {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
}

.read-more .arrow {
    color: var(--red-accent);
    font-size: 18px;
    font-weight: 300;
}

.dots-pattern {
    position: absolute;
    right: 30px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, #ccc 1px, transparent 1px);
    background-size: 10px 10px;
}

.vertical-dot-line {
    position: absolute;
    right: 50%;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(204, 0, 0, 0.2);
}

.vertical-dot-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    width: 5px;
    height: 5px;
    background-color: var(--red-accent);
    border-radius: 50%;
}

/* ==========================================================================
   Facts About Us Modal
   ========================================================================== */
.facts-modal-overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
    z-index: 200;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s ease;
}
.facts-modal-overlay.active { opacity: 1; pointer-events: all; }

.facts-modal-container {
    position: relative;
    width: 93vw; max-width: 1140px;
    height: 80vh; max-height: 660px;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    transform: scale(0.94) translateY(18px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.45s ease;
}
.facts-modal-overlay.active .facts-modal-container {
    transform: scale(1) translateY(0); opacity: 1;
}

/* Background image — crisp, full bleed */
.facts-bg-layer {
    position: absolute; inset: 0; z-index: 0;
    background: url('images/facts-bg-v2.png') center bottom / cover no-repeat;
}

.facts-content-wrapper {
    position: relative; z-index: 1;
    display: flex; width: 100%; height: 100%;
}

/* ── LEFT PANEL ── */
.facts-left-col {
    width: 36%;
    display: flex; flex-direction: column; justify-content: center;
    padding: 6% 4% 6% 10%;
    box-sizing: border-box; gap: 18px;
}
.facts-main-title {
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    font-weight: 900; line-height: 1.0;
    color: #fff; text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
    margin: 0;
}
.facts-title-accent { color: #cc0000; }
.facts-title-bar {
    width: 44px; height: 3px;
    background: linear-gradient(90deg, #cc0000, #ff5555);
    border-radius: 2px;
}
.facts-left-stats { display: flex; flex-direction: column; gap: 10px; }
.facts-left-stat {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: rgba(255,255,255,0.88);
    font-weight: 400; margin: 0; line-height: 1.5;
}
.facts-left-stat .animate-num {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 900; color: #ffffff;
    display: inline-block; line-height: 1;
}
.facts-red-line {
    color: #ffffff !important;
    font-weight: 700;
    font-style: italic;
}

/* ── RIGHT PANEL ── */
.facts-right-col {
    width: 64%;
    display: flex; flex-direction: column; justify-content: center;
    padding: 2% 5% 2% 3%;
    box-sizing: border-box; gap: 0;
}

.facts-row {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 8px 0;
}
.facts-row-divider {
    height: 1px; background: rgba(0,0,0,0.08);
    margin: 0;
}

/* Icon circles — red gradient, crisp SVG */
.facts-icon-circle {
    width: 44px; height: 44px; flex-shrink: 0;
    background: radial-gradient(circle at 35% 35%, #e60000, #900000);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.9);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15), 0 0 0 1px #cc0000;
    display: flex; align-items: center; justify-content: center;
}
.facts-icon-circle svg {
    width: 20px; height: 20px;
    color: #ffffff; stroke: #ffffff;
}

.facts-row-content { flex: 1; }

/* Row 1 bullet list */
.facts-bullet-list { list-style: none; padding: 0; margin: 0; }
.facts-bullet-list li {
    position: relative; padding-left: 14px;
    font-size: clamp(0.72rem, 0.9vw, 0.84rem);
    color: #1a1a1a; line-height: 1.4; margin-bottom: 3px; font-weight: 500;
}
.facts-bullet-list li:last-child { margin-bottom: 0; }
.facts-bullet-list li::before {
    content: "•"; color: #cc0000;
    position: absolute; left: 0; top: 0;
}
.facts-bullet-list li strong { color: #cc0000; font-weight: 700; }

/* Row headings */
.facts-row-heading {
    font-size: clamp(0.78rem, 0.95vw, 0.88rem);
    font-weight: 600; color: #111; margin: 0 0 6px; text-transform: none;
}
.facts-red-text { color: #cc0000; font-weight: 700; }

/* Two-column lists */
.facts-two-col {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3px 20px;
}
.facts-dash-list, .facts-check-list {
    list-style: none; padding: 0; margin: 0;
}
.facts-dash-list li, .facts-check-list li {
    font-size: clamp(0.68rem, 0.85vw, 0.78rem);
    color: #222; line-height: 1.35; margin-bottom: 1px;
    padding-left: 12px; position: relative;
}
.facts-dash-list li::before { content: "-"; position: absolute; left: 0; color: #555; }
.facts-check-list li::before { content: "✓"; position: absolute; left: 0; color: #cc0000; font-weight: 700; font-size: 0.7rem; top: 1px; }

/* Close button */
.close-facts-btn {
    position: absolute; top: 13px; right: 13px; z-index: 20;
    background: rgba(255,255,255,0.92); border: none;
    width: 32px; height: 32px; border-radius: 50%;
    font-size: 18px; color: #333; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: all 0.25s ease;
}
.close-facts-btn:hover {
    background: #cc0000; color: #fff;
    transform: rotate(90deg);
}

/* ── MOBILE: Facts About Us — full redesign ── */
@media (max-width: 768px) {
    .facts-modal-container {
        width: 94vw;
        height: auto;
        max-height: 92vh;
        overflow-y: auto;
        border-radius: 16px;
        flex-direction: column;
    }

    .facts-content-wrapper {
        flex-direction: column;
        height: auto;
    }

    /* Hide desktop background image */
    .facts-bg-layer { display: none; }

    /* LEFT COL: dark red gradient, stats as big hero cards */
    .facts-left-col {
        width: 100%;
        padding: 28px 20px 20px;
        background: linear-gradient(160deg, #0a0a0a 0%, #1c0303 60%, #2a0505 100%);
        gap: 20px;
        align-items: flex-start;
    }

    .facts-main-title {
        font-size: 2.4rem !important;
        letter-spacing: -1px;
    }

    /* Stat cards row */
    .facts-left-stats {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        width: 100%;
    }

    /* Each stat becomes a glowing card */
    .facts-left-stat {
        flex: 1 1 calc(50% - 6px);
        min-width: 130px;
        background: rgba(204, 0, 0, 0.12);
        border: 1px solid rgba(204, 0, 0, 0.35);
        border-radius: 12px;
        padding: 14px 12px;
        text-align: center;
        font-size: 0.78rem !important;
        color: rgba(255,255,255,0.75) !important;
        line-height: 1.4;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    /* "Driven by impact" spans full width */
    .facts-left-stat.facts-red-line {
        flex: 1 1 100%;
        background: rgba(204, 0, 0, 0.2);
        border-color: rgba(204, 0, 0, 0.6);
        font-size: 1rem !important;
        padding: 10px 12px;
        letter-spacing: 0.5px;
        color: #ffffff !important;
    }

    /* BIG animated numbers */
    .facts-left-stat .animate-num {
        font-size: 3.6rem !important;
        font-weight: 900 !important;
        color: #ffffff !important;
        line-height: 1 !important;
        display: block;
        text-shadow: 0 0 30px rgba(255, 60, 60, 0.7),
                     0 0 60px rgba(200, 0, 0, 0.4);
        letter-spacing: -2px;
    }

    /* RIGHT COL: white background, readable text */
    .facts-right-col {
        width: 100%;
        padding: 20px;
        background: #ffffff;
    }

    .facts-two-col { grid-template-columns: 1fr; }

    .facts-icon-circle {
        width: 36px;
        height: 36px;
    }

    .facts-icon-circle svg {
        width: 16px;
        height: 16px;
    }

    .facts-row {
        gap: 10px;
        padding: 6px 0;
    }

    .close-facts-btn {
        width: 38px;
        height: 38px;
        font-size: 20px;
        top: 10px;
        right: 10px;
    }
}

/* ==========================================================================
   Quiz Modal Styles
   ========================================================================== */

.quiz-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.quiz-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.quiz-modal-container {
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    max-height: 800px;
    background-color: #050505;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid #1a1a1a;
}

.close-quiz-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    z-index: 20;
    transition: color 0.3s, transform 0.3s;
}

.close-quiz-btn:hover {
    color: #cc0000;
    transform: rotate(90deg);
}

.quiz-two-column {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

/* Quiz Left Panel */
.quiz-left-panel {
    flex: 0 0 450px;
    background: linear-gradient(135deg, #0a0a0a, #1a0000);
    position: relative;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #1a1a1a;
}

.quiz-left-panel::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 150px;
    background: radial-gradient(ellipse at right, rgba(204,0,0,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.quiz-left-content {
    position: relative;
    z-index: 2;
}

.quiz-left-content h2 {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.quiz-left-content h2 .red-text {
    font-weight: 800;
}

.quiz-left-footer p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

/* Quiz Right Panel */
.quiz-right-panel {
    flex: 1;
    background-color: #050505;
    padding: 60px 80px;
    overflow-y: auto;
    position: relative;
}

.quiz-step {
    font-size: 11px;
    color: #cc0000;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-line {
    height: 2px;
    width: 200px;
    background: #cc0000;
    opacity: 0.3;
}

/* Form Styles */
.quiz-group {
    margin-bottom: 35px;
}

.quiz-group label {
    display: block;
    font-size: 13px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.label-sub {
    font-size: 11px;
    color: #666;
    font-weight: 400;
}

.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper select {
    appearance: none;
    width: 100%;
    background-color: #0a0a0a;
    border: 1px solid #222;
    color: #ccc;
    padding: 16px 20px;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: var(--font-primary);
}

.custom-select-wrapper select:focus {
    border-color: #cc0000;
    box-shadow: 0 0 0 2px rgba(204,0,0,0.2);
}

.custom-select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #cc0000;
    font-size: 10px;
    pointer-events: none;
}

.quiz-submit-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.quiz-submit-btn {
    background-color: #cc0000;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s, transform 0.2s;
}

.quiz-submit-btn:hover {
    background-color: #ff1a1a;
    transform: translateY(-2px);
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
    font-size: 11px;
    text-align: center;
    line-height: 1.4;
}

.privacy-text strong {
    display: block;
    color: #888;
    margin-bottom: 2px;
}

/* Result Panel */
.quiz-right-panel.result-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 0 16px 16px 0;
}

.quiz-result-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 900px) {
    .quiz-two-column {
        flex-direction: column;
        overflow-y: auto;
    }
    .quiz-left-panel {
        flex: none;
        padding: 40px;
        border-right: none;
        border-bottom: 1px solid #1a1a1a;
    }
    .quiz-right-panel {
        padding: 40px 20px;
    }
}

/* ==========================================================================
   WHAT WE DO Circular Layout
   ========================================================================== */
.what-we-do {
    display: flex;
    background-color: #000;
    color: #fff;
    min-height: 80vh;
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
    background-image: url('images/what-we-do-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wwd-left {
    flex: 1;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
    max-width: 400px;
}

.wwd-left h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.wwd-left .red-divider {
    width: 60px;
    height: 3px;
    background-color: var(--red-accent);
    margin-bottom: 30px;
    box-shadow: 0 0 10px var(--red-accent);
}

.wwd-left .wwd-desc {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 60px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.wwd-left .wwd-footer {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
}

.wwd-right {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wwd-circle-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 100px;
}

.wwd-arrows {
    position: absolute;
    width: 500px;
    height: 500px;
    z-index: 0;
}

.wwd-path {
    stroke-dasharray: 4, 8;
    animation: flowArrows 1s linear infinite;
    filter: drop-shadow(0 0 5px #ff0000);
}

@keyframes flowArrows {
    to { stroke-dashoffset: -20; }
}

.wwd-node {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2;
    transform: rotate(var(--angle)) translateX(220px) rotate(calc(-1 * var(--angle)));
    animation: pulseNode 3s infinite alternate ease-in-out;
}

.wwd-node:nth-child(2) { animation-delay: 0.2s; }
.wwd-node:nth-child(3) { animation-delay: 0.4s; }
.wwd-node:nth-child(4) { animation-delay: 0.6s; }
.wwd-node:nth-child(5) { animation-delay: 0.8s; }
.wwd-node:nth-child(6) { animation-delay: 1.0s; }
.wwd-node:nth-child(7) { animation-delay: 1.2s; }
.wwd-node:nth-child(8) { animation-delay: 1.4s; }

@keyframes pulseNode {
    0% { transform: rotate(var(--angle)) translateX(220px) rotate(calc(-1 * var(--angle))) scale(1); }
    100% { transform: rotate(var(--angle)) translateX(220px) rotate(calc(-1 * var(--angle))) scale(1.05); }
}

.node-text {
    font-size: 9px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.5px;
    padding: 10px;
}

/* Red nodes */
.node-red {
    border-color: #ff0000;
    color: #ccc;
}

.node-red .node-text .red-text,
.node-white .node-text .red-text {
    color: #ff0000;
    font-weight: bold;
}

.node-red:hover {
    border-color: #ffffff;
    color: #000;
    background-color: #fff;
    transform: rotate(var(--angle)) translateX(220px) rotate(calc(-1 * var(--angle))) scale(1.15);
    animation: none;
}

.node-red:hover .red-text { color: #000; }

/* White nodes */
.node-white {
    border-color: #ffffff;
    color: #ccc;
}

.node-white:hover {
    border-color: #ff0000;
    color: #000;
    background-color: #ff0000;
    transform: rotate(var(--angle)) translateX(220px) rotate(calc(-1 * var(--angle))) scale(1.15);
    animation: none;
}

.node-white:hover .red-text { color: #fff; }

/* ======================================================
   Main Footer
   ====================================================== */
.main-footer {
    background: #070707;
    padding: 80px 40px 40px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.footer-info-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-info-block {
    flex: 1 1 280px;
}

.footer-logo img {
    height: 30px;
    width: auto;
    display: block;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 20px;
    line-height: 1.6;
    max-width: 260px;
}

.footer-info-block h3 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.3);
}

.contact-val {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-val:hover {
    color: #cc0000;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.social-icon-btn svg {
    transition: transform 0.3s ease;
}

.social-icon-btn:hover {
    background: #cc0000;
    border-color: #cc0000;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.3);
}

.social-icon-btn:hover svg {
    transform: scale(1.1);
}

.footer-bottom-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    width: 100%;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #cc0000;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #cc0000;
    padding-left: 6px;
}

/* Footer responsiveness */
@media (max-width: 768px) {
    .main-footer {
        padding: 40px 20px 30px 20px;
    }
    
    .footer-container {
        gap: 30px;
    }
    
    .footer-info-row {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-info-block {
        flex: 1 1 auto;
    }
    
    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* ======================================================
   Contact Page Layout & Section
   ====================================================== */
.contact-page-body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.contact-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 100px; /* space for header */
    background-image: url('images/contact-bg.jpg');
    background-size: cover;
    background-position: 90% center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-container {
    max-width: 1400px;
    width: 100%;
    margin: 40px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    justify-content: space-between;
    align-items: flex-start;
}

/* Left Info Column */
.contact-left-col {
    flex: 1 1 50%;
    max-width: 600px;
}

.subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.red-line-short {
    width: 20px;
    height: 2px;
    background-color: #cc0000;
}

.subtitle {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
}

.contact-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 30px;
    color: #ffffff;
}

.red-highlight {
    color: #cc0000;
}

.contact-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
}

.office-divider-row, .social-divider-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.office-title, .social-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #cc0000;
    white-space: nowrap;
}

.red-line-long {
    height: 1px;
    background-color: rgba(204, 0, 0, 0.25);
    flex: 1;
}

.info-blocks-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    padding: 30px 25px 30px 25px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 45%, transparent 85%);
    border-radius: 4px;
}

/* Vertical Left Line (Y-axis) fading upwards */
.info-blocks-list::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3px;
    height: 75%; /* Fades out before reaching the top of the box */
    background: linear-gradient(to top, #cc0000 20%, rgba(204, 0, 0, 0.6) 50%, transparent 100%);
    pointer-events: none;
}

/* Horizontal Bottom Line (X-axis) fading rightwards */
.info-blocks-list::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 80%; /* Fades out before reaching the right edge of the box */
    background: linear-gradient(to right, #cc0000 20%, rgba(204, 0, 0, 0.6) 50%, transparent 100%);
    pointer-events: none;
}

.info-item-block {
    display: flex;
    align-items: center;
    gap: 24px;
}

.info-item-block .icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.info-item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #cc0000;
}

.info-val {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

a.info-val:hover {
    color: #cc0000;
}

.sub-val {
    color: #cc0000;
    font-size: 14px;
}

.contact-social-icons {
    display: flex;
    gap: 15px;
}

.social-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-circle:hover {
    background-color: #cc0000;
    border-color: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.3);
}

/* Right Form Column */
.contact-right-col {
    flex: 1 1 50%;
    max-width: 500px;
    width: 100%;
}

.contact-card-form {
    background: rgba(10, 10, 10, 0.95);
    border: 2px solid #cc0000;
    box-shadow: 0 0 30px rgba(204, 0, 0, 0.2);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 5px;
}

.form-title .red-text {
    color: #cc0000;
}

.contact-reason-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.reason-options-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
}

.reason-option-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.reason-option-card:hover {
    border-color: rgba(204, 0, 0, 0.5);
    background: rgba(204, 0, 0, 0.02);
}

.reason-option-card input[type="radio"] {
    display: none;
}

.custom-radio-check {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.reason-option-card input[type="radio"]:checked + .custom-radio-check {
    border-color: #cc0000;
    background-color: #cc0000;
}

.reason-option-card input[type="radio"]:checked + .custom-radio-check::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
}

.option-icon {
    color: #cc0000;
}

.option-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.input-with-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 20px;
    color: #cc0000;
    pointer-events: none;
}

.input-with-icon-wrapper input {
    width: 100%;
    padding: 16px 20px 16px 54px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-with-icon-wrapper input:focus {
    outline: none;
    border-color: #cc0000;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(204, 0, 0, 0.2);
}

.input-with-icon-wrapper textarea {
    width: 100%;
    padding: 16px 20px 16px 54px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    resize: none;
    transition: all 0.3s ease;
}

.input-with-icon-wrapper textarea:focus {
    outline: none;
    border-color: #cc0000;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(204, 0, 0, 0.2);
}

.textarea-icon {
    top: 18px;
}

.privacy-consent-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-top: 5px;
}

.privacy-consent-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox-box {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.privacy-consent-checkbox input[type="checkbox"]:checked + .custom-checkbox-box {
    border-color: #cc0000;
    background-color: #cc0000;
}

.privacy-consent-checkbox input[type="checkbox"]:checked + .custom-checkbox-box::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
}

.checkbox-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.privacy-red-link {
    color: #cc0000;
    text-decoration: none;
}

.privacy-red-link:hover {
    text-decoration: underline;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #b30000, #ff1a1a);
    border: none;
    border-radius: 6px;
    padding: 18px;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4);
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #cc0000, #ff3333);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.6);
}

.submit-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

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

.trusted-site-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 5px;
}

.trusted-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.02);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trusted-text {
    font-size: 11px;
    color: #888888;
    font-family: Arial, sans-serif;
}

.trusted-text .check-bold {
    color: #8bc34a;
    font-weight: bold;
}

.trusted-text .site-bold {
    color: #ffffff;
    font-weight: bold;
}

/* Bottom Features Row */
.contact-features-row {
    max-width: 1400px;
    width: 100%;
    margin: 60px auto 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.feature-icon {
    color: #cc0000;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.feature-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    max-width: 320px;
}

.feature-item-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.08);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        gap: 60px;
        padding: 0 20px;
    }
    
    .contact-left-col {
        flex: 1 1 auto;
        max-width: 100%;
    }
    
    .contact-right-col {
        flex: 1 1 auto;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-features-row {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }
    
    .feature-item-divider {
        display: none;
    }
}

/* ============================================================
   HAMBURGER vs DESKTOP NAV — show/hide
   ============================================================ */

/* Desktop: hide hamburger, show nav */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
    .desktop-nav {
        display: flex;
    }
}

/* Mobile: hide desktop nav, show hamburger */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        overflow: hidden !important;
    }
    .hamburger {
        display: flex !important;
        visibility: visible !important;
    }
    .header {
        padding: 15px 20px;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        grid-template-columns: none !important;
    }
    /* Prevent any horizontal overflow from nav */
    body {
        overflow-x: hidden;
    }
}

/* ============================================================
   HERO — Mobile
   ============================================================ */
@media (max-width: 768px) {
    .hero {
        height: 55vh;
    }
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 24px;
    }
    .hero-slide {
        padding: 0 6%;
    }
    .hero-controls {
        bottom: 20px;
    }
    .cta-link {
        font-size: 12px;
    }
    .glowing-red-dot {
        width: 8px !important;
        height: 8px !important;
    }
}

/* ============================================================
   BRANDS MARQUEE — Mobile
   ============================================================ */
@media (max-width: 768px) {
    .marquee-content .brand-logo {
        width: 70px;
        height: 36px;
    }
    .marquee-content .brand-logo[src*="philip_morris"] {
        width: 100px;
    }
    .marquee-content > * {
        margin-right: 30px;
    }
}

/* ============================================================
   EXPERTISE SECTION — Mobile
   ============================================================ */
@media (max-width: 768px) {
    .expertise {
        padding: 40px 0 40px 20px;
        overflow: hidden;
    }
    .expertise h2 {
        padding-right: 20px;
    }
    .expertise-slider-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-right: 20px;
        padding-bottom: 10px;
    }
    .expertise-slider {
        width: max-content;
    }
    .expertise-card {
        width: calc(80vw - 20px);
        max-width: 280px;
        min-width: 200px;
        padding: 24px;
        flex-shrink: 0;
    }
}

/* ============================================================
   FEATURED PROJECT — Mobile
   ============================================================ */
@media (max-width: 768px) {
    .featured-project {
        padding: 0 20px 60px 20px;
    }
    .project-split {
        flex-direction: column !important;
        height: auto !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    .project-slider {
        flex: none;
        height: 260px;
        width: 100%;
    }
    .project-caption-wrapper {
        flex: none;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        height: 230px;
        width: 100%;
    }
    .project-caption {
        padding: 24px 20px;
    }
    .project-caption h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .project-desc {
        margin-bottom: 20px;
    }
    .slider-pagination {
        left: 20px;
        bottom: 12px;
    }
    .project-cta {
        flex: none;
        width: 100%;
        padding: 36px 24px;
    }
    .project-cta h2 {
        font-size: 20px;
        margin-bottom: 28px;
    }
    .slider-controls {
        bottom: 12px;
        right: 12px;
    }
    .slider-arrow {
        width: 36px;
        height: 36px;
    }
}

/* ============================================================
   FOOTER BLOCKS — Mobile
   ============================================================ */
@media (max-width: 768px) {
    .footer-blocks {
        flex-direction: column;
        padding: 0 20px 50px 20px;
        gap: 15px;
    }
    .footer-card {
        flex: none;
        width: 100%;
    }
}

/* ============================================================
   OUR CLIENTS OVERLAY — Mobile
   ============================================================ */
@media (max-width: 768px) {
    .our-clients-section {
        padding: 60px 16px 40px 16px;
        align-items: flex-start;
        overflow-y: auto;
    }
    .clients-container {
        flex-direction: column;
        gap: 24px;
    }
    .clients-left-panel {
        flex: none;
        width: 100%;
        min-height: auto;
        padding: 24px 16px 50px 16px;
    }
    .clients-text-content h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }
    .clients-left-panel .impact {
        position: static;
        margin-top: 20px;
        left: auto;
    }
    .clients-right-panel {
        width: 100%;
        padding: 0;
    }
    .close-overlay {
        top: 12px;
        right: 16px;
        font-size: 30px;
    }
}

/* ============================================================
   QUIZ MODAL — Mobile
   ============================================================ */
@media (max-width: 768px) {
    .quiz-modal-container {
        width: 96%;
        height: 92vh;
        max-height: none;
        border-radius: 12px;
    }
    .quiz-left-panel {
        flex: none;
        padding: 28px 20px;
        border-right: none;
        border-bottom: 1px solid #1a1a1a;
    }
    .quiz-left-content h2 {
        font-size: 32px;
    }
    .quiz-right-panel {
        padding: 28px 16px;
    }
    .quiz-submit-container {
        margin-top: 30px;
    }
    .step-line {
        width: 80px;
    }
}

/* ============================================================
   CONTACT PAGE — Mobile
   ============================================================ */
@media (max-width: 768px) {
    .contact-section {
        background-position: 80% center;
        padding-top: 80px;
    }
    .contact-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 16px;
        margin: 30px auto;
    }
    .contact-left-col {
        flex: none;
        max-width: 100%;
    }
    .contact-title {
        font-size: 36px;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }
    .contact-right-col {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
    .contact-card-form {
        padding: 28px 20px;
    }
    .contact-features-row {
        flex-direction: column;
        gap: 30px;
        padding: 40px 16px;
    }
    .feature-item-divider {
        display: none;
    }
    .info-blocks-list {
        padding: 20px 15px 20px 20px;
    }
    .info-item-block {
        gap: 16px;
    }
    .info-item-block .icon-circle {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }
    .info-item-text {
        min-width: 0;
    }
    .info-val {
        font-size: 14px;
        word-break: break-word;
    }
}

/* ============================================================
   FACTS MODAL — extra mobile tweaks
   ============================================================ */
@media (max-width: 480px) {
    .facts-modal-container {
        width: 98vw;
        max-height: 92vh;
        border-radius: 10px;
    }
    .facts-left-col {
        padding: 24px 16px;
    }
    .facts-right-col {
        padding: 16px;
    }
    .facts-two-col {
        grid-template-columns: 1fr;
    }
    .facts-row {
        gap: 10px;
    }
}

/* ============================================================
   TOUCH-FRIENDLY TAP TARGETS — Mobile
   ============================================================ */
@media (max-width: 768px) {
    /* Hero dots: visually smaller but maintained touch gap */
    .hero-dot {
        width: 14px;
        height: 14px;
        margin: 0 8px;
    }
    /* Pagination dots: slightly larger for touch */
    .dot {
        width: 12px;
        height: 12px;
    }
    /* Hamburger larger hit area */
    .hamburger {
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }
    /* Nav links in overlay: taller tap area */
    .menu-content a {
        padding: 10px 20px;
        font-size: 20px;
    }
    /* Expertise cards swipe hint */
    .expertise-slider-container {
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    .expertise-slider a {
        scroll-snap-align: start;
    }
    /* Close buttons */
    .close-overlay,
    .close-facts-btn,
    .close-quiz-btn {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* Social icon buttons */
    .social-icon-btn,
    .social-icon-circle {
        width: 48px;
        height: 48px;
    }
    /* Form inputs on mobile — prevent zoom on iOS */
    .custom-select-wrapper select,
    .input-with-icon-wrapper input,
    .input-with-icon-wrapper textarea {
        font-size: 16px;
    }
    /* Submit buttons */
    .contact-submit-btn,
    .quiz-submit-btn {
        padding: 18px 24px;
        font-size: 14px;
    }
}

/* ============================================================
   WHAT WE DO / HOW WE DO IT — extra small mobile
   ============================================================ */
@media (max-width: 480px) {
    .wwd-left, .hwdi-left {
        padding: 0 16px 30px 16px;
    }
    .wwd-left h1, .hwdi-left h1 {
        font-size: 42px;
    }
    .wwd-right, .hwdi-right {
        padding: 10px;
    }
    .wwd-svg, .hwdi-svg {
        max-width: 100%;
    }
}

/* ============================================================
   SUBPAGES (brand-activation etc.) — Mobile
   ============================================================ */
@media (max-width: 768px) {
    /* Allow scrolling on subpages */
    html, body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        height: auto !important;
    }
    .subpage-wrap {
        position: relative !important;
        height: auto !important;
        min-height: calc(100vh - 72px) !important;
        padding: 72px 0 20px 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .subpage-container {
        position: relative;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        aspect-ratio: unset !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    /* Hide the desktop mockup background image on mobile */
    .subpage-container > img:first-child {
        display: none !important;
    }
    /* Make slideshow box full-width on mobile */
    .subpage-slideshow-box {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        height: 60vw !important;
        min-height: 240px !important;
        border-radius: 8px !important;
    }
    /* Back button on mobile */
    .back-btn {
        top: 78px;
        left: 12px;
        font-size: 9px;
        padding: 8px 12px;
    }
}

/* ============================================================
   MEET RED — extra small mobile
   ============================================================ */
@media (max-width: 480px) {
    .mr-left-col {
        padding: 30px 16px !important;
    }
    .mr-right-col {
        padding: 24px 16px !important;
    }
}

/* Hero Slide Glowing Red Dot Overlay */
.banner-image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1983 / 793;
    pointer-events: none;
    z-index: 5;
}

@media (min-aspect-ratio: 1983/793) {
    .banner-image-overlay {
        height: 100%;
        width: auto;
    }
}

@media (max-aspect-ratio: 1983/793) {
    .banner-image-overlay {
        width: 100%;
        height: auto;
    }
}

.glowing-red-dot {
    position: absolute;
    left: 43.45%;
    top: 40.2%;
    width: 0.8%;
    aspect-ratio: 1/1;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #ff3333 30%, #b30000 75%, #550000 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.8), inset -1px -1px 3px rgba(0,0,0,0.8), inset 1.5px 1.5px 3px rgba(255,255,255,0.7);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 1;
    z-index: 5;
}

/* Hover effect on slide banner hover */
.hero-slide:hover .glowing-red-dot {
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #ff5555 25%, #ff0000 65%, #800000 100%);
    width: 1.2%;
    box-shadow: 0 0 25px #ff0000, 0 0 50px #ff0000, 0 0 75px rgba(255, 0, 0, 0.7), inset -1.5px -1.5px 4px rgba(0,0,0,0.8), inset 2px 2px 4px rgba(255,255,255,0.9);
    animation: banner-dot-pulse 1.2s infinite alternate ease-in-out;
}

@keyframes banner-dot-pulse {
    0% {
        box-shadow: 0 0 20px #ff0000, 0 0 40px rgba(255,0,0,0.8), inset -1.5px -1.5px 4px rgba(0,0,0,0.8), inset 2px 2px 4px rgba(255,255,255,0.9);
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        box-shadow: 0 0 35px #ff0000, 0 0 65px #ff0000, 0 0 90px rgba(255,0,0,0.9), inset -1.5px -1.5px 4px rgba(0,0,0,0.8), inset 2px 2px 4px rgba(255,255,255,0.9);
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* Mobile Info Panel for subpages */
.mobile-info-panel {
    display: none;
}

@media (max-width: 768px) {
    .mobile-info-panel {
        display: block;
        width: 100%;
        padding: 30px 20px 15px 20px;
        text-align: center;
        background-color: #000000;
        z-index: 1;
    }
    .mobile-info-panel h1 {
        font-size: 24px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -0.5px;
        line-height: 1.2;
        margin-bottom: 12px;
        color: #ffffff;
    }
    .mobile-info-panel h1 span.red-text {
        color: #cc0000;
    }
    .mobile-info-panel p {
        font-size: 14px;
        color: #888888;
        line-height: 1.6;
        max-width: 500px;
        margin: 0 auto;
    }
}



/* Mobile specific dot position for the new mobile slide 1 */
@media (max-width: 768px) {
    .hero {
        height: 100vh !important;
    }
    .banner-image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: none;
        aspect-ratio: auto;
    }
    .glowing-red-dot {
        left: 30.5% !important;
        top: 26% !important;
        width: 10px !important;
        height: 10px !important;
    }
}


/* Mobile specific overrides requested by user for alignment, text readability, dot position, and contact bg */
@media (max-width: 768px) {
    /* Center align Clients & Portfolio text */
    .clients-left-panel {
        text-align: center !important;
        align-items: center !important;
        display: flex;
        flex-direction: column;
    }
    
    /* Make Slide 2 text readable and center aligned */
    .hero-content {
        text-align: center !important;
        align-items: center !important;
        display: flex;
        flex-direction: column;
    }
    .hero-content h1 {
        text-align: center !important;
        text-shadow: 0px 4px 25px rgba(0,0,0,0.9), 0px 2px 10px rgba(0,0,0,0.7) !important;
    }
    .hero-content .cta-link {
        margin: 0 auto !important;
        text-shadow: 0px 2px 10px rgba(0,0,0,0.9), 0px 4px 15px rgba(0,0,0,0.8) !important;
    }

    /* Move glowing red dot up */
    .glowing-red-dot {
        top: 21.5% !important;
    }

    /* Update contact page background for mobile */
    .contact-section {
        background-image: url('images/mobile-contact-bg.png') !important;
    }
}


/* ========================================= */
/* MOBILE SLIDE 1 CRISP HTML TEXT OVERLAY    */
/* ========================================= */

.mobile-only { display: none !important; }
.desktop-only { display: block; }

@media (max-width: 768px) {
    .mobile-only { display: flex !important; }
    .desktop-only { display: none !important; }

    /* Update Slide 1 background image to the clean version */
    .slide-1-bg {
        background-image: url('images/mobile-slide-1-clean.png') !important;
    }

    .mobile-slide-1-text {
        position: absolute;
        top: 25%;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        z-index: 10;
        padding: 0 10px;
    }
    
    .m-logo-line {
        font-size: 3rem;
        font-weight: 800;
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 0px;
        line-height: 1;
    }
    .m-red {
        color: #ff3333;
        letter-spacing: -2px;
    }
    .m-white {
        color: #ffffff;
        font-weight: 500;
        font-size: 1.4rem;
        letter-spacing: 0.5px;
        margin-left: 10px;
        text-transform: uppercase;
    }
    .m-red-dot {
        color: #ff3333;
    }
    .m-relative-e {
        position: relative;
        display: inline-block;
    }
    /* PERFECT RED DOT: Above the e with a small gap */
    .m-white-logo {
        color: #ffffff;
        letter-spacing: -2px;
    }
    
    /* Exact copy of desktop .glowing-red-dot, mobile-optimised */
    .m-glowing-dot {
        position: absolute;
        top: -10px;
        left: 50%;
        width: 9px;
        height: 9px;
        background: radial-gradient(circle at 30% 30%, #ffffff 0%, #ff3333 30%, #b30000 75%, #550000 100%);
        border-radius: 50%;
        transform: translateX(-50%);
        pointer-events: none;
        box-shadow: 0 0 12px rgba(255, 0, 0, 0.8), inset -1px -1px 3px rgba(0,0,0,0.8), inset 1.5px 1.5px 3px rgba(255,255,255,0.7);
        animation: banner-dot-pulse 1.2s infinite alternate ease-in-out;
        z-index: 10;
    }
    
    .m-sub-line {
        margin-top: 15px;
        font-size: 0.75rem;
        color: #d1d1d1;
        letter-spacing: 1.5px;
        font-weight: 400;
        text-transform: uppercase;
    }
    .m-pipe {
        color: #ff3333;
        margin: 0 5px;
        font-weight: 700;
    }
}

    /* Contact page mobile text shadow */
    .contact-left-col {
        text-shadow: 0px 2px 10px rgba(0,0,0,0.8), 0px 4px 15px rgba(0,0,0,0.6) !important;
    }



