   /* style.css */
 /* style.csss */
<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --diamond-blue: #5BA3C7;
            --diamond-dark-blue: #4A8BA8;
            /* FIX: Use a cooler gray bg to make white cards pop */
            --main-bg-gray: #f0f2f5; 
            --card-white: #ffffff;
            
            --charcoal: #000000;
            --black: #000000;
            --text-dark: #000000;
        }

     html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif; 
    line-height: 1.6;
    color: var(--text-dark);
  background: linear-gradient(to bottom, 
    #ffffff 0%, 
    #ffffff 95%, 
    #000000 95%
);
    background-image: none; /* REMOVE the gradient */
    overflow: hidden;
    margin-bottom: -4rem;
}

        h1, h2, h3, .section-title, .section-subtitle, nav a, footer p, .social-links {
            font-family: 'Playfair Display', serif;
        }

        /* Header */
        header {
            background: var(--black);
            color: #ffffff;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

       .header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

        
       
        nav a {
            color: #ffffff;
            text-decoration: none;
            margin: 0 1rem;
            transition: color 0.3s;
            font-weight: 500;
            font-size: 1.1rem;
            position: relative;
        }
nav { 
display: contents;
}

        nav a:hover {
            color: var(--diamond-blue);
        }

        nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--diamond-blue);
    bottom: -5px; /* Adjust as needed for spacing */
    left: 0;
    transform: scaleX(0); /* Start hidden */
    transform-origin: left;
    transition: transform 0.3s ease-out;
}

/* Add this new block to animate the line on hover */
nav a:hover::after {
    transform: scaleX(1); /* Animate to full width */
}

       /* --- HERO SECTION (Reworked) --- */
        .hero-container {
            margin-top: 60px; /* offset for fixed header */
            width: 100%;
        }

        /* Desktop View */
.hero-desktop {
    display: flex;
 min-height: 100vh;    min-width: 100vw;
    /* background-image: url('Diamond-Auto-Spa-Detailing0.png');  <-- REMOVE THIS LINE */
    background-color: var(--white); /* Add this as a fallback */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden; /* Add this to contain the video */
    /* slant from high-left to low-right */
clip-path: polygon(0 0, 100% 0, 100% 110vh, 0 105vh);
}
       


.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;  /* CHANGED */
    height: 100%; /* CHANGED */
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0; 
    /* filter: brightness(70%); */ 
}
        
        /* Overlay to make text readable */
       .hero-desktop::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;

    /* [FIXED] Split into multiple properties to add dots */
    background-color: rgba(0, 0, 0, 0.5);
    background-image: radial-gradient(rgba(0, 0, 0, 0.25) 1px, transparent 1px);
    background-size: 4px 4px;

    z-index: 1;
}
@media (max-width: 800px) {
  .hero-desktop::before {
background-color: rgba(0, 0, 0, 0);
         background-image: none;

  }
}
        /* --- UPDATED HEADER CSS --- */
.logo {
   margin: 0 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    /* Gradient Text Fill Effect */
    background: linear-gradient(to right, #ffffff 50%, var(--diamond-blue) 50%);
    background-size: 200% 100%;
    background-position: 0 0; /* Start at white */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 0.5s ease-out;
    display: inline-block;
}

.logo:hover {
    background-position: -100% 0; /* Slide to Blue */
}

/* Remove the old span::before logic, we don't need it anymore */
.logo span { color: inherit; } 

.phone-header {
    font-size: 1.2rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Playfair Display', serif;
    display: flex; /* Align SVG and text */
    align-items: center;
    gap: 8px;
}

           .phone-header:hover {
            color: var(--diamond-blue);
        }
        .phone-header::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--diamond-blue);
    bottom: -5px; /* Adjust as needed for spacing */
    left: 0;
    transform: scaleX(0); /* Start hidden */
    transform-origin: left;
    transition: transform 0.3s ease-out;
}

/* Add this new block to animate the line on hover */
.phone-header:hover::after {
    transform: scaleX(1); /* Animate to full width */
}

.phone-icon-svg {
    width: 18px;
    height: 18px;
    fill: currentColor; /* Inherits text color */
}
        @media (max-width: 769px) {
.phone-header {
    display: none;
}
        }
        /* --- New Hero CTA Button Style --- */
.hero-content .cta-bbutton {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.8rem 2.8rem; /* Slightly adjust padding */
}

.hero-content .cta-bbutton:hover {
    background: #ffffff;
    color: var(--charcoal); /* Text turns dark */
    transform: translateY(0); /* Remove the lift, just bg change */
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 2rem;
        }
        .hero-content h2 {
            color: var(--diamond-blue);
        }
        

       .hero-logo-img {
    margin-bottom: 1rem;
    max-width: 400px; /* ADD THIS LINE */
    width: 100%;      /* ADD THIS LINE */
    height: auto;     /* ADD THIS LINE */
}

       .seo-h1 {
    position: static;
    left: auto;
    width: auto;
    height: auto;
    overflow: visible;
    font-size: 1rem;          /* small +  */
    color: #ffffff;           /* white text to match your hero */
    margin-top: -1.2rem;      /* pulls it closer to tagline */
    margin-bottom: 1.5rem;
    opacity: 0.85;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    font-family: 'Playfair Display', serif;
}




        .hero-desktop p {
            margin-bottom: 2rem;
            font-style: normal;
        }
/* Visual Display Title - Styled like the original H1 */
.hero-display-title {
    font-size: 2.4rem;
    color: #fff;
    margin-top: -1rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-family: 'Playfair Display', serif;
   font-style: normal;
    font-weight: bold;
}
    

  /* --- HERO BUTTON FIX (Transparent to White) --- */
.cta-bbutton {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff !important; /* Force white text initially */
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 4px; /* Slight rounded corner looks more premium */
}

.cta-bbutton:hover {
    background: #ffffff;
    color: #000000 !important; /* Force black text on hover */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4); /* Glow effect */
    transform: translateY(-2px);
}

/* --- GENERAL BUTTONS MODERNIZATION (Solid Blue) --- */
.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--diamond-blue); /* Solid color, no cheap gradient */
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(91, 163, 199, 0.3); /* Colored shadow */
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.cta-button:hover {
    background: var(--diamond-dark-blue); /* Darker blue on hover */
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(91, 163, 199, 0.5);
}


 /* --- SHOW MORE BUTTON (Matches Hero Style) --- */
.show-more-btn {
    display: block;
    margin: 3rem auto;
    padding: 1rem 3.5rem;
    background: transparent; /* Transparent background */
    color: #ffffff; /* White text */
    border: 2px solid #ffffff; /* White border */
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
            font-family: 'Playfair Display', serif;
    border-radius: 4px;
}

.show-more-btn:hover {
    background: #ffffff; /* White background on hover */
    color: var(--charcoal); /* Dark text on hover */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4); /* Glow effect */
    transform: translateY(-2px);
    border: 2px solid #ffffff;
}

        /* --- Sections General --- */
       section {
    width: 100%;          /* Forces background to touch edges */
    max-width: none;      /* Removes the 1200px limit on the background */
    padding: 4rem 0;      /* Vertical spacing */
    position: relative;   /* Needed for the transition effects */
    overflow: hidden;
}

/* Use this class inside sections to center text/cards */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

        /* --- WIDER GALLERY CSS --- */
.container-fluid-gallery {
    width: 95%; /* Takes up most of the screen */
    max-width: 1800px; /* Cap it on super-wide monitors */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Adjust grid for wider layout */
.gallery-grid {
    gap: 0.5rem; /* Tighter gap looks better on wide screens */
}
        /* Hide specific image on laptop/desktop */
@media (min-width: 769px) {
    .gallery-item[data-gallery-extra]:nth-of-type(8) {
        display: none !important;
    }
     .hidden-desktop {
        display: none !important;
    }
   
    .hero-video-bg {
        width: 122%;
        height: 122%;
        transform: translate(-59%, -50%);
    }
  

}


/* --- 2. TORN PAPER TRANSITION (Matches your image) --- */
/* Apply this class to a WHITE section that follows a DARK section */
.torn-top {

        overflow: hidden;

    position: relative;
    margin-top: -70px; /* Pulls the section up to overlap */
    padding-top: 100px; /* Adds space so content isn't cut off */
    z-index: 10;
    /* This polygon creates the jagged "paint/torn" look */
    clip-path: polygon(
        0% 50px, 2% 45px, 5% 55px, 8% 40px, 11% 55px, 
        15% 35px, 19% 55px, 22% 45px, 25% 60px, 28% 40px, 
        32% 55px, 35% 35px, 39% 60px, 42% 40px, 45% 55px, 
        49% 35px, 52% 60px, 55% 40px, 58% 55px, 62% 35px, 
        65% 60px, 68% 40px, 72% 55px, 75% 35px, 79% 60px, 
        82% 40px, 85% 55px, 88% 35px, 92% 60px, 95% 40px, 
        98% 55px, 100% 50px, 
        100% 100%, 0% 100%
    );
    background: #000000; /* Must match the section background color */
}


        .section-title {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            text-align: center;
            color: var(--charcoal);
            position: relative;
            padding-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.4rem;
            color: #555;
            margin-bottom: 3rem;
            font-style: italic;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--diamond-blue);
        }

     
      
.philosophy-section {
background: #fffffff;
    padding-top: 2rem;
     position: relative;
 }

       .philosophy-content {
    max-width: 600px;
    /* subtle blue-ish gradient instead of flat white */
    background: linear-gradient(135deg, #ffffff 0%, #f4f8fb 100%); 
    padding: 3.5rem 2.5rem; /* More breathing room */
    position: relative;
    /* Refined shadow - softer and more spread out */
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
    overflow: hidden; /* Keeps the watermark inside */
}

/* Add a "Watermark" using a pseudo-element */
.philosophy-content::before {
    position: absolute;
    top: -40px;
    right: -20px;
    font-size: 15rem;
    color: var(--diamond-blue);
    opacity: 0.07; /* Very faint */
    font-family: serif;
    pointer-events: none;
    z-index: 0;
}

.philosophy-quote {
    font-style: italic;
    font-size: 1.3rem;
    text-align: center;
    color: var(--diamond-dark-blue); /* Make text blue instead of black */
    padding: 1.5rem;
    /* Remove grey background, use a border instead */
    background: transparent; 
    border-top: 1px solid rgba(91, 163, 199, 0.3);
    border-bottom: 1px solid rgba(91, 163, 199, 0.3);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
}

/* Make sure the text sits on top of the watermark */
.philosophy-content p, .experience-badges {
    position: relative;
    z-index: 1;
}

        .corner-accent {
            position: absolute;
            width: 60px;
            height: 60px;
            border: 2px solid var(--diamond-blue);
            margin: -0.5rem;
        }

        .corner-accent.top-left {
            top: 20px;
            left: 20px;
            border-right: none;
            border-bottom: none;
        }

        .corner-accent.bottom-right {
            bottom: 20px;
            right: 20px;
            border-left: none;
            border-top: none;
        }

        .philosophy-content p {
            font-size: 1rem;
            line-height: 1.8;
            color: #000000;
            text-align: center;
        }

        .philosophy-divider {
            width: 80px;
            height: 2px;
            background: var(--diamond-blue);
            margin: 1rem auto;
        }

       

        .experience-badges {
            display: flex;
            justify-content: center;
            gap: 3rem;
        }

        .badge {
            text-align: center;
        }

        .badge-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: 000000;
            line-height: 1;
            font-family: 'Playfair Display', serif;
        }
        .badge-text {
            font-weight: bold;
            text-transform: uppercase;
            font-family: 'Playfair Display', serif;
            justify-content: center;
        }
        /* ADD ALL THESE NEW RULES for the philosophy section */
.philosophy-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 0 1rem;

}

.philosophy-image-stack {
    position: relative;
    min-height: 450px;
    width: 100%;
}

.stack-img {
    position: absolute;
    width: 75%; /* Make them overlap */
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: rgba(0,0,0,0);
}

/* Style for the normal image tag */
.stack-img.img-1 {
    top: 0;
    left: 0;
    z-index: 1;
    transform: rotate(-8deg);
    height: auto;
    object-fit: cover;
}

/* Style for the B/A container */
.stack-img.img-2 {
    bottom: 0;
    right: 0;
    z-index: 2; /* Start on top */
    transform: rotate(5deg);
    height: 400px; /* Give the B/A a fixed height */
}

/* --- Hover Effects --- */

/* When hovering img-1, bring it to front */
.philosophy-image-stack .stack-img.img-1:hover {
    z-index: 3;
    transform: rotate(-3deg) scale(1.05);
}
/* ...and push img-2 back */
.philosophy-image-stack .stack-img.img-1:hover + .stack-img.img-2 {
    z-index: 2;
    transform: rotate(2deg) scale(0.95);
}

/* When hovering img-2, bring it to front */
.philosophy-image-stack .stack-img.img-2:hover {
    z-index: 3;
    transform: rotate(2deg) scale(1.05);
}
/* ...and push img-1 back */
.philosophy-image-stack .stack-img.img-2:hover ~ .stack-img.img-1 {
    z-index: 2;
    transform: rotate(-5deg) scale(0.95);
}

/* Responsive stacking for mobile */
@media (max-width: 900px) {
    .philosophy-grid-container {
        grid-template-columns: 1fr; /* Stack them */
    }
    .philosophy-image-stack {
        margin-top: 2rem;
        min-height: 400px; 
    }
    .stack-img.img-2 {
        height: 350px; 
    }
}

     /* --- Base Card Style (Neumorphism) --- */
.service-card, .philosophy-content, .contact-form-card, .contact-info-card {
    box-shadow:
        10px 10px 20px #c7c9cc,
       -10px -10px 20px #ffffff,
        inset 0px 0px 0px transparent,
        inset 0px 0px 0px transparent;

    transition: box-shadow 0.4s ease, transform 0.4s ease;
}


.service-card:hover, .philosophy-content:hover, .contact-form-card:hover, .contact-info-card:hover {

    box-shadow: 
        4px 4px 10px #c7c9cc, 
       -4px -4px 10px #ffffff,
       inset 2px 2px 5px #c7c9cc,
       inset -2px -2px 5px #ffffff;

    transform: translateY(-10px);
}


/* Remove the border from the philosophy card (it was an exception) */
.philosophy-content {
    border-top: none;
    padding: 3rem 1rem;
}
        
       
        
     /* --- NEW SERVICES LAYOUT --- */
.services-full-width-container {
    width: 100%;
    padding: 0; /* No padding, go edge to edge */
}

.services-row-grid {
    display: grid;
    /* 3 Columns taking up equal space */
    grid-template-columns: repeat(3, 1fr); 
    width: 100%;
    margin: 0;
    padding: 0;
}
.services-title-overlay {
    position: absolute;
    top: 1%;
    transform: translate(4%, -50%);
    color: #ffffffb5;
    font-size: 3rem;
    text-shadow: 3px 3px 12px rgb(0 0 0);
    z-index: 50;
    white-space: nowrap;
    padding: 0 1rem;
    /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)); */
    backdrop-filter: blur(1px);
    border-radius: 30px;
    /* border: 2px solid rgba(255, 255, 255, 0.2); */
    /* animation: borderGlow 3s 
ease-in-out infinite; */
}
@media (max-width: 1000px) {
  .services-title-overlay {
    display: none;
  }
}



}
.services-title-overlay::after {
    display: none !important;
}

.service-card-large {
    position: relative;
    height: 60vh; /* Makes them tall/huge */
    min-height: 500px;
    background-size: cover;
    background-position: center;
     background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Text at bottom */
    padding: 3rem;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,0.1);
    /* Neumorphic shadow not needed here as these are image cards, 
       but we keep the hover lift */
    transition: transform 0.5s ease, filter 0.3s ease;
}

/* Dark overlay so text pops */
.service-card-large::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
    z-index: 1;
    transition: background 0.5s ease;
}

.service-card-large:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
}

.service-card-large h3 {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 2.5rem; /* Huge text */
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.service-card-large p {
    position: relative;
    z-index: 2;
    color: #e0e0e0;
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 90%;
}

/* The Middle Row for B&As */
.services-ba-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--charcoal);
    padding: 0;
    gap: 0;
}

.services-ba-row .img-comp-container {
    border-radius: 0; /* Square edges to fit grid */
    height: 500px; /* Match height of neighbors */
    box-shadow: none;
}

/* MOBILE ADJUSTMENT: Stack them on phones */
@media (max-width: 900px) {
    .services-row-grid, .services-ba-row {
        grid-template-columns: 1fr;
    }
    .service-card-large {
        height: 400px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

        /* --- Gallery & Lightbox --- */
        /* NEW: Dark background for gallery */
    #gallery {
        background: var(--charcoal);
        color: #f0f2f5;
    }
    #gallery .section-title,
    #gallery .section-subtitle {
        color: #ffffff;
    }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 300px;
            gap: 1rem;
            position: relative;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            height: 100%;
            width: 100%;
            cursor: pointer;
            border-radius: 12px;
        }
        
        .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
        .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 2; }
        .gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 2; }
        .gallery-item:nth-child(8) { grid-column: span 2; }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Lightbox Modal */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 2000;
            padding-top: 50px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.9);
        }
        
        .lightbox-content {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 1000px;
            max-height: 80vh;
            object-fit: contain;
        }

        .close-lightbox {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
        }

        .hidden { display: none; }


.reveal {
    opacity: 0;
    transform: translateY(50px); /* Start lower */
    transition: all 1s cubic-bezier(0.5, 0, 0, 1); /* Smooth easing */
    filter: blur(10px); /* Start blurry */
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}
        @media (max-width: 768px) {
    .reveal {
        opacity: 1 !important;
        transform: translateY(0) !important;
        filter: blur(0) !important;
    }
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 1rem 0.5rem;
    }
    
    .gallery-item {
        width: 100%;
        height: auto;
        overflow: hidden;
    }

           .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
        .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
        .gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
        .gallery-item:nth-child(8) { grid-column: span 1; }
   
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}
        /* --- Video Carousel --- */
      /* angled section style */
       /* --- UPDATED VIDEO SECTION CSS --- */
#videos {
    padding: 4rem 0;
    margin: 3rem 0;
    /* Inverted Colors */
    background: var(--black); 
    color: #ffffff;
     margin-top: 6rem;
    /* Keep the angle - scale up more to fill gaps */
  transform: translate(0px, -50px) rotate(-2deg) scale(1.15);
    width: 110vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
   
    overflow: hidden; /* Clip any overflow */
}


#videos .section-title {
    color: #ffffff; /* White text for title */
    font-size: 2.3rem; /* Smaller than the default 3rem */
}

/* Scroll Container */
.video-scroll-container {
    display: flex;
    overflow-x: auto; /* Enables manual scrolling */
    gap: 2rem;
    padding: 2rem 5%; /* Padding so first card isn't flush against edge */
    scroll-behavior: smooth;
    
    /* Hide scrollbar for cleaner look (works in Chrome/Safari) */
    scrollbar-width: none; 
    -ms-overflow-style: none;
}
.video-scroll-container::-webkit-scrollbar { 
    display: none; 
}

.video-card {
    flex: 0 0 320px; /* Fixed width per card */
    background: #1a1a1a; /* Dark Card Background */
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Stronger shadow for dark mode */
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: var(--diamond-blue);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .hero-video-bg {
        width: 100vw !important;
        height: 100vh !important;
        object-fit: cover !important;
        transform: translate(-50%, -50%) !important; 
    }
}
@media (max-width: 768px) {
    
}

     /* --- Review Section Background --- */
/* --- Review Section Fixed --- */
#reviews {
    width: 100%;
    
   
    position: relative;
    padding: 3rem 0 4rem 0;
    overflow: hidden; /* Critical for hiding scrollbars */
    height: auto;
    min-height: auto;
}

/* --- Reviews Header Wrapper --- */
.reviews-header-wrapper {
    max-width: 1200px;
    max-height: 300px;
    margin: 0 auto 3rem auto;
    padding: 0 2rem;
    display: flex;
justify-content: space-between;  
    align-items: center;
    flex-wrap: wrap; 
    gap: 0rem;

    
}

.reviews-text-side {
   /* max-width: 1000px; */
}

/* --- RESTORED BADGE DESIGN --- */
.reviews-badges-side {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 0.8rem 3rem; /* Wider padding for pill look */
    border-radius: 12px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 200px;
    min-width: fit-content;
}

/* Left side of badge */
.badge-content-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.badge-rating-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #000;
    line-height: 1;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.badge-stars {
    color: #f1c40f;
    font-size: 1.1rem;
    margin: 2px 0;
}

.badge-subtext {
    font-size: 0.9rem;
    color: #555;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* The Vertical Divider */
.badge-divider {
    width: 1px;
    height: 50px;
    background-color: #e0e0e0;
}

/* Right side of badge (Logos) */
.badge-logos-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: column;
}

.badge-logo-img {
   height: auto; /* <-- CHANGED from 50px */
    width: 130px;  /* <-- ADDED to set fixed width */
    object-fit: contain;
}

/* --- Marquee Container --- */
.reviews-marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 2rem;
    padding: 1rem 0;
    position: relative;
    width: 100%;
    /* REDUCED INTENSITY: Changed from 10% to 2% to make fade subtler */
    mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
}

.reviews-marquee {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    min-width: 100%;
    animation: scrollLeft 120s linear infinite;
}

.reviews-marquee-container.reverse .reviews-marquee {
    animation: scrollRight 120s linear infinite;
}

.reviews-marquee-container:hover .reviews-marquee {
    animation-play-state: paused;
}
/* --- ADDED KEYFRAMES --- */
@keyframes scrollLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

@keyframes scrollRight {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}
/* --- Review Card Updates --- */
.review-card {
    flex: 0 0 auto;
    width: 350px;
    height: 220px;
    background: #000000; /* PURE BLACK */
    color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #222; /* Very subtle border */
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--diamond-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    flex-shrink: 0;
}
.review-card .stars {
    color: #f1c40f; /* Yellow */
    font-size: 1rem; /* Adjust size as needed */
    line-height: 1;
    margin-top: 4px; /* Added spacing */
}
.reviewer-name {
    font-weight: bold;
    color: #fff;
    display: block;
}

.review-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ddd;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

       
/* Mobile Adjustments */
@media (max-width: 768px) {
 #reviews {
             padding-top: 2rem;
}
         .reviews-header-wrapper {
        flex-direction: column; /* Stack vertically */
        align-items: center; /* Center everything */
        max-height: none; /* <-- ADD THIS LINE */
        gap: 2rem;        /* <-- ADD THIS LINE */
             padding: 0 1rem;
    }
    .badge-logos-right {
  
    flex-direction: row;
}
    .reviews-badges-side {
        max-width: 400px;
        height: auto;
         flex-direction: column;
        border-radius: 12px; /* Less round on mobile to fit content */
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .hero-display-title {
    font-size: 2rem;
}
    
element.style {
}
.section-subtitle {
    
    padding: 0 1rem;
}
    
    
    .badge-divider {
        width: 100%;
        height: 1px; /* Horizontal line on mobile */
    }
    
    .badge-rating-title { font-size: 1.4rem; }
}
      /* --- Contact Section --- */
        #contact {
            background: #ffffff; /* [FIXED] */
            position: relative;
            z-index: 10;
            margin-top: 0;
            padding-bottom: 4rem; /* [ADDED] Spacing at page bottom */
        }
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
               align-content: center;
    justify-content: center;
            align-items: stretch; /* Ensures cards are equal height */
        }

        .contact-form-card, .contact-info-card {
            background: var(--card-white);
            padding: 2.5rem;
            flex: 1; /* Each card takes up 50% */
            min-width: 320px; /* Cards will wrap on mobile */
            display: flex;
            flex-direction: column;
            /* [REMOVED] align-items: center; */
            
            /* [ADDED] Re-applied standard card shadow */
            box-shadow:
                10px 10px 20px #c7c9cc,
               -10px -10px 20px #ffffff;
            transition: box-shadow 0.4s ease, transform 0.4s ease;
        }

        .contact-form-card:hover, .contact-info-card:hover {
            box-shadow: 
                4px 4px 10px #c7c9cc, 
               -4px -4px 10px #ffffff,
               inset 2px 2px 5px #c7c9cc,
               inset -2px -2px 5px #ffffff;
            transform: translateY(-10px);
        }


        .contact-form-card h3, .contact-info-card h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem; 
            color: var(--charcoal);
            text-align: center;
        }

        /* [ADDED] Make the form fill the card's height */
        .contact-form-card form {
            display: flex;
            flex-direction: column;
            flex-grow: 1; /* This is key to push button to bottom */
        }

        .form-group { 
            /* [REMOVED] margin: 0 -1.5rem; */
            margin-bottom: 1.2rem; 
            width: 100%; /* Ensure it fills the form */
        }
                
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 1rem 0;
            border: 1px solid #ccc;
            background: #f9f9f9;
            border-radius: 4px;
            font-family: inherit;
        }
                
       .form-group textarea {
    width: 95%;
    height: 100px;
    padding: 1rem 0 0 1rem;
}

        /* [REPLACED] Cleaned up button styling */
        #contact .cta-bbutton {
            border: 2px solid #000 !important;
            color: #000 !important;
            margin: auto;     /* Pushes button to the bottom */
            align-self: center; /* Centers button horizontally */
            width: fit-content;   /* Button is only as wide as its text/padding */
            padding: 1rem 3rem; /* Re-add padding */
        }

        #contact .cta-bbutton:hover {
            background: #000 !important;
            color: #fff !important;
        }

        /* --- Info Card Tweaks --- */
        .contact-info-card {
            display: flex;
            flex-direction: column;
        }

        .info-highlight {
            padding: 0.3rem 0;
            margin: 0.3rem 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

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

        /* [ADDED] This makes the "Hours" block grow to fill space */
        .info-item:has(.hours-list) {
            flex-grow: 1;
        }
                
        .phone-link-bg {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--diamond-blue);
            text-decoration: none;
            transition: color 0.3s;
            font-family: 'Playfair Display', serif; 
        }
        .phone-link-bg:hover {
            color: var(--diamond-dark-blue);
        }

        .info-item strong {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-family: 'Playfair Display', serif;
        }

        .info-item .info-title-block {
            display: block;
        }

        .hours-list {
            list-style: none;
            width: 100%;
            padding: 0; /* [ADDED] */
        }
                
        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

        .social-links {
            text-align: center; 
            margin-top: auto; /* [ADDED] Pushes links to the bottom */
        }
               
        .social-links a {
            display: inline-block;
            padding: 1rem 3rem;
            font-size: 1.2rem;
            font-family: 'Playfair Display', serif;
            font-weight: bold;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
            border: 2px solid #000 !important;
            color: #000 !important;
            margin: 0.5rem; /* [ADDED] Spacing for mobile wrap */
        }

        .social-links a:hover {
            background: #000 !important;
            color: #fff !important;
            box-shadow: 0 0 20px rgba(0,0,0,0.4);
            transform: translateY(-2px);
        }

        .contact-line strong {
            margin-right: 0.5rem;
            font-family: 'Playfair Display', serif;
        }
                
        .email-link-bg {
           display: inline-flex;
            font-size: 1.2rem; 
            font-weight: bold;
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s;
            font-family: 'Playfair Display', serif;
            word-break: break-all; /* [ADDED] Fix for long email on mobile */
        }

        .email-link-bg:hover {
            color: var(--diamond-blue);
        }
div.container {
    padding: 0 1rem;
}
        /* --- [REMOVED] OBSOLETE MOBILE/DESKTOP STYLES --- */
        /* All old @media queries for the contact section, form, and buttons
           have been removed as the new flex layout is responsive by default. */

        /* --- Footer --- */
        #footer {
            width: 100%;
            max-width: none;
            padding: 0;
            position: relative;
            overflow: hidden;
            background: var(--black); 
        }
                  
        footer {
            background: var(--black);
            color: #888;
            text-align: center;
            padding: 2rem 2rem;
            display: block;
        }

        footer p {
            margin: 0.5rem 0;
            word-break: break-word; /* [ADDED] Prevents overflow */
        }

        footer p:last-child {
            margin-bottom: 0;
        }

   @media (max-width: 768px) {

      .header-content {
      
      gap: 0.5rem;
      }
.section-title {
    font-size: 2.3rem; /* Change from 3rem to 2.5rem */
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--charcoal);
    position: relative;
    padding-bottom: 1rem;
}

      email-link-bg {
            font-size: 1rem;
         display: break;
        }
    }
        
    </style>
