/* --- RESET & VARIABLES --- */
:root {
    --teal: #0E4D56;
    --teal-dark: #09343a;
    --gold: #D4AF37; /* Premium Gold */
    --gold-hover: #b5952f;
    --sand: #F4F1EA;
    --white: #ffffff;
    --text-dark: #333333;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Clean, readable */
}

html {
    background-color: var(--teal-dark, #1a3c40); /* Camouflages the white gap */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-main); color: var(--text-dark); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- TOP BAR (The Offer) --- */
.top-bar {
    background-color: var(--gold);
    color: var(--teal-dark);
    text-align: center;
    padding: 8px 0;
    font-weight: bolder;
    font-size: 0.9rem;
    position: relative;
    /* Removed z-index (handled by wrapper) */
}

/* --- MAIN HEADER --- */
header {
    background-color: var(--teal);
    color: var(--white);
    width: 100%;
    /* REMOVED sticky and shadow from here (handled by wrapper) */
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header-placeholder {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    z-index: 1001; /* Highest priority */
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* Shadow under the WHOLE unit */
}

/* Logo Container */
.logo {
    display: flex; /* Aligns image and text side-by-side */
    align-items: center; /* Vertically centers them */
    gap: 10px; /* Space between logo image and text */
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white); /* Ensure "SoftWash" is white */
}

/* The "Peel" part color */
.logo span { 
    color: var(--gold); 
}

/* The Actual Logo Image */
.logo-img {
    height: 45px;
    width: auto;
    /* This adds a soft dark shadow behind the logo shape */
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.5)); 
}

/* Responsive adjustment for small phones */
@media (max-width: 480px) {
    .logo-img { height: 35px; }
    .logo { font-size: 1.2rem; }
}

/* Navigation Desktop */
.nav-menu { display: flex; gap: 25px; align-items: center; }
.nav-link { color: var(--sand); font-weight: 500; font-size: 1rem; }
.nav-link:hover { color: var(--gold); }

/* CTA Button */
.btn-quote {
    background-color: var(--gold);
    color: var(--teal-dark);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.btn-quote:hover { background-color: var(--gold-hover); }

/* Mobile Menu Toggle */
.hamburger { display: none; cursor: pointer; font-size: 1.8rem; color: var(--gold); }

/* --- FOOTER (SEO Powerhouse) --- */
footer {
    background-color: var(--teal-dark);
    color: var(--sand);
    padding: 50px 20px 20px;
    margin-top: 50px;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.footer-col h3 { color: var(--gold); margin-bottom: 15px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold); }
.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--teal);
        width: 100%;
        flex-direction: column;
        padding: 20px 0;
        gap: 20px;
        transform: translateY(-200%); /* Hidden by default */
        transition: 0.3s ease-in-out;
        z-index: 999;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .nav-menu.active { transform: translateY(0); }
    .top-bar { font-size: 0.8rem; }
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    width: 100%;
    height: 85vh; 
    min-height: 600px;
    /* ADJUSTED PATH BELOW */
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80'); 
    background-size: cover;
    background-position: center;
    /* Flexbox centering */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-call-alt {
    margin-top: 15px;
    font-size: 1rem;
    color: var(--sand);
}
.hero-call-alt a {
    color: var(--gold);
    text-decoration: underline;
}
.hero-call-alt a:hover {
    color: var(--white);
}


/* Dark Overlay to make text pop */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 77, 86, 0.75); /* Deep Teal overlay with 75% opacity */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

/* Typography */
.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-sub {
    font-size: 1.25rem;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--sand);
}

/* Buttons Container */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
}

/* Primary Hero Button (Gold) */
.btn-hero-primary {
    background-color: var(--gold);
    color: var(--teal-dark);
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    border: 2px solid var(--gold);
}
.btn-hero-primary:hover {
    background-color: transparent;
    color: var(--gold);
}

/* Secondary Hero Button (Transparent) */
.btn-hero-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    border: 2px solid var(--white);
}
.btn-hero-secondary:hover {
    background-color: var(--white);
    color: var(--teal-dark);
}

/* Trust Badge (Police Cleared) */
.trust-badge {
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 10px;
}
.trust-badge .check {
    font-size: 1.2rem;
    margin-right: 5px;
}

/* --- HERO RESPONSIVE --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 1rem; }
    .hero-btns { flex-direction: column; gap: 15px; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; }
}

/* --- HERO UPGRADES --- */

/* 1. The 5-Star Badge */
.hero-rating {
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sand);
    display: inline-block;
    background: rgba(0,0,0,0.3);
    padding: 5px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}
.hero-rating .stars {
    color: var(--gold);
    margin-right: 8px;
    font-size: 1.1rem;
}

/* 2. Entrance Animation */
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* 3. Bouncing Scroll Arrow */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    cursor: pointer;
}
.scroll-down span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 3px solid var(--white);
    border-right: 3px solid var(--white);
    transform: rotate(45deg);
    margin: -10px;
    animation: scrollBounce 2s infinite;
}
.scroll-down span:nth-child(2) { animation-delay: -0.2s; }
.scroll-down span:nth-child(3) { animation-delay: -0.4s; }

@keyframes scrollBounce {
    0% { opacity: 0; transform: rotate(45deg) translate(-20px, -20px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(20px, 20px); }
}

/* --- GLOBAL UTILITIES (Add these if missing) --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.text-center { text-align: center; }

/* --- SECTION 2: TRUST GRID --- */
.section-trust {
    padding: 80px 0;
    background-color: var(--sand); /* Light background to contrast with white */
}

/* Typography for Sections */
.section-title {
    font-size: 2.2rem;
    color: var(--teal-dark);
    margin-bottom: 15px;
    font-weight: 800;
}
.section-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px auto; /* Center align */
    color: var(--text-dark);
}

/* Grid Layout */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* The Cards */
.trust-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 4px solid transparent; /* Hidden border for hover effect */
}

.trust-card:hover {
    transform: translateY(-10px); /* Lift up effect */
    border-bottom: 4px solid var(--gold); /* Gold line appears */
}

/* Icons */
.icon-box {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    background: #eef4f5; /* Very light teal circle */
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.trust-card h3 {
    color: var(--teal);
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 700;
}

.trust-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .section-title { font-size: 1.8rem; }
}

/* --- SECTION 3: SERVICES --- */
.section-services {
    padding: 80px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive Grid */
    gap: 30px;
}

/* Service Card Design */
.service-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden; /* Keeps image corners rounded */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Makes all cards same height */
    text-decoration: none; /* Removes link underline */
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(14, 77, 86, 0.15); /* Teal shadow */
    border-color: var(--gold);
}

/* Image Container */
.service-img {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills box without stretching */
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05); /* Subtle zoom on hover */
}

/* Content */
.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Pushes button to bottom */
}

.service-content h3 {
    color: var(--teal);
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 700;
}

.service-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* The Link Text */
.btn-text {
    margin-top: auto; /* Pushes to bottom */
    color: var(--gold); /* Gold text */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.service-card:hover .btn-text {
    color: var(--teal-dark); /* Changes color on hover */
}

/* Add to style.css */
.service-card:hover .btn-text {
    padding-left: 5px; /* Slight movement */
    transition: 0.3s ease;
}

/* --- SECTION 4: REVIEWS --- */
.section-reviews {
    padding: 80px 0;
    background-color: var(--teal); /* Dark Background */
    color: var(--white);
}

/* Header Adjustments for Dark Background */
.section-header.light-text .section-title {
    color: var(--white);
}
.section-header.light-text .section-subtitle {
    color: var(--sand);
    opacity: 0.9;
}

/* Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Review Card */
.review-card {
    background: var(--teal-dark); /* Slightly darker than section bg */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1); /* Subtle border */
    position: relative;
}

/* The Quote Mark Visual */
.review-card::before {
    content: "“";
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    font-family: serif;
}

.review-card .stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--sand);
    font-size: 0.95rem;
}

/* Author Section */
.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.author-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    padding: 2px; /* Border effect */
}

.author-info strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}
.author-info span {
    font-size: 0.85rem;
    color: var(--gold); /* Highlight the location */
    text-transform: uppercase;
    font-weight: 700;
}

/* Bottom Link */
.reviews-cta {
    text-align: center;
    margin-top: 30px;
}
.reviews-cta a {
    color: var(--sand);
    text-decoration: underline;
    font-size: 0.9rem;
    opacity: 0.8;
}
.reviews-cta a:hover {
    color: var(--gold);
    opacity: 1;
}

/* --- SECTION 5: FORM CTA (Complete Fix) --- */
.section-cta {
    padding: 80px 0;
    background-color: var(--white);
}

.cta-box-split {
    background: linear-gradient(135deg, var(--gold) 0%, #e6c858 100%);
    border-radius: 12px;
    padding: 50px;
    display: flex;
    gap: 60px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* --- LEFT SIDE: TEXT & TICKET --- */
.cta-text-side {
    flex: 1;
    text-align: center;
}

.cta-text-side h2 {
    color: var(--teal-dark);
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.1;
}

/* The Coupon Ticket */
.discount-ticket {
    background-color: var(--white);
    border: 3px dashed var(--teal);
    padding: 20px;
    border-radius: 8px;
    margin: 0 auto 30px auto;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
}

.ticket-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.ticket-offer {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--teal);
    line-height: 1;
}

.ticket-sub {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-top: 5px;
}

.cta-short-desc {
    font-size: 1.1rem;
    color: var(--teal-dark);
    margin-bottom: 25px;
    font-weight: 500;
}

.cta-phone-fallback {
    font-size: 1rem;
    color: var(--teal-dark);
    line-height: 1.4;
}
.cta-phone-fallback a {
    color: var(--white);
    font-weight: 800;
    font-size: 1.4rem;
    text-decoration: none;
    display: block;
}
.cta-phone-fallback a:hover {
    color: var(--teal-dark);
}

/* --- RIGHT SIDE: FORM (STYLES FIXED HERE) --- */
.cta-form-side {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.form-group {
    margin-bottom: 15px; /* Tighter spacing */
}

/* Hide labels to keep it clean (use placeholders) */
.form-group label {
    display: none; 
}

/* INPUT STYLES (Make them pretty) */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px; /* Nice big clickable area */
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: #f9f9f9;
    transition: 0.3s;
}

/* Input Focus State */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    outline: none;
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(14, 77, 86, 0.1);
}

/* Submit Button */
.btn-submit {
    width: 100%;
    background-color: var(--teal);
    color: var(--white);
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .cta-box-split {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }
    .cta-text-side { text-align: center; }
    .discount-ticket { transform: rotate(0deg); width: 100%; }
}

/* --- SECTION 4.5: FAQ --- */
.section-faq {
    padding: 80px 0;
    background-color: #f9f9f9; /* Light Grey to separate from White/Teal sections */
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* The Individual Question Box */
.faq-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: var(--teal); /* Highlight border when open */
    box-shadow: 0 4px 10px rgba(14, 77, 86, 0.1);
}

/* The Question Text (Clickable Part) */
summary {
    padding: 20px;
    font-weight: 700;
    color: var(--teal-dark);
    cursor: pointer;
    list-style: none; /* Hides default triangle */
    position: relative;
    font-size: 1.05rem;
}

/* Custom "Plus" Icon */
summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 400;
    transition: transform 0.3s ease;
}

/* Turn Plus to Minus when open */
details[open] summary::after {
    transform: translateY(-50%) rotate(45deg); /* Rotates to X */
}

/* Remove default triangle in Webkit */
summary::-webkit-details-marker {
    display: none;
}

/* The Answer Text */
.faq-answer {
    padding: 0 20px 20px 20px;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid #f1f1f1;
    animation: slideDown 0.3s ease-out;
}

.faq-answer p { margin: 0; }
.faq-answer strong { color: var(--teal); }

/* Animation for smooth opening */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hover Effect */
.faq-item:hover {
    border-color: var(--gold);
}

/* --- SECTION 4.6: AREAS SERVED --- */
.section-areas-served {
    background-color: #f9f9f9;
    padding: 40px 0;
    border-bottom: 1px solid #eee; /* Subtle separator */
}

.section-areas-served h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--teal-dark);
}

.section-areas-served p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #555;
}

/* --- PAGE HEADER (Reusable) --- */
.page-header {
    background-color: var(--teal);
    background-image: linear-gradient(rgba(14, 77, 86, 0.9), rgba(14, 77, 86, 0.9)), url('images/soft-wash-mandurah-home.jpg'); 
    /* Uses the same hero image but darker/smaller */
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--sand);
    max-width: 600px;
    margin: 0 auto;
}

/* --- CONTACT PAGE LAYOUT --- */
.section-contact-page {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Left Column */
.contact-info-col {
    flex: 1;
}

.contact-info-col h2 {
    color: var(--teal-dark);
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-intro {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item .icon {
    font-size: 1.5rem;
    background: #f0f0f0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item strong {
    display: block;
    color: var(--teal-dark);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.info-link {
    font-size: 1.1rem;
    color: var(--teal);
    font-weight: 600;
}
.info-link:hover { color: var(--gold); }

/* The Map */
.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* Forces form inputs to stay inside the bounds of their parent container */
.form-box input, 
.form-box select, 
.form-box textarea {
    width: 100%;
    box-sizing: border-box; /* This is the magic fix! */
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 5px;
    font-family: inherit;
}

/* Right Column (Form) */
.contact-form-col {
    flex: 1;
}

.form-box {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-box h3 {
    color: var(--teal-dark);
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.form-sub {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

/* Reuse existing form styles, but make labels visible here for clarity */
.form-box label {
    display: block; /* Override the 'none' from homepage if desired, or keep hidden */
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--teal-dark);
    font-size: 0.9rem;
}
/* If you want labels visible on this page only: */
.contact-form-col .form-group label { display: block; }

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .page-header h1 { font-size: 2rem; }
}

/* --- SERVICE PAGE STYLES --- */

/* Intro Section */
.service-intro {
    padding: 80px 0;
    background-color: var(--white);
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Text Side */
.text-side { flex: 1; }

.sub-tag {
    display: inline-block;
    background-color: #f0f8fa;
    color: var(--teal);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.text-side h2 {
    color: var(--teal-dark);
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.text-side p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Benefit List */
.benefit-list { margin-top: 25px; }
.benefit-list li {
    margin-bottom: 10px;
    color: var(--teal-dark);
    font-weight: 600;
    display: flex;
    gap: 10px;
}

/* Image Side */
.image-side { flex: 1; position: relative; }

.feature-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.caption-box {
    background: var(--white);
    position: absolute;
    bottom: -20px;
    left: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid var(--gold);
}

.caption-box strong { display: block; color: var(--teal); }
.caption-box span { font-size: 0.9rem; color: #666; }

/* Process Section */
.service-process {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.process-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid #eee;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.2); /* Faded Gold */
    position: absolute;
    top: 10px;
    right: 20px;
}

.process-card h3 {
    color: var(--teal);
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative; /* Brings text above faded number */
}

.process-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
}

.center-btn-wrapper { text-align: center; }

/* Responsive */
@media (max-width: 900px) {
    .split-layout { flex-direction: column; }
    .caption-box { position: static; margin-top: -20px; width: 90%; margin-left: auto; margin-right: auto; }
}

/* --- SOLID BUTTON (For Light Backgrounds) --- */
.btn-solid {
    display: inline-block;
    background-color: var(--teal); /* Solid Teal Background */
    color: #ffffff !important;     /* Force White Text */
    padding: 16px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    border: none;
}

.btn-solid:hover {
    background-color: var(--teal-dark); /* Darker on hover */
    color: #ffffff !important;
    transform: translateY(-3px);        /* Moves up slightly */
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

/* --- SERVICES PAGE ADD-ONS --- */
.section-addons {
    padding-bottom: 80px;
    background-color: var(--white);
}

.addon-box {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.addon-text h2 {
    color: var(--teal-dark);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.addon-list {
    list-style: none;
    padding: 0;
}

.addon-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #555;
}

.addon-list strong {
    color: var(--teal);
}

/* Responsive */
@media (max-width: 768px) {
    .addon-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --- ABOUT PAGE STYLES --- */

.section-about {
    padding: 80px 0;
    background-color: var(--white);
}

.about-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-style: italic;
    color: var(--teal-dark);
}

/* Trust Bar Section */
.section-trust-bar {
    background-color: var(--teal);
    padding: 60px 0;
    color: var(--white);
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-badge-item .badge-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--gold);
}

.trust-badge-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Value Rows (Safety Guarantee) */
.value-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.value-row .check-icon {
    color: var(--white);
    background-color: var(--teal);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.value-row strong {
    display: block;
    color: var(--teal-dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.value-row p {
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .trust-bar-grid {
        grid-template-columns: 1fr 1fr; /* 2x2 on mobile */
    }
}

/* --- GALLERY COMING SOON --- */
.section-coming-soon {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.soon-box {
    background: var(--white);
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid var(--teal);
}

.soon-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite; /* Adds a gentle float animation */
}

.soon-box h2 {
    color: var(--teal-dark);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.soon-box p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Facebook Button */
.btn-facebook {
    display: inline-block;
    background-color: #1877F2; /* Facebook Blue */
    color: #ffffff !important;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
}

.btn-facebook:hover {
    background-color: #145dbf;
    transform: translateY(-2px);
}

/* Gentle Float Animation for the Icon */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Mobile Tweak */
@media (max-width: 480px) {
    .soon-box { padding: 40px 20px; }
    .soon-box h2 { font-size: 1.8rem; }
}

/* --- CONTACT PAGE GOLD SPECIFICS --- */

.gold-contact-details {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gold-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.4); /* Semi-transparent white */
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.gold-info-item .icon {
    font-size: 1.5rem;
}

.gold-info-item div {
    display: flex;
    flex-direction: column;
}

.gold-info-item strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--teal-dark);
    letter-spacing: 1px;
    opacity: 0.8;
}

.gold-info-item a, 
.gold-info-item span {
    font-size: 1.1rem;
    color: var(--teal-dark);
    font-weight: 700;
    text-decoration: none;
}

/* Mobile Alignment Fix */
@media (max-width: 900px) {
    .text-left-mobile {
        text-align: left !important; /* Forces left alignment on mobile for list */
    }
}

/* --- FAQ PAGE SPECIFICS --- */
.faq-category {
    max-width: 800px;
    margin: 0 auto 60px auto; /* Spacing between categories */
}

.category-title {
    font-size: 1.8rem;
    color: var(--teal-dark);
    margin-bottom: 25px;
    padding-left: 10px;
    border-left: 5px solid var(--gold); /* Visual marker */
}

/* --- SERVICE AREA PAGE --- */
.suburbs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.suburb-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
    border-left: 4px solid var(--teal); /* Teal accent */
}

.suburb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: #fdfdfd;
}

.suburb-card h3 {
    color: var(--teal-dark);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.suburb-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.link-arrow {
    color: var(--teal);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.suburb-card.other-areas {
    border-left-color: #ccc;
    background-color: #f4f4f4;
    cursor: default; /* Not clickable */
}
.suburb-card.other-areas:hover {
    transform: none;
    box-shadow: none;
}

/* --- MOBILE STICKY CALL BAR --- */
.mobile-sticky-bar {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }

    .sticky-btn {
        flex: 1;
        padding: 15px;
        text-align: center;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.9rem;
        text-decoration: none;
        color: white;
    }

    .sticky-call {
        background-color: var(--teal);
    }
    
    .sticky-quote {
        background-color: var(--gold);
        color: var(--teal-dark);
    }
    
    /* Make sure footer doesn't get hidden behind the bar */
    footer {
        padding-bottom: 60px; 
    }
}

/* Container spacing */
.location-cloud {
    line-height: 2.5; /* Adds space between rows of buttons */
}

/* The Button Styling */
.location-cloud a {
    background-color: #E6F0F1; /* Light version of your theme color */
    color: #0E4D56; /* Your main theme color */
    padding: 6px 14px; /* Space inside the button */
    border-radius: 50px; /* Makes edges round (Pill shape) */
    text-decoration: none; /* Removes underline */
    font-weight: 600;
    margin: 0 4px; /* Space between buttons */
    white-space: nowrap; /* Keeps suburb names on one line */
    transition: all 0.3s ease; /* Smooth hover animation */
    display: inline-block;
}

/* Hover Effect - What happens when mouse goes over */
.location-cloud a:hover {
    background-color: #0E4D56;
    color: #ffffff;
    transform: translateY(-2px); /* Moves button up slightly */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* PRICING TABLE STYLES */
.pricing-card {
    background: white;
    border-radius: 10px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}



.pricing-card.popular {
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: scale(1.05);
    z-index: 2;
}

.popular-badge {
    background: var(--gold);
    color: var(--teal-dark);
    text-align: center;
    font-weight: bold;
    font-size: 0.8rem;
    padding: 5px;
}

.card-header {
    background: #f4f4f4;
    padding: 30px 20px;
    text-align: center;
}

.pricing-card.popular .card-header {
    background: var(--teal-dark);
    color: white;
}

.card-header h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.card-header .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal);
}

.pricing-card.popular .card-header .price {
    color: var(--gold);
}

.save-tag {
    background: #e1f5f3;
    color: var(--teal-dark);
    display: inline-block;
    padding: 2px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 5px;
}

.card-body {
    padding: 30px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1;
}

.card-body li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* RATE ROWS */
.rate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    border-left: 4px solid var(--teal);
}

.rate-name h4 { margin: 0; color: var(--teal-dark); }
.rate-name p { margin: 0; font-size: 0.9rem; color: #666; }
.rate-price { font-weight: bold; font-size: 1.2rem; color: var(--teal-dark); }

@media (max-width: 768px) {
    .pricing-card.popular { transform: scale(1); margin: 20px 0; }
}

/* SOLID BUTTON (For the 'Popular' Package 2) */
.btn-solid {
    background-color: var(--teal-dark);
    color: white; /* White text looks good here */
    border: 2px solid var(--teal-dark);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-solid:hover {
    background-color: transparent;
    color: var(--teal-dark); /* Turns teal on hover */
}

/* OUTLINE BUTTON (For Packages 1 & 3 - THE FIX) */
.btn-outline {
    background-color: transparent;
    color: var(--teal-dark); /* CHANGE: Text is now Teal, not white */
    border: 2px solid var(--teal-dark); /* Teal Border */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--teal-dark);
    color: white; /* Turns white on hover */
}

/* Helper to make buttons stretch across the card */
.full-width {
    display: block;
    width: 100%;
    text-align: center;
}

/* =========================================
   NEW HEADER STYLES (2026 Modern Layout)
   ========================================= */

/* --- TOP BAR --- */
.top-bar {
    background-color: var(--gold);
    color: var(--teal-dark);
    text-align: center;
    padding: 8px 0;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1002;
    position: relative;
}

/* --- MAIN HEADER --- */
header#main-header {
    background-color: var(--teal);
    width: 100%;
    height: 80px; /* Fixed height prevents layout shift */
    position: sticky; /* Modern sticky positioning */
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- LOGO --- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.3));
}

.logo-text {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.logo-text span {
    color: var(--gold);
}

/* --- DESKTOP NAV --- */
.desktop-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.desktop-nav a {
    color: var(--sand);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
    padding: 25px 0; /* Increases hover area */
}

.desktop-nav a:hover {
    color: var(--white);
}

/* Underline Animation */
.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 20px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s;
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* --- DROPDOWN MENU --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%; /* Drops directly below */
    left: 0;
    border-radius: 0 0 5px 5px;
    border-top: 3px solid var(--gold);
}

.dropdown-content a {
    color: var(--teal-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: var(--teal);
}
.dropdown-content a::after { display: none; } /* No underline in dropdown */

.dropdown:hover .dropdown-content {
    display: block;
}

/* --- HEADER CTA BUTTON --- */
.btn-quote-header {
    background-color: var(--gold);
    color: var(--teal-dark);
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-quote-header:hover {
    background-color: var(--white);
    color: var(--teal-dark);
    transform: translateY(-2px);
}

/* --- HAMBURGER ICON (Mobile Only) --- */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
}

/* --- MOBILE NAV DRAWER (Hidden by default) --- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -280px; /* Hidden off-screen */
    width: 280px;
    height: 100vh;
    background-color: var(--teal-dark);
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    transition: right 0.4s ease-in-out;
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
}

.mobile-nav.active {
    right: 0; /* Slide in */
}

.mobile-nav a {
    color: var(--sand);
    padding: 15px 30px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav a:hover {
    background-color: rgba(255,255,255,0.05);
    color: var(--gold);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--gold);
    cursor: pointer;
}

.mobile-quote-btn {
    background: var(--gold);
    color: var(--teal-dark) !important;
    font-weight: bold;
    text-align: center;
    margin: 20px;
    border-radius: 5px;
}

/* Dark Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none; /* Hidden */
}

.overlay.active {
    display: block;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 900px) {
    .desktop-nav { display: none; } /* Hide desktop menu */
    .hamburger { display: flex; } /* Show hamburger */
    .header-cta { display: none; } /* Hide Quote button (it's inside menu now) */
    
    .logo-text { font-size: 1.2rem; }
    .logo-img { height: 35px; }
}

/* --- Sticky Footer Styles --- */

/* 1. Base Hidden State (Desktop) */
.sticky-footer {
    display: none; 
}

/* 2. Mobile Display Only */
@media (max-width: 768px) {
    
    /* Push website content up so buttons don't cover text */
    body {
        padding-bottom: 80px !important; 
    }

    .sticky-footer {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 99999;
        background: rgba(255, 255, 255, 0.95); /* Slight transparency */
        backdrop-filter: blur(5px); /* Modern 'frosted glass' effect */
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15); /* Stronger shadow for depth */
        padding: 12px 15px; /* Comfortable spacing */
        justify-content: center;
        gap: 12px; /* Space between buttons */
        box-sizing: border-box;
    }

    .sticky-btn {
        flex: 1; /* Both buttons take equal width */
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px; /* Space between icon and text */
        padding: 14px 10px;
        border-radius: 8px; /* Soft corners */
        text-decoration: none;
        font-family: 'Arial', sans-serif; /* Replace with your site font if known */
        font-weight: 700;
        font-size: 16px;
        letter-spacing: 0.5px;
        transition: transform 0.1s ease, opacity 0.2s;
        line-height: 1;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    /* Active State (When tapped) */
    .sticky-btn:active {
        transform: scale(0.97); /* Subtle "press" animation */
        opacity: 0.9;
    }

    /* --- BRAND COLORS --- */

    /* The "Call" Button: Professional, Trustworthy Teal */
    .call-btn {
        background-color: #0E4D56; 
        color: #ffffff;
        border: 1px solid #0E4D56;
    }

    /* The "Quote" Button: High-Contrast "Action" Orange */
    .quote-btn {
        background-color: var(--gold);; 
        color: #ffffff;
        border: 1px solid var(--gold);;
    }
    
    /* SVG Icon Alignment */
    .sticky-btn svg {
        margin-bottom: 2px; /* Visual balance adjustment */
    }
}
/* =============================
   MOBILE STICKY FOOTER (STRAIGHT RECTANGLES)
   ============================= */
.mobile-sticky-bar {
    display: none; /* Hidden on Desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    height: 60px; /* Taller touch targets */
}

/* Common Styles for Both Buttons */
.sticky-btn {
    flex: 1; /* Split 50/50 */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 800; /* Extra Bold */
    font-family: 'Arial', sans-serif; /* Clean sans-serif */
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 8px; /* Space between icon and text */
    
    /* ENSURE STRAIGHT RECTANGLES */
    border-radius: 0 !important; 
    border: none;
}

/* LEFT BUTTON: CALL NOW (Dark Teal) */
.sticky-call {
    background-color: #1B3B48; /* Dark Brand Teal */
    color: #ffffff !important;
}

/* RIGHT BUTTON: GET QUOTE (Gold from your image) */
.sticky-quote {
    background-color: var(--gold);; /* The specific gold/mustard from your swatch */
    color: #000000 !important; /* Dark text for contrast */
}

/* Icon styling */
.sticky-btn span {
    font-size: 1.3rem; /* Slightly larger icons */
}

/* SHOW ON MOBILE ONLY */
@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
    }
    
    /* Push content up so footer isn't hidden */
    body {
        padding-bottom: 60px; 
    }
}

/* ==========================================================================
   Peel Soft Wash - Success Page Styles
   Scoped to .success-wrapper to prevent overriding existing site styles
   ========================================================================== */

.success-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh; 
    padding: 20px;
    font-family: system-ui, -apple-system, sans-serif;
    background-color: #f8fafc; 
    color: #334155;
    box-sizing: border-box;
}

.success-wrapper * {
    box-sizing: border-box;
}

.success-wrapper .card {
    background: #ffffff;
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 40px;
    text-align: center;
}

.success-wrapper .success-icon {
    background-color: #10b981; 
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.success-wrapper h1 {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: #0f172a;
}

.success-wrapper .subtitle {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.5;
}

.success-wrapper .process-box {
    background-color: #f1f5f9;
    border-radius: 8px;
    padding: 25px;
    text-align: left;
    margin-bottom: 30px;
}

.success-wrapper .process-box h3 {
    margin: 0 0 20px 0;
    color: #0f172a;
    font-size: 18px;
    text-align: center;
}

.success-wrapper .step-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.success-wrapper .step-row:last-child {
    margin-bottom: 0;
}

.success-wrapper .step-circle {
    background-color: #0284c7; 
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0; 
}

.success-wrapper .step-content {
    line-height: 1.5;
    font-size: 15px;
}

.success-wrapper .step-content strong {
    color: #0f172a;
}

.success-wrapper .guarantee-badge {
    background-color: #fffbeb; 
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.5;
    color: #92400e;
}

.success-wrapper .btn {
    display: inline-block;
    background-color: #0284c7; 
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.success-wrapper .btn:hover {
    background-color: #0369a1; 
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .success-wrapper .card {
        padding: 25px 15px;
    }
    
    .success-wrapper h1 {
        font-size: 24px;
    }
}

/* --- TOP BAR (The Offer) --- */
.top-bar {
    background-color: var(--gold);
    color: var(--teal-dark);
    padding: 8px 15px; /* Kept your 8px top/bottom, added 15px sides for mobile */
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1002;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 15px; /* Space between the offer and the fine print */
}

/* The Main Hook (Inherits all the uppercase/bold styling from .top-bar) */
.offer-text {
    text-align: center;
}

/* The Legal Stuff */
.terms-text {
    font-size: 0.7rem;
    font-weight: 500; /* Dropped the weight so it doesn't fight the main offer */
    text-transform: none; /* Turned off uppercase so it's actually readable */
    letter-spacing: 0px;
    opacity: 0.85; /* Fades it slightly into the gold background */
    background-color: rgba(0, 0, 0, 0.08); /* Adds a very subtle dark pill behind the terms */
    padding: 3px 10px;
    border-radius: 12px;
    white-space: nowrap; /* Keeps it on one line on desktop */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column; /* Stacks the offer on top of the terms */
        gap: 5px;
    }
    
    .terms-text {
        font-size: 0.65rem;
        white-space: normal; /* Allows the terms to wrap on tiny phone screens */
    }
}

/* =========================================
   BLOG POST STYLES
   ========================================= */

/* Hero Section */
.blog-hero {
    background-color: var(--teal-dark, #004d40);
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-category {
    color: var(--gold, #ffeb3b);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

.blog-hero h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin: 15px 0;
    line-height: 1.2;
}

.blog-meta {
    color: #a7e0d7;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Blog Body Typography & Layout */
.blog-body {
    padding: 50px 20px;
    background-color: #ffffff;
}

.blog-container {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333333;
}

.blog-container .lead-text {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
}

.blog-container h2 {
    color: var(--teal-dark, #004d40);
    margin-top: 45px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* SEO Internal Links */
.blog-container a {
    color: var(--teal-dark, #004d40);
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: var(--gold, #ffeb3b);
    text-decoration-thickness: 2px;
    transition: all 0.3s ease;
}

.blog-container a:hover {
    background-color: var(--gold, #ffeb3b);
    color: #000;
}

/* Custom Ordered List */
.custom-list {
    margin: 20px 0 30px 20px;
    padding-left: 20px;
}

.custom-list li {
    margin-bottom: 15px;
}

/* Trust Callout Box */
.blog-callout {
    background-color: #f4f8fb;
    border-left: 5px solid var(--gold, #ffeb3b);
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
}

.blog-callout h3 {
    margin-top: 0;
    color: var(--teal-dark, #004d40);
    font-size: 1.4rem;
}

/* =========================================
   BOTTOM CTA & FORM SECTION
   ========================================= */
.blog-cta-section {
    background: linear-gradient(135deg, var(--gold, #ffeb3b) 0%, #e6c858 100%);
    padding: 70px 20px;
}

.cta-box-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-text-side {
    flex: 1;
}

.cta-text-side h2 {
    color: var(--teal-dark, #004d40);
    font-size: 2.2rem;
    margin-top: 0;
}

.btn-solid-phone {
    display: inline-block;
    background-color: var(--teal-dark, #004d40);
    color: #ffffff !important;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 15px;
}

.cta-form-side {
    flex: 1;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

.btn-submit {
    width: 100%;
    background-color: var(--teal-dark, #004d40);
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 1.8rem;
    }
    
    .cta-box-split {
        flex-direction: column;
        text-align: center;
    }

    .mobile-sticky-bar {
        display: flex;
    }
    
    body.blog-post {
        padding-bottom: 70px; /* Accounts for the sticky bottom bar */
    }
}

/* Mobile Sticky Bar Fixes */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0 !important;
    left: 0;
    width: 100%;
    display: none;
    z-index: 9999;
    margin-bottom: 0 !important;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
}

.sticky-btn {
    flex: 1;
    text-align: center;
    padding: 16px 0;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.sticky-call { background-color: var(--teal-dark, #004d40); color: white; }
.sticky-quote { background-color: var(--gold, #ffeb3b); color: var(--teal-dark, #004d40); }

/* =========================================
   BLOG HUB (GRID) STYLES
   ========================================= */

.blog-feed {
    padding: 80px 20px;
    background-color: #f4f7f6; /* Soft gray background to make the white cards pop */
}

/* The Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Blog Cards */
.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,77,64,0.15); /* Adds a subtle teal glow on hover */
}

/* Card Image Area */
.card-image-wrapper {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
    background-color: var(--teal-dark, #004d40); /* Fallback color if image breaks */
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .card-image-wrapper img {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--gold, #ffeb3b);
    color: var(--teal-dark, #004d40);
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* Card Text Content */
.card-content {
    padding: 25px;
    flex-grow: 1; /* Pushes the 'read more' link to the bottom evenly across all cards */
    display: flex;
    flex-direction: column;
}

.card-content h2 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-content h2 a {
    color: var(--teal-dark, #004d40);
    text-decoration: none;
    transition: color 0.2s ease;
}

.card-content h2 a:hover {
    color: var(--gold, #d4af37);
}

.card-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-more {
    display: inline-block;
    color: var(--teal-dark, #004d40);
    font-weight: bold;
    text-decoration: none;
    font-size: 1.05rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
    align-self: flex-start;
}

.read-more:hover {
    color: var(--gold, #d4af37);
    border-bottom: 2px solid var(--gold, #ffeb3b);
}

/* =========================================
   MOBILE STICKY BAR (THE FIX)
   ========================================= */

/* 1. Base Style (Hidden on Desktop) */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0 !important;
    left: 0;
    width: 100%;
    display: none; /* Hides it on computer screens */
    z-index: 9999;
    margin-bottom: 0 !important;
    padding-bottom: env(safe-area-inset-bottom); /* Fixes iPhone gap */
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

/* Button Styling */
.sticky-btn {
    flex: 1;
    text-align: center;
    padding: 16px 0;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.sticky-call { 
    background-color: var(--teal-dark, #004d40); 
    color: white !important; 
}

/* Change this exact block in your CSS */
.sticky-form-btn { 
    background-color: var(--gold, #ffeb3b); 
    color: var(--teal-dark, #004d40) !important; 
}

/* 2. Mobile Activation (Must be at the bottom) */
@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex !important; /* Forces it to show on phones */
    }
    
    body {
        padding-bottom: 70px !important; /* Prevents the bar from covering your footer */
    }
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */

.section-testimonials {
    padding: 60px 0;
    background-color: #ffffff;
    border-top: 1px solid #eee;
}

.testimonials-header {
    margin-bottom: 40px;
}

.testimonials-header h2 {
    color: #0E4D56;
}

.testimonials-header p {
    color: #666;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f4f8fb;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.testimonial-card .stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonial-card .review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-card .reviewer strong {
    color: #0E4D56;
}

.testimonial-card .reviewer span {
    font-size: 0.85rem;
    color: #777;
}