:root {
    --bg-dark: #05081c;      /* Very dark navy (almost black) */
    --card-bg: #0f162e;      /* Rich Navy for cards */
    --highlight-bg: #1a237e; /* Brighter Navy for highlights */
    --yellow: #ffe599;       /* Monkey Yellow */
    --white: #ffffff;
    --text-color: #d1d5db;   /* Light grey (easier on eyes than pure white) */
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    scroll-behavior: smooth;
    line-height: 1.7;
}

/* Demo Banner */
#demo-banner {
    background: var(--yellow);
    color: var(--bg-dark);
    text-align: center;
    padding: 9px 16px;
    font-size: 12.5px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.06em;
}

/* Header & Nav */
header {
    background: var(--card-bg);
    padding: 15px 5%;
    border-bottom: 3px solid var(--yellow);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    color: var(--yellow);
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    height: 65vh;
    background: linear-gradient(rgba(5, 8, 28, 0.7), rgba(5, 8, 28, 0.7)), url('hero-truck.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(40px, 6vw, 75px);
    margin-bottom: 50px;
    text-shadow: 0px 4px 15px rgba(0,0,0,0.8);
    text-transform: uppercase;
    color: var(--white);
}

/* Engaging Button */
.emergency-btn {
    background: #ffffff; /* Forces button to be White */
    color: #000000;      /* Forces text to be Black */
    padding: 18px 45px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    display: inline-block;
    transition: all 0.3s ease;
    animation: pulse-white 2s infinite;
}

.emergency-btn:hover {
    transform: translateY(-3px);
    background: var(--yellow); /* Turns Monkey Yellow on hover */
    box-shadow: 0 0 30px rgba(255, 229, 153, 0.4);
}

@keyframes pulse-white {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Dark Mode Content Blocks */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px; /* Slightly reduced outer spacing */
}

.info-block {
    margin-bottom: 40px; /* Reduced from 50px */
    padding: 35px 40px; /* Reduced padding for a tighter box */
    background: var(--card-bg); 
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid #1a2340; 
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.info-block:hover {
    transform: translateY(-8px); 
    border-color: var(--yellow); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(255, 229, 153, 0.15); 
}

.info-block h2 {
    font-family: 'Oswald', sans-serif;
    color: var(--yellow);
    font-size: 32px; /* Slightly scaled down */
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding-bottom: 5px;
}

.info-block p {
    font-size: 1.1rem; /* Scaled down from 1.2rem for cleaner reading */
    font-weight: 400;
    color: #e2e8f0;
}

.highlight-bg {
    background: var(--highlight-bg); 
    border: 3px solid var(--yellow); 
}

.highlight-bg:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 35px rgba(255, 229, 153, 0.35);
}

/* Feature Grid */
.features-grid {
    display: grid;
    /* We lower the minimum width so it comfortably fits 2 columns next to the image */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Force a perfect 2x2 square on desktop screens */
@media (min-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.feature {
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--yellow);
}

.feature h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--yellow);
    font-size: 20px; /* Slightly smaller to fit the 2x2 grid perfectly */
    margin-bottom: 10px;
    margin-top: 0;
}

/* Make the Master Plumber monkey slightly larger to balance the 2x2 grid */
.why-img-container {
    flex: 0 0 320px; /* Increased from 280px */
}

/* Quote Section */
.quote-container {
    background: #000;
    color: white;
    padding: 50px 30px; /* Reduced from 80px to clean up empty space */
    text-align: center;
    border-radius: 16px;
    border: 3px solid var(--yellow); /* Matches the other boxes */
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    /* Animation transition */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Quote Form Hover Effect */
.quote-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(255, 229, 153, 0.25);
}

.quote-badge {
    background: var(--yellow);
    color: #000;
    padding: 10px 30px; /* Slightly scaled down */
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 25px;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(255, 229, 153, 0.5);
}

.live-dot {
    height: 14px;
    width: 14px;
    background: #d32f2f;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 10px #d32f2f;
    animation: blink 1s infinite;
}

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

.quote-subtext {
    font-size: 1.1rem;
    color: var(--yellow);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-placeholder p {
    color: #666;
}

/* Footer Styling */
footer {
    background: #000;
    color: #888;
    text-align: center;
    padding: 60px 20px;
    margin-top: 0;
    border-top: 1px solid #333;
    font-family: 'Montserrat', sans-serif;
}

.footer-contact {
    font-size: 1.5rem;
    color: var(--yellow);
    font-weight: 700;
    margin-bottom: 10px;
}

footer p {
    font-size: 1rem;
    margin: 5px 0;
}

/* --- BANANA TREE BUTTON --- */

.banana-btn {
    background: #ffffff; /* Forces the Banana Tree button to be White */
    color: #000000;      /* Forces text to be Black */
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.banana-btn:hover {
    transform: translateY(-3px);
    background: var(--yellow); /* Switches to Yellow on hover */
    box-shadow: 0 0 30px rgba(255, 229, 153, 0.4);
}

.banana-btn:active {
    transform: scale(0.95);
}

.tree-container {
    position: relative;
    display: inline-block;
    font-size: 35px; /* Size of the tree */
    line-height: 1;
}

.banana {
    position: absolute;
    font-size: 16px; /* Smaller bananas */
    top: 10px;
    transition: opacity 0.2s;
}

/* Positioning the bananas on the tree */
.b1 { left: -5px; top: 12px; transform: rotate(10deg); }
.b2 { right: -2px; top: 10px; transform: rotate(-10deg); }
.b3 { left: 10px; top: 15px; transform: rotate(45deg); }

/* THE DROP ANIMATION */
.falling {
    animation: dropDown 0.8s ease-in forwards;
}

/* Give each banana a slightly different fall speed */
.b1.falling { animation-duration: 0.6s; }
.b2.falling { animation-duration: 0.8s; }
.b3.falling { animation-duration: 0.7s; }

@keyframes dropDown {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(150px) rotate(180deg); opacity: 0; }
}

/* --- MASCOT SPLIT LAYOUT --- */

.split-layout {
    display: flex;
    align-items: center;
    gap: 40px;
}

.reverse-layout {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1; /* Takes up remaining space */
}

.image-content {
    flex: 0 0 200px; /* Shrunk from 250px */
    display: flex;
    justify-content: center;
}

/* Master Plumber monkey */
.why-img-container {
    flex: 0 0 240px; /* Shrunk from 320px */
}

.mascot-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.4)); /* Makes them pop off the dark background */
}

/* Premium Floating Animation */
.float-anim {
    animation: floating 4s ease-in-out infinite;
}

.float-anim-delayed {
    animation: floating 4s ease-in-out infinite 2s; /* Offset so they don't bob in perfect sync */
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Mobile Responsiveness (Stacks them on small screens) */
@media (max-width: 768px) {
    .split-layout, .reverse-layout {
        flex-direction: column;
        text-align: center;
    }
    
    .image-content {
        order: -1; /* Always puts the image ON TOP of the text on mobile */
        margin-bottom: 30px;
        width: 200px;
    }
    
    .info-block h2 {
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- HIGH-CONVERSION CONTACT FORM --- */

.custom-contact-form {
    max-width: 750px;
    margin: 40px auto 0;
    text-align: left;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-row {
    display: flex;
    gap: 25px;
}

.form-row .input-group {
    flex: 1;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--yellow);
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Styling the inputs */
.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #2a3459;
    border-radius: 8px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Keeps everything inside the box */
}

/* Custom dropdown arrow styling */
.input-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffe599%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 16px top 50%;
    background-size: 12px auto;
}

/* The Glow Effect when typing */
.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 15px rgba(255, 229, 153, 0.2);
    background: rgba(0, 0, 0, 0.7);
}

.input-group input::placeholder, 
.input-group textarea::placeholder {
    color: #666;
}

/* Form Submit Button */
.submit-btn {
    width: 100%;
    background: var(--yellow);
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    padding: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

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

/* Mobile Adjustments */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .custom-contact-form {
        padding: 25px 20px;
    }
}

/* --- CLICKABLE HEADER LOGO --- */

.logo-link {
    text-decoration: none; /* Removes the underline from the link */
    transition: transform 0.2s ease;
}

.logo-link:hover {
    transform: scale(1.02); /* Very subtle pop when hovering */
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px; /* Space between monkey and text */
}

.header-logo-img {
    height: 40px; /* Adjust this to make the monkey bigger or smaller */
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo-text {
    color: var(--yellow);
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
}

/* Mobile tweak: make icon slightly smaller on phones */
@media (max-width: 600px) {
    .header-logo-img {
        height: 30px;
    }
    .logo-text {
        font-size: 18px;
    }
}

/* --- INTERACTIVE SERVICE AREA FLIP CARDS --- */

/* Changed to Flexbox to perfectly center the odd number (5) of cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Forces exactly 3 columns on desktop */
    gap: 20px;
    margin-top: 30px;
}

.flip-card {
    background-color: transparent;
    height: 120px;
    perspective: 1000px; 
    cursor: pointer;
    width: 100%;
}

/* Make it responsive for smaller screens */
@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

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

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1); 
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    transform: translateY(-5px); 
}

.flip-card.is-flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; 
    backface-visibility: hidden;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
}

/* THE NEW BRIGHT INSPIRATION THEME */
.flip-card-front {
    background-color: #ffffff; /* Bright white background */
    border: 3px solid #1a2340; /* Dark navy border */
}

/* Grouping the dot and text */
.region-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 5px;
}

/* The Flashing Green Light */
.status-dot {
    width: 14px;
    height: 14px;
    background-color: #2ecc71; /* Active green color */
    border-radius: 50%;
    box-shadow: 0 0 10px #2ecc71;
    animation: flashPulse 1.5s infinite;
}

@keyframes flashPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 12px rgba(46, 204, 113, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.flip-card-front h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: #0f162e; /* Very dark navy text */
    margin: 0;
    letter-spacing: 1px;
}

.click-hint {
    font-size: 12px;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Styling the Back (Dark theme to contrast the front) */
.flip-card-back {
    background-color: var(--card-bg); 
    color: var(--white);
    transform: rotateY(180deg); 
    border: 3px solid var(--yellow); 
}

.flip-card-back p {
    font-size: 14px; 
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

/* --- SPECIAL "& MORE" CARD STYLING --- */

/* This forces the & MORE card to span the entire bottom row and pushes it down */
.more-card {
    grid-column: 1 / -1; 
    margin-top: 25px; /* Creates the extra gap from the row above */
}

.special-front {
    background-color: var(--yellow); 
    border: 3px dashed #1a2340; 
}

.special-front .dark-hint {
    color: #1a2340;
    opacity: 0.8;
}

/* --- REVIEWS SECTION STYLING --- */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    font-size: 18px;
}

.g-logo {
    height: 22px;
    width: 22px;
}

.review-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.reviewer-name {
    font-family: 'Oswald', sans-serif;
    color: var(--yellow);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.verified-badge {
    font-size: 12px;
    color: #2ecc71; /* Success Green */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* More Reviews Button */
.more-reviews-container {
    margin-top: 40px;
    text-align: center;
}

.secondary-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--yellow);
    color: var(--yellow);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: var(--yellow);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 229, 153, 0.3);
}

/* --- GLOBAL HEADING ALIGNMENT --- */
.info-block h2 {
    display: block; /* Allows centering */
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Specifically for sections with monkeys to keep text centered */
.text-content h2 {
    text-align: center;
    width: 100%;
}

/* --- HEADER INFO CENTER STYLING --- */

.header-info-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.header-status {
    font-size: 11px;
    font-weight: 700;
    color: #2ecc71; /* Green */
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot-small {
    height: 8px;
    width: 8px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 5px #2ecc71;
    animation: flashPulse 1.5s infinite;
}

.header-phone {
    color: var(--yellow);
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
}

/* Hide center info on very small screens to prevent crowding */
@media (max-width: 850px) {
    .header-info-center {
        display: none;
    }
}

/* --- OWNER TAG & FOOTER CTA STYLING --- */

.owner-tag {
    font-size: 1.1rem;
    color: var(--yellow) !important;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.footer-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.footer-btn {
    background: var(--yellow);
    color: #000;
    padding: 12px 35px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* --- DISPATCH PAGE SPECIFIC STYLING --- */

.dispatch-hero {
    height: 45vh; /* Shorter hero so they get straight to the form */
    background: linear-gradient(rgba(5, 8, 28, 0.8), rgba(5, 8, 28, 0.9)), url('hero-truck.jpg');
    background-size: cover;
    background-position: center;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--yellow);
    margin-top: -30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.urgent-badge {
    background: #d32f2f; /* Red for urgency */
    color: white;
    box-shadow: 0 0 20px rgba(211, 47, 47, 0.5);
    border: none;
}

.urgent-badge .live-dot {
    background: #fff;
    box-shadow: 0 0 10px #fff;
}

.dispatch-split {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.dispatch-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dispatch-form-container {
    flex: 1.2;
    background: var(--card-bg);
    border: 3px solid var(--yellow);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.form-header {
    background: var(--yellow);
    color: #000;
    padding: 30px;
    text-align: center;
}

.form-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    margin: 0 0 5px 0;
}

.form-header p {
    margin: 0;
    font-weight: 600;
}

.dispatch-form {
    box-shadow: none; /* Removes double shadow */
    margin-top: 0;
    border: none;
    border-radius: 0;
}

/* Sleek Contact Buttons (Phone & Email) */
.sleek-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: transparent; 
    color: var(--yellow);
    border: 2px solid var(--yellow);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 12px;
    margin: 15px 0; /* Tighter spacing between the two buttons */
    transition: all 0.3s ease;
    text-align: center;
}

.sleek-contact-btn.phone {
    font-size: 32px;
}

.sleek-contact-btn.email {
    font-size: 22px; /* Increased for better visibility without the icon */
}

.sleek-contact-btn:hover {
    transform: translateY(-5px);
    background: var(--yellow);
    color: #000;
    box-shadow: 0 10px 25px rgba(255, 229, 153, 0.3);
}

/* Make sure the long email doesn't break out of the box on mobile screens */
@media (max-width: 600px) {
    .sleek-contact-btn.email {
        font-size: 14.5px; /* Bumped up slightly */
        padding: 15px 10px;
    }
    .sleek-contact-btn.phone {
        font-size: 26px;
    }
}

/* Step-by-Step List */
.step-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    background: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 229, 153, 0.1);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    background: var(--yellow);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 229, 153, 0.4);
    transform: scale(1.1);
}

.step-text h3 {
    margin: 0 0 5px 0;
    color: var(--white);
    font-size: 1.2rem;
}

.step-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #b0bec5;
}

/* Mobile Adjustments for Dispatch Page */
@media (max-width: 900px) {
    .dispatch-split {
        flex-direction: column;
    }
    
    .dispatch-info, .dispatch-form-container {
        width: 100%;
    }
}

/* --- SERVICES PAGE STYLING --- */

.services-hero {
    height: 40vh;
    /* Keeps the dark blue overlay but gives it a slightly different tone */
    background: linear-gradient(rgba(10, 15, 40, 0.85), rgba(5, 8, 28, 0.95)), url('hero-truck.jpg');
    background-size: cover;
    background-position: center;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: -20px; /* Pulls it up slightly closer to the hero */
}

.service-detail-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers everything perfectly */
    text-align: center;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    border-color: var(--yellow);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(255, 229, 153, 0.1);
}

/* Polished Image Styling for PNG Cutouts */
.service-img {
    width: 100%;
    height: 140px; /* Perfectly sized so it doesn't overpower the text */
    object-fit: contain; /* CRUCIAL: Stops the image from being chopped off */
    margin-bottom: 25px;
    /* Removes the ugly box and adds a premium 3D floating shadow to the cutout */
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.4)); 
}

.service-detail-card h2 {
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    font-size: 26px;
    margin: 0;
    letter-spacing: 0.5px;
}

.service-divider {
    height: 3px;
    width: 50px;
    background: var(--yellow);
    margin: 15px auto; /* Keeps the yellow line centered */
}

.service-detail-card p {
    color: #b0bec5;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Pushes the link to the bottom so cards align nicely */
}

.service-link {
    color: var(--yellow);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 14px;
    transition: color 0.2s;
}

.service-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* MASSIVE CTA AT BOTTOM */
.massive-cta-section {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px dashed rgba(255, 229, 153, 0.3);
}

.massive-cta-section h2 {
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    font-size: 36px;
    margin-bottom: 5px;
}

.massive-cta-section p {
    color: #888;
    margin-bottom: 30px;
}

.massive-dispatch-btn-alt {
    display: inline-block;
    background: var(--yellow);
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    padding: 20px 50px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(255, 229, 153, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.massive-dispatch-btn-alt:hover {
    transform: translateY(-5px) scale(1.02);
    background: #fff;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
}

/* --- OUR WORK PAGE STYLING --- */

.work-hero {
    height: 40vh;
    background: linear-gradient(rgba(5, 8, 28, 0.7), rgba(15, 22, 46, 0.9)), url('hero-truck.jpg');
    background-size: cover;
    background-position: center;
}

/* Before & After Section */
.ba-container {
    display: flex;
    gap: 30px;
    margin-top: -20px;
}

.ba-card {
    flex: 1;
    background: var(--card-bg);
    border: 2px solid var(--yellow);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

/* INTERACTIVE SLIDER STYLING */
.image-comparison {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.img-after, .img-before {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.img-before {
    clip-path: inset(0 50% 0 0); /* Hides right half initially */
}

.comparison-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0; /* Invisible but draggable */
    z-index: 10;
    cursor: ew-resize;
}

.slider-line {
    position: absolute;
    top: 0; left: 50%;
    width: 4px; height: 100%;
    background: var(--yellow);
    z-index: 5;
    pointer-events: none; /* Allows dragging through it */
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(0,0,0,0.8);
}

.slider-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 45px; height: 45px;
    background: var(--yellow);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 22px;
    box-shadow: 0 0 15px rgba(0,0,0,0.8);
    border: 3px solid #000;
}

.ba-badge {
    position: absolute;
    bottom: 15px;
    background: var(--bg-dark);
    color: var(--yellow);
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 15px;
    border: 1px solid var(--yellow);
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.8);
    z-index: 5;
    pointer-events: none;
}

.left-badge { left: 15px; }
.right-badge { right: 15px; }

.ba-text {
    text-align: center;
    padding: 25px 20px 10px;
}

.ba-text h2 {
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    font-size: 24px;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
}

.ba-text p {
    font-size: 0.95rem;
    color: #b0bec5;
    line-height: 1.5;
    margin: 0;
}

/* Custom Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 60px 0;
}

.divider-line {
    height: 2px;
    background: #1a237e;
    flex: 0 0 150px;
}

.divider-box {
    width: 25px;
    height: 10px;
    background: var(--yellow);
    border-radius: 2px;
}

/* Work Gallery Grid */
.work-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.work-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.work-card:hover {
    transform: translateY(-8px);
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* NEW: Cinematic Image Zoom on Hover */
.work-img-container {
    width: 100%;
    height: 240px;
    overflow: hidden; /* Keeps the zooming image inside the box */
}

.work-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease; /* Smooth zoom animation */
}

.work-card:hover .work-img {
    transform: scale(1.08); /* Zooms in slightly */
}

.work-text {
    padding: 25px 20px;
    text-align: center;
}

.work-text h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    font-size: 20px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.work-text p {
    color: #b0bec5;
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .ba-container {
        flex-direction: column;
    }
}

/* --- FINAL POLISH (ACTIVE LINKS & TRUST SIGNALS) --- */

/* Active Link Highlighter */
.nav-links a.active-link {
    color: var(--yellow);
    border-bottom: 2px solid var(--yellow);
    padding-bottom: 4px;
}

/* Trust Mini Badge (Under Contact Info) */
.trust-mini-badge {
    text-align: center;
    font-size: 0.9rem;
    color: #8b9eb0;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.trust-mini-badge .stars {
    font-size: 14px;
    margin-right: 5px;
}

/* Privacy Note (Under Form) */
.privacy-note {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
    margin-bottom: 0;
    font-style: italic;
}

/* --- FINAL DISPATCH POLISH --- */

/* Guarantee Block styling to balance layout */
.guarantee-card {
    padding: 30px;
}

.guarantee-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px; /* Slightly increased gap since emojis are gone */
}

.guarantee-list li {
    display: flex;
    flex-direction: column; /* Stacks the title above the description */
    align-items: flex-start;
    gap: 5px;
    color: #b0bec5;
    font-size: 0.95rem;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.guarantee-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.guarantee-list strong {
    color: var(--yellow);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.g-icon {
    font-size: 1.4rem;
}

/* Fixing the Trust Badge Alignment on Dispatch Page */
.trust-mini-badge {
    display: flex;
    align-items: center; /* Ensures image and text are centered vertically */
    justify-content: center;
    gap: 10px;
    /* Removed old star styles */
}

.badge-img {
    height: 24px; /* Adjust based on your actual image size */
    width: auto;
}

/* Fixing the Badge size on the Homepage Reviews */
.badge-img-large {
    height: 28px; /* Slightly larger for homepage */
    width: auto;
}

/* The New "Active Emergency" Block under the form */
.priority-dispatch-card {
    text-align: center;
    padding: 30px;
    border: 2px dashed var(--yellow); 
    background: rgba(255, 229, 153, 0.03); 
    margin-top: 30px; /* Forces the perfect gap between the form and this box */
    border-radius: 12px; /* Rounds the corners to match the rest of the site */
}

/* Styling for the new image inside the Active Emergency block */
.priority-img {
    width: 100%;
    height: 180px; /* Keeps the container size predictable */
    /* CRUCIAL: 'contain' ensures the whole image is shown, never cropped */
    object-fit: contain; 
    margin-top: 20px;
    /* We remove the solid box border and shadow */
    border: none;
    border-radius: 0;
    box-shadow: none;
    /* We add the premium "floating" shadow filter instead */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}

/* Adds a slight pop effect when they hover over the emergency box */
.priority-dispatch-card:hover .priority-img {
    transform: scale(1.05);
}