/*
Theme Name: My Custom Theme
Description: Custom WordPress theme for Adswith Mubin
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;300;400;500;600;700;800;900&display=swap');

:root {
    /* Brand Colors */
    --primary-red: #C9102A;
    --light-red: #F63450;
    --dark-red: #740010;
    --black: #000000;
    --white: #FFFFFF;
    --grey: #A2A2A2;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Dubai', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
p {
color: #A2A2A2;}
/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.4;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--black);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Reusable Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- PILL-SHAPED HARD SHADOW BUTTON --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Space between text and arrow */
    background: #fff;
    color: #C9102A;
        border: 1px solid #eaeaea;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700; /* Bold text */
    text-transform: uppercase; /* ALL CAPS like the image */
    padding: 12px 32px;
    border-radius: 50px; /* Gives it the fully rounded pill shape */
   
    
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

/* Automatically adds the arrow icon without changing your HTML */
.btn-primary::after {
    content: "\2192"; /* Unicode for a clean right arrow (→) */
    font-size: 1.4rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

/* The Hover Effect: Makes it look like you are physically pressing the button */
.btn-primary:hover {
   background: #C9102A; color: #fff; 
   
}

/* Nudges the arrow slightly to the right on hover */
.btn-primary:hover::after {
    transform: translateX(5px);
}

/* --- SITE HEADER & NAVIGATION --- */
.site-header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #eaeaea;
    transition: box-shadow 0.3s ease;
}

/* Adds a subtle shadow when scrolling */
.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

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

/* New rule for your specific logo */
.main-logo {
    max-height: 55px; /* Much larger than the old 40px limit */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.02); /* A tiny, premium pop when they hover over the logo */
}

/* Wrapper to hold links and icons together */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 40px; /* Space between links and social icons */
}

/* --- TEXT LINKS --- */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
}

.nav-links a {
    font-family: var(--font-heading); /* Using Outfit for a sharper look */
    font-size: 0.85rem;
    font-weight: 600;
    color: #2b3a4a; /* Deep blue/grey like the reference image */
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

/* The Animated Red Underline */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-links a:hover::after {
    width: 100%; /* Line slides in on hover */
}

/* --- Header Social Image Icons --- */

.header-socials {
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
}

.header-socials a {
    display: block !important;
    width: 24px !important;
    height: 24px !important;
    transition: transform 0.2s ease-in-out !important;
}

.header-socials img {
    width: 32px !important;
    height: 24px !important;
    display: block !important;
    object-fit: contain !important;
    /* This removes any background/border from your theme */
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.header-socials a:hover {
    transform: scale(1.1);
}



/* Mobile Tweak */
@media (max-width: 768px) {
    .header-socials a, 
    .header-socials a img {
        width: 20px !important;
        height: 20px !important;
    }
}
/* Turns the icons Red and scales them up slightly on hover 
.header-socials a:hover {
    color: var(--primary-red);
    transform: translateY(-2px) scale(1.1);
}
*/
/* --- MOBILE HAMBURGER MENU --- */
.mobile-menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--black);
    position: absolute;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 9px; }
.mobile-menu-toggle span:nth-child(3) { top: 18px; }

/* Hamburger to 'X' animation */
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 9px; }
/* On mobile, we can scale it down slightly so it doesn't crowd the hamburger menu */
@media (max-width: 991px) {
    .main-logo {
        max-height: 50px;
    }
}

/* --- MOBILE RESPONSIVE LOGIC --- */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        top: 80px; /* Sits right below the header */
        left: -100%; /* Hidden off-screen by default */
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: left 0.4s ease;
        gap: 30px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    /* Shows the menu when JS adds the class */
    .nav-wrapper.active {
        left: 0; 
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.2rem; /* Larger text for mobile tapping */
    }

    .header-socials {
        margin-top: 20px;
        justify-content: center;
        width: 100%;
        padding-top: 20px;
        border-top: 1px solid #eaeaea;
    }
}

/* Hero Section */
/* --- HERO LAYOUT --- */
.hero {
    padding: 40px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}
.hero-content h1{
    flex: 1;
    max-width: 600px;
    font-size: 45px;
    color:#000000;
}
.hero-description {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 35px; /* Creates perfect spacing between the text and the button */
    line-height: 1.6;
    max-width: 90%;
}

/* --- TYPING EFFECT CSS --- */
.typing-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    min-height: 60px; /* Prevents the button from jumping up and down */
}

.typing-text {
    font-size: 1.3rem;
    color:#C9102A;
    margin: 0;
}

.cursor {
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: bold;
    margin-left: 2px;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* --- ORBITING ICONS CSS --- */
.hero-visuals {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit-system {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 1px dashed rgba(201, 16, 42, 0.2); /* Subtle dashed ring */
}

.center-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
   
    overflow: hidden;
   /* ADDED: Smooth bottom fade effect */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    z-index: 10;
}

.center-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* The invisible rotating arms */
.satellite {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: spinOrbit 24s linear infinite;
}

/* The visible icons (counter-rotating to stay upright) */
.satellite img {
    position: absolute;
    top: -25px; /* Pushes it to the top edge of the ring */
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 50px;
    background: var(--white);
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    animation: counterSpin 24s linear infinite;
}

/* Spacing them evenly around the circle */
.sat-1 { animation-delay: 0s; }
.sat-1 img { animation-delay: 0s; }

.sat-2 { animation-delay: -6s; }
.sat-2 img { animation-delay: -6s; }

.sat-3 { animation-delay: -12s; }
.sat-3 img { animation-delay: -12s; }

.sat-4 { animation-delay: -18s; }
.sat-4 img { animation-delay: -18s; }

@keyframes spinOrbit {
    100% { transform: rotate(360deg); }
}

@keyframes counterSpin {
    100% { transform: rotate(-360deg); }
}

/* Make it stack nicely on mobile */
@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .typing-wrapper {
        justify-content: center;
    }
    .orbit-system {
        width: 320px;
        height: 320px;
        margin-top: 40px;
    }
    .center-img {
        width: 200px;
        height: 200px;
    }
}

/* --- SERVICES SECTION LAYOUT --- */
.services-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.services-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* --- LEFT SIDE: GRID & CARDS --- */
.services-grid-wrapper {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* The staggering effect for the second column */
.svc-card.staggered {
    transform: translateY(40px);
}

.svc-card {
    background: #C9102A;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    
    position: relative;
    overflow: hidden;
}

/* A subtle red top border that expands on hover */
.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--primary-red);
    transition: width 0.4s ease;
}

.svc-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.svc-card.staggered:hover {
    transform: translateY(35px); /* Keeps staggered alignment while lifting */
}

.svc-card:hover::before {
    width: 100%;
}

.svc-icon {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.svc-icon img {
    width: 40px;
    height: 40px;
   
}



.svc-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.svc-card p {
    font-size: 1rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.6;
}

.read-more {
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
}

.read-more:hover {
    
    letter-spacing: 0.5px;
}

/* --- RIGHT SIDE: TEXT & CTA --- */
.services-text-wrapper {
    flex: 1;
    max-width: 500px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--black);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-label .line {
    width: 40px;
    height: 3px;
    background-color: var(--black);
}

.services-text-wrapper h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--black);
}

.services-text-wrapper p {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 40px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    .services-container {
        flex-direction: column-reverse; /* Puts the text on top of the cards on mobile */
        gap: 80px;
    }

    .services-text-wrapper {
        max-width: 100%;
        text-align: center;
    }

    .section-label {
        justify-content: center;
    }

    .services-grid-wrapper {
        grid-template-columns: 1fr; /* Stacks the cards in a single column */
        gap: 20px;
    }

    .svc-card.staggered {
        transform: translateY(0); /* Removes the stagger on mobile so they stack evenly */
    }
    
    .svc-card.staggered:hover {
        transform: translateY(-5px);
    }
}


/* --- STATS COUNTER SECTION --- */
.stats-section {
    background: black;
    padding: 80px 0;
    position: relative;
    border-top: 4px solid #C9102A;
}

.stats-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-number .plus {
    color: white;
    font-size: 3.5rem;
    margin-left: 2px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #C9102A;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* The vertical red lines separating the stats */
.stat-divider {
    width: 2px;
    height: 60px;
    background-color: white; /* Subdued brand red */
}

/* --- MOBILE RESPONSIVENESS FOR STATS --- */
@media (max-width: 991px) {
    .stats-wrapper {
        flex-wrap: wrap;
        gap: 40px 0;
    }
    
    .stat-item {
        flex: 0 0 50%; /* Makes it a 2x2 grid */
    }

    .stat-divider {
        display: none; /* Hide dividers on mobile for a cleaner look */
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-number .plus {
        font-size: 2.5rem;
    }
}

/* --- ABOUT FOUNDER SECTION: 3-ROW STRUCTURE --- */
.about-founder-section {
    padding: 100px 0;
    background-color: #ffffff;
}

/* Row 1: Heading */
.founder-row-heading {
    margin-bottom: 50px;
    width: 100%;
}

.founder-row-heading h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    max-width: 1100px;
    color: #000;
}

.founder-row-heading h2 span {
    color: #C9102A;
}

/* Row 2: Split Content (Text Left, Image Right) */
.founder-row-content {
    display: flex;
    align-items: flex-start;
    gap: 80px; /* Space between text and image */
    margin-bottom: 80px;
}

.founder-col-text {
    flex: 1; /* Takes left side */
}

.founder-col-visual {
    flex: 0 0 380px; /* Fixed width for image column */
}

.founder-pitch p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

/* Row 3: Horizontal Highlights */
.founder-row-footer {
    width: 100%;
    border-top: 1px solid #eee;
    padding-top: 60px;
}

.founder-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Forces all 4 in one horizontal row */
    gap: 30px;
    margin-bottom: 60px;
}

.highlight-item {
    text-align: center;
}

.highlight-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: #C9102A;
    display: block;
}

.highlight-txt {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.founder-cta-row {
    text-align: left;
}

/* Image Styling */
.image-frame img {
    width: 100%;
    border-radius: 15px;
    border: 5px solid #C9102A;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Responsive Fix for Mobile */
@media (max-width: 991px) {
    .founder-row-content {
        flex-direction: column;
        gap: 40px;
    }
    .founder-col-visual {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .founder-highlights {
        grid-template-columns: repeat(2, 1fr); /* 2x2 on mobile */
    }
    .founder-row-heading h2 { font-size: 2.5rem; }
}
/* --- DUAL-LAYER CTA SECTION --- */
.cta-dual-layer {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0px 0;
}

/* Layer 1: Image Styling */
.layer-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.zoom-target {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3); /* Starts zoomed in */
    transform-origin: center center;
    will-change: transform;
}

/* Layer 2: Video Overlay Styling */
.layer-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    opacity: 0.35; /* THE MAGIC FIX: Makes the video semi-transparent */
    mix-blend-mode: screen; /* Optional: Makes the video highlights blend nicely with the image */
    pointer-events: none; /* Stops the video from blocking clicks */
}

.motion-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Layer 3: Dark Tint */
.layer-tint {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust this to make text more/less readable */
    z-index: 3;
}

/* Layer 4: Foreground Content */
.cta-foreground {
    position: relative;
    z-index: 4;
    text-align: center;
}

.cta-foreground h2 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 40px;
    font-family: var(--font-heading);
    font-weight: 800;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .cta-dual-layer {
        height: 350px;
    }
    .cta-foreground h2 {
        font-size: 3rem;
        margin-bottom: 30px;
    }
}


/* --- BENEFITS SECTION --- */
.benefits-section {
    position: relative;
    padding: 120px 0; /* Added a bit more padding to allow clouds to move */
    background-color: #f4f4f6; /* Slightly darker grey to make the white cards pop more */
    overflow: hidden; 
    z-index: 1;
}

/* --- THE NEW MULTI-LAYERED CLOUDS --- */
.bg-cloud {
    position: absolute;
    z-index: 0; 
    opacity: 0.15; /* Increased opacity for much bolder colors */
    pointer-events: none; 
}

.bg-cloud svg {
    width: 100%;
    height: 100%;
}

/* Layer 1: Top Left - Huge, deep dark red, massive movement */
.cloud-1 {
    width: 600px;
    color: var(--dark-red); 
    left: -200px;
    top: -10%;
    animation: floatMassive 8s ease-in-out infinite alternate;
}

/* Layer 2: Bottom Right - Huge, primary red, massive movement */
.cloud-2 {
    width: 550px;
    color: var(--primary-red); 
    right: -150px;
    bottom: -10%;
    animation: floatMassive 10s ease-in-out infinite alternate-reverse;
}

/* Layer 3: Middle Left - Smaller, fast, travels up and down rapidly */
.cloud-3 {
    width: 250px;
    color: var(--primary-red);
    left: 2%;
    top: 30%;
    opacity: 0.2; /* Even bolder */
    animation: floatFast 5s ease-in-out infinite alternate;
}

/* Layer 4: Top Right - Medium, fast, dark red */
.cloud-4 {
    width: 300px;
    color: var(--dark-red);
    right: 5%;
    top: 5%;
    animation: floatFast 6s ease-in-out infinite alternate-reverse;
}

/* Animation 1: Massive Distance (Travels 350px) */
@keyframes floatMassive {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(350px) scale(1.1); } 
}

/* Animation 2: Fast Distance (Travels 250px quickly) */
@keyframes floatFast {
    0% { transform: translateY(0); }
    100% { transform: translateY(250px); } 
}

/* --- Ensure Content Stays Above Clouds --- */
.benefits-header, .benefits-grid {
    position: relative;
    z-index: 2;
}

.benefits-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    /* Adds a subtle white glow behind text so the dark clouds never hide it */
    text-shadow: 0 4px 15px rgba(255, 255, 255, 0.9);
}

.benefits-header h2 {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 15px;
}

.benefits-header h2 span {
    color: var(--primary-red);
}

.benefits-header p {
    font-size: 1.2rem;
    color: var(--grey);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- INDIVIDUAL CARDS (Upgraded UI) --- */
.benefit-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy hover transition */
    border: 1px solid rgba(0,0,0,0.02);
    border-bottom: 4px solid transparent; /* Ready for the hover effect */
}

/* Hover effect: Lifts higher, adds red border, casts red shadow */
.benefit-card:hover {
    transform: translateY(-15px);
    border-bottom: 4px solid var(--primary-red);
    box-shadow: 0 25px 50px rgba(201, 16, 42, 0.12);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    color: var(--primary-red); 
    background: rgba(201, 16, 42, 0.05); /* Soft red circle behind icon */
    padding: 12px;
    border-radius: 50%;
}

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

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--black);
}

.benefit-card p {
    font-size: 1rem;
    color: var(--grey);
    line-height: 1.6;
    margin: 0;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    .benefits-header h2 { font-size: 2.5rem; }
    
    /* Adjust clouds for tablets */
    .cloud-1 { width: 350px; left: -100px; }
    .cloud-2 { width: 350px; right: -100px; }
}

@media (max-width: 767px) {
    .benefits-grid {
        grid-template-columns: 1fr; 
    }
    /* Hide the fast/small clouds on phones to prevent chaos */
    .cloud-3, .cloud-4 { display: none; }
    
    /* Keep the big ones but make them subtle */
    .cloud-1 { width: 250px; opacity: 0.08; }
    .cloud-2 { width: 250px; opacity: 0.08; }
}

/* --- FANTASTIC REVIEWS SECTION (DARK MODE) --- */
.reviews-section {
    position: relative;
    padding: 120px 0 160px; /* Extra padding at bottom for the staggered card */
    background-color: var(--black); /* Forces dark mode for this section */
    color: var(--white);
    overflow: hidden;
    z-index: 1;
}

/* A massive, subtle red glow behind the center of the section */
.reviews-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 16, 42, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.reviews-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.reviews-header h2 {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.reviews-header h2 span {
    color: var(--primary-red);
}

.reviews-header p {
    font-size: 1.2rem;
    color: var(--grey);
}

/* --- THE GRID & STAGGER EFFECT --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start; /* Allows cards to be different heights/positions */
}

/* Pushes the middle card down for a modern staggered look */
.review-card.staggered {
    margin-top: 40px; 
}

/* --- INDIVIDUAL REVIEW CARDS --- */
.review-card {
    background: #111111; /* Very dark grey, not pure black */
    border: 1px solid #222222; /* Subtle border to define the card */
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* The giant decorative quote mark */
.quote-mark {
    position: absolute;
    top: 10px;
    right: 30px;
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--primary-red);
    opacity: 0.1; /* Keeps it strictly in the background */
    line-height: 1;
}

.stars {
    color: #FFD700; /* Classic gold star color */
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.review-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes the client info to the bottom uniformly */
    font-style: italic;
}

/* Card Hover Effect */
.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(201, 16, 42, 0.15); /* Soft red glow on hover */
}

.review-card.staggered:hover {
    transform: translateY(30px); /* Adjusts hover so it stays staggered */
}

/* --- CLIENT INFO AREA --- */
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #222222;
    padding-top: 25px;
}

.client-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-red);
}

.client-details h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 3px;
}

.client-details span {
    font-size: 0.85rem;
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
    
    /* Remove stagger on tablets so it doesn't look broken */
    .review-card.staggered { margin-top: 0; }
    .review-card.staggered:hover { transform: translateY(-10px); }
    
    .reviews-header h2 { font-size: 2.5rem; }
    .reviews-section { padding: 80px 0; }
}

@media (max-width: 767px) {
    .reviews-grid {
        grid-template-columns: 1fr; /* 1 column on phones */
    }
}

/* --- INFINITE MARQUEE --- */
.trusted-marquee {
    padding: 40px 0;
    background-color: var(--white);
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.marquee-label p {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--grey);
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 30px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

/* Fades the edges of the marquee */
.marquee-container::before, .marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
}

.marquee-track {
    display: inline-flex;
    gap: 80px;
    padding-right: 80px; /* matches gap */
    animation: scrollMarquee 20s linear infinite;
}

/* Pauses animation when user hovers */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track img {
    height: 70px !important;
    width: auto;
    
    transition: all 0.3s ease;
    cursor: pointer;
}

.marquee-track img:hover {
    filter: grayscale(0%) opacity(1); /* Full color on hover */
    transform: scale(1.1);
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Scrolls exactly half the track to loop perfectly */
}

@media (max-width: 767px) {
    .marquee-track img { height: 30px; }
    .marquee-track { gap: 40px; padding-right: 40px; }
}

/* --- ZIGZAG PROCESS SECTION --- */
.zigzag-process-section {
    padding: 100px 0;
    background-color: #f9f9fa; /* Very light background for contrast */
    overflow: hidden;
}

.process-header {
    text-align: center;
    margin-bottom: 0px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.process-header .section-label {
    justify-content: center;
}

.process-header h2 {
    font-size: 3.5rem;
    color: var(--black);
    margin-bottom: 15px;
}

.process-header h2 span {
    color: var(--primary-red);
}

.process-header p {
    font-size: 1.1rem;
    color: var(--grey);
}

/* --- THE ZIGZAG WRAPPER & LINE --- */
.zigzag-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.zigzag-line-svg {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 180px; /* Controls the steepness of the zigzag */
    z-index: 0;
    /* Optional: animates the dashed line to look like it's moving */
    animation: dashScroll 20s linear infinite; 
}

@keyframes dashScroll {
    to { stroke-dashoffset: -1000; }
}

/* --- THE GRID & CARDS --- */
.zigzag-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.z-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Forces the content to sit above the dot */
.step-top {
    justify-content: flex-end; 
    padding-bottom: 20px;
}

/* Forces the content to sit below the dot */
.step-bottom {
    justify-content: flex-start;
    padding-top: 20px;
    margin-top: 100px; /* Pushes the entire block down to create the zigzag */
}

/* --- THE DOTS --- */
.z-dot {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    color: var(--primary-red);
    border: 4px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(201, 16, 42, 0.15);
    transition: all 0.3s ease;
    /* Position adjustments to touch the SVG line perfectly */
    margin: 20px auto; 
}

/* --- THE CONTENT BOXES --- */
.z-content {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.z-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--black);
}

.z-content p {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.6;
    margin: 0;
}

/* Hover Interactivity */
.z-step:hover .z-content {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(201, 16, 42, 0.1);
    border-bottom: 4px solid var(--primary-red);
}

.z-step:hover .z-dot {
    background-color: var(--primary-red);
    color: var(--white);
    transform: scale(1.1);
}

/* --- MOBILE RESPONSIVENESS (Converts Zigzag to Vertical Timeline) --- */
/* --- BULLETPROOF MOBILE RESPONSIVENESS FOR ZIGZAG --- */
@media (max-width: 991px) {
    .zigzag-line-svg { display: none !important; } /* Hide desktop horizontal line */
    
    .zigzag-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        position: relative;
    }

    /* The Vertical Mobile Line */
    .zigzag-grid::before {
        content: '';
        position: absolute;
        top: 20px; bottom: 0;
        left: 30px; /* Aligns with the center of the 50px dot */
        width: 3px; 
        background-color: #C9102A;
        opacity: 0.3;
        z-index: 0;
    }

    .z-step {
        display: flex !important;
        flex-direction: row !important; /* Side by side */
        align-items: flex-start !important; /* Align to top */
        text-align: left !important;
        padding: 0 !important;
        margin: 0 0 40px 0 !important;
        width: 100% !important;
    }

    /* THE MAGIC FIX: Forces dot to the Left, regardless of HTML order */
    .z-dot {
        order: 1 !important; 
        flex-shrink: 0 !important;
        width: 50px !important; 
        height: 50px !important;
        margin: 0 20px 0 5px !important; 
        position: relative;
        z-index: 2;
    }

    /* THE MAGIC FIX: Forces content box to the Right */
    .z-content {
        order: 2 !important;
        flex-grow: 1 !important;
        width: calc(100% - 75px) !important; /* Prevents overflow */
        margin: 0 !important;
    }
}

/* Extra tweak for very small phones */
@media (max-width: 576px) {
    .zigzag-grid::before { left: 20px; }
    .z-dot { 
        width: 40px !important; height: 40px !important; 
        margin: 0 15px 0 0 !important; font-size: 1rem !important; 
    }
}
/* --- SPLIT FAQ SECTION --- */
.faq-split-section {
    padding: 120px 0;
    background-color: var(--white);
}

.faq-split-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start; /* Important for the sticky effect */
}

/* Left Side: 40% Width */
.faq-intro {
    flex: 0 0 40%;
    position: sticky;
    top: 120px; /* Stays fixed on the screen while the right side scrolls */
}

.faq-intro h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.faq-intro h2 span { color: var(--primary-red); }

.faq-intro p {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 40px;
    line-height: 1.6;
}

.faq-contact-box {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
}

.faq-contact-box h4 { margin-bottom: 10px; font-size: 1.2rem; }
.faq-contact-box p { font-size: 1rem; margin-bottom: 15px; }
.faq-email-link {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-red);
    
}

/* Right Side: 60% Width */
.faq-accordion {
    flex: 1;
}

/* Reusing the exact same accordion styles from before */
.faq-item {
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 25px 0;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover, .faq-question.active { color: var(--primary-red); }

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--grey);
    margin: 0;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Mobile Responsiveness: Stacks the split screen into a single column */
@media (max-width: 991px) {
    .faq-split-wrapper { flex-direction: column; gap: 50px; }
    .faq-intro { position: relative; top: 0; flex: 1; width: 100%; }
    .faq-intro h2 { font-size: 2.8rem; }
}
/* --- THE GRAND FOOTER --- */
.grand-footer {
    background-color: #0a0a0a; /* Very deep black */
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1); /* Forces logo to be white if it's currently dark */
}

.brand-col p { color: #888888; line-height: 1.7; max-width: 400px; }

.footer-col h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 25px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 15px; }

.footer-col a {
    color: #888888;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-red);
    text-decoration: none;
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #222222;
    padding-top: 30px;
    color: #555555;
    font-size: 0.9rem;
}

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: #555555; }
.footer-legal a:hover { color: var(--primary-red); }

@media (max-width: 991px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
}