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

body {
    line-height: 1.7;
    color: #4a4a4a;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding-bottom: 0; 
}

/* SVG Safety Fix */
svg {
    max-width: 100%;
}

/* LIGHTBOX STYLES (New) */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10001;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    border-radius: 5px;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

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

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 10000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: none;
    width: 95%;
    max-width: 550px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

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

.close-modal {
    color: #fff;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.8;
}

.close-modal:hover { opacity: 1; }

/* Header Social Icons */
.header-social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 20px;
}

.header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-social a:hover {
    background-color: #f4b941;
    transform: translateY(-2px);
}

/* FIX: Ensure icons are small and white */
.header-social svg, .header-social img {
    width: 16px;
    height: 16px;
    fill: white;
    display: block;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
    .header-social {
        display: none; 
    }
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
}

.btn {
    display: inline-block;
    background-color: #2c3e50;
    color: white;
    padding: 15px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
    white-space: nowrap; /* Prevent button text wrapping */
}

.btn:hover {
    background-color: #1e2e3f;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-red {
    background-color: #f4b941;
}

.btn-red:hover {
    background-color: #f4b941;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #2c3e50;
    color: #2c3e50;
}

.btn-secondary:hover {
    background-color: rgba(44, 62, 80, 0.1);
    color: #1e2e3f;
}

.section {
    padding: 80px 0;
}

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

ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

/* Header Styles */
.top-header {
    background: linear-gradient(90deg, #2c3e50 0%, #1e2e3f 100%);
    color: white;
    padding: 5px 0; /* Drastically reduced from 10px+ */
    position: relative;
    z-index: 100;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px; /* Force a fixed, slim height */
}

.brand-section {
    display: flex;
    align-items: center;
}

.company-logo {
    margin-right: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* FIXED LOGO SCALING ISSUE */
.logo-image {
    height: auto; 
    width: 220px; /* Slightly smaller logo to help with header height */
    max-width: 50vw;
    transform: none; 
    margin: 0;
}

/* Right Side Header Alignment */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: nowrap; /* Forces items to stay on one line */
}

.call-section {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: max-content; /* Prevents squishing */
}

.call-text {
    font-size: 13px; /* Slightly smaller text */
    display: block;
    margin-bottom: 2px;
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    white-space: nowrap; /* PREVENTS WRAPPING */
}

.phone-number {
    font-size: 22px; /* Slightly smaller phone */
    font-weight: 700;
    color: white;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    white-space: nowrap; /* PREVENTS WRAPPING */
    line-height: 1.1;
}

.header-right .btn {
    background-color: #f4b941;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    padding: 10px 20px; /* Smaller header button */
}

/* Main Menu */
.nav-bar {
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
}

.main-menu {
    display: flex;
    justify-content: flex-start;
}

.menu-list {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
}

.menu-list li {
    margin: 0;
}

.menu-list a {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
    padding: 12px 20px;
    display: block;
    white-space: nowrap;
}

.menu-list a:hover {
    color: #2c3e50;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    fill: #2c3e50;
}


.simple-value-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
}

.simple-value-list li {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 16px;
    position: relative;
    padding-left: 20px;
}

.simple-value-list li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.form-banner {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    font-size: 18px;
}

.form-step {
    display: none;
    animation: fadeIn 0.4s;
}

.form-step.active {
    display: block;
}

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

.form-progress {
    height: 4px;
    background: #eee;
    margin-bottom: 20px;
    border-radius: 2px;
}

.progress-bar {
    height: 100%;
    background: #f4b941;
    width: 33%;
    transition: width 0.3s ease;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.radio-option:hover {
    border-color: #f4b941;
    background: #fffdf5;
}

.radio-option input {
    margin-right: 15px;
}


.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    background-color: white;
    font-family: 'Montserrat', sans-serif;
}

.btn-link-back {
    background: none;
    border: none;
    color: #888;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 15px;
    display: block;
    width: 100%;
    font-size: 13px;
}

/* Trust Signals Section */
.trust-signals {
    padding: 40px 0;
    background-color: white;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trust-signals h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.trust-signals-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.trust-signal-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 200px;
}

.trust-signal-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-signal-icon img {
    max-width: 100%;
    max-height: 100%;
}

.trust-signal-text {
    font-size: 14px;
    line-height: 1.4;
    color: #4a4a4a;
}

.trust-signal-text strong {
    display: block;
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 5px;
}

/* VIDEO SECTION (NEW) */
.video-section {
    padding: 60px 0;
    background-color: #f0f4f8;
    text-align: center;
}

.video-section h2 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 10px;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #666;
}

/* New Grid Layout for 2 Videos */
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.video-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

/* Reuse wrapper but ensure it fits the grid cell */
.video-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    box-shadow: none;
}

.video-wrapper video {
    height: 400px;       /* Fixed height for uniformity */
    width: auto;         /* Width adjusts automatically */
    max-width: 100%;     /* Prevents overflow */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
    background-color: #000;
}

/* Mobile: Stack them on top of each other */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 40px;
    }
    
    .video-wrapper video {
        height: 350px; /* Slightly smaller on mobile */
    }
}

/* Location Badge */
.location-badge {
    display: inline-flex;
    align-items: center;
    background-color: #2c3e50;
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.location-badge svg {
    margin-right: 8px;
    fill: white;
    width: 14px;
    height: 14px;
}


/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: #fff;
}

.gallery h2 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
}

.gallery-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
}

.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

.gallery-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.side-by-side-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start; /* Aligns tops of images */
}

.img-wrapper {
    flex: 1;
    position: relative;
    cursor: zoom-in;
}

.img-wrapper img {
    width: 100%;
    height: auto;        /* Let height be natural */
    max-height: 500px;   /* Cap it so super tall phones don't take up whole screen */
    object-fit: contain; /* Ensures 100% of the photo is visible */
    border-radius: 5px;
    display: block;
    transition: opacity 0.3s;
    background-color: #f0f0f0; /* Light gray background in case images are different sizes */
}

.img-wrapper:hover img {
    opacity: 0.9;
}

.img-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(44, 62, 80, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.before-label { background-color: rgba(0,0,0,0.6); }
.after-label { background-color: #f4b941; color: #2c3e50; }

.gallery-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.gallery-content p {
    font-size: 16px;
    color: #555;
    font-style: italic;
}

@media (max-width: 768px) {
    .side-by-side-container {
        flex-direction: column;
    }
    .img-wrapper img {
        height: 250px;
    }
}

/* --- UPDATED PORTFOLIO (Masonry / Pinterest Style) --- */
.portfolio {
    padding: 60px 0;
    background-color: white;
}

.portfolio h2 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
}

.portfolio-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #666;
}

.portfolio-grid {
    /* MASONRY MAGIC */
    column-count: 3; /* 3 Columns like Pinterest */
    column-gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    /* Prevents items from splitting across columns */
    break-inside: avoid; 
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: zoom-in;
    /* REMOVE FIXED HEIGHT so we see the whole shower */
    height: auto; 
    display: inline-block; /* Keeps block intact */
    width: 100%;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.portfolio-image {
    width: 100%;
    height: auto; /* Adjusts to natural photo height */
    display: block;
}

/* TABLET (2 Columns) */
@media (max-width: 900px) {
    .portfolio-grid {
        column-count: 2;
    }
}

/* MOBILE (1 Column - Big and skimmable) */
@media (max-width: 600px) {
    .portfolio-grid {
        column-count: 1;
    }
    .portfolio h2 {
        font-size: 28px;
    }
}

/* NEW OWNER SECTION STYLES */
.owner-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.owner-image {
    flex: 1;
    position: relative;
}

.owner-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    display: block;
    margin: 0 auto;
}

.owner-content {
    flex: 1;
}

.owner-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.2;
}

.owner-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #4a4a4a;
}

.owner-signature {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #f4b941;
    font-style: italic;
    margin-bottom: 25px;
}

.owner-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.owner-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    font-size: 18px;
}

.owner-contact a svg {
    fill: #f4b941;
}

@media (max-width: 768px) {
    .owner-container {
        flex-direction: column;
        text-align: center;
    }
    .owner-contact {
        align-items: center;
    }
    .owner-image {
        margin-bottom: 30px;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq h2 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
}

.faq-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-column {
    flex: 1 1 400px;
}

.accordion {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background-color: white;
}

.accordion-header {
    background-color: white;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2c3e50;
    border-bottom: 1px solid #f0f0f0;
}

.accordion-header::after {
    content: "+";
    font-size: 20px;
    transition: transform 0.3s ease;
    color: #f4b941;
}

.accordion-header.active {
    border-bottom-color: transparent;
}

.accordion-header.active::after {
    content: "-";
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
}

.accordion-content-inner {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1584622781564-1d987f7333c1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.final-cta .phone-large {
    font-size: 24px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.final-cta .phone-large svg {
    margin-right: 10px;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1 1 250px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #f4b941;
}

.footer-col p {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 14px;
}

.footer-col a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #f4b941;
    transform: translateY(-3px);
}

/* FIXED FOOTER ICONS */
.footer-social svg, .footer-social img {
    width: 18px;
    height: 18px;
    fill: white;
    object-fit: contain;
}

/* License Info Section */
.license-info {
    background-color: #ffffff;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.license-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.license-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.license-item svg {
    width: 20px;
    height: 20px;
    fill: #2c3e50;
    margin-right: 10px;
}

.license-item span {
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
}

.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    padding: 12px 15px; /* Bigger touch targets */
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid #eee;
}

.mobile-bottom-bar a {
    flex: 1;
    text-align: center;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-call-btn {
    background-color: white;
    border: 2px solid #2c3e50;
    color: #2c3e50;
}

.mobile-quote-btn {
    background-color: #f4b941;
    color: #2c3e50;
    box-shadow: 0 4px 10px rgba(244, 185, 65, 0.4);
}

/* Ensure body has padding so bar doesn't cover content */
@media (max-width: 768px) {
    body { padding-bottom: 80px; }
    .mobile-bottom-bar { display: flex; }
}

/* ADD THIS TO THE BOTTOM OF style.css (OR REPLACE IF IT EXISTS) */

/* EMBEDDED FORM STYLES (New) */
.embedded-form {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* Strong shadow to pop off background */
    overflow: hidden;
    height: 100%;
}

/* Ensure Form Step Animation works without modal */
.form-step {
    display: none;
    animation: fadeIn 0.4s;
    padding-bottom: 10px;
}
.form-step.active { display: block; }

.badge-item {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 10px 18px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.badge-item svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    fill: #2ecc71; /* Green checkmark */
}

.badge-item span {
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.mini-gallery-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    font-weight: 600;
}

.mini-gallery-grid {
    display: flex;
    gap: 15px;
}

.mini-gallery-grid img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.8);
    cursor: zoom-in;
    transition: transform 0.2s, border-color 0.2s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.mini-gallery-grid img:hover {
    transform: scale(1.05);
    border-color: #f4b941;
}


.embedded-form {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Compact Radio Styles */
.compact-radio .radio-option {
    padding: 12px 15px;
    margin-bottom: 0;
    border: 1px solid #eee;
}
.compact-radio { gap: 8px; }


.badge-item {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 10px 18px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.badge-item svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    fill: #2ecc71; /* Green checkmark */
}

.badge-item span {
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.embedded-form {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    padding: 25px; /* Clean padding */
}

/* CONSOLIDATED HERO STYLES */
.hero {
    /* Ensure this URL is your high-res 'After' shot */
    background: url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    position: relative;
    padding: 60px 0; /* Reduced padding for mobile density */
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient makes text readable but keeps image visible */
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Pushes content and form apart */
    gap: 40px;
}

.hero-content {
    flex: 0 0 50%;
    color: white;
}

.hero h1 {
    font-size: 38px; /* High legibility */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
    color: #f0f0f0;
    font-weight: 400;
}

/* Make the form pop */
.hero-visual-proof {
    flex: 0 0 450px; /* Fixed width for form */
    max-width: 100%;
}

.embedded-form {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5); /* Deep shadow to lift off page */
    padding: 25px;
    border-top: 5px solid #f4b941; /* Gold accent bar */
}

.form-banner {
    background: none;
    color: #2c3e50;
    text-align: left;
    padding: 0 0 15px 0;
    font-weight: 700;
    font-size: 22px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

/* TRUST BADGES IN HERO */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.badge-item {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    padding: 8px 15px;
    border-radius: 4px;
    border-left: 3px solid #f4b941;
}

.badge-item span {
    color: white;
    font-size: 13px;
    font-weight: 600;
    margin-left: 10px;
}

.badge-item svg {
    fill: #f4b941;
    width: 16px;
    height: 16px;
}

@media (max-width: 900px) {
    .hero { min-height: auto; padding: 40px 0; }
    .hero-container { flex-direction: column; }
    .hero-content { flex: 0 0 100%; text-align: center; margin-bottom: 30px; }
    .hero-visual-proof { width: 100%; }
    .hero-trust-badges { justify-content: center; }
    .hero-overlay { background: rgba(0,0,0,0.75); } /* Darker on mobile for readability */
}

/* Special Offer Highlight Tag */
.offer-highlight {
    display: inline-block;
    background-color: #e74c3c; /* Valentine Red */
    color: white;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    border: 1px solid rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Adjust Select Dropdown arrow */
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
}

/* Make the form button throb slightly to catch eye */
#hero-submit {
    background-color: #f4b941;
    color: #2c3e50;
    border: none;
    box-shadow: 0 4px 0 #dda026; /* 3D effect */
}
#hero-submit:active {
    box-shadow: 0 2px 0 #dda026;
    transform: translateY(2px);
}

/* Refined Hero Overlay for better brightness */
.hero-overlay {
    background: linear-gradient(to right, rgba(20, 30, 40, 0.9) 0%, rgba(20, 30, 40, 0.7) 40%, rgba(20, 30, 40, 0.2) 100%);
}

/* --- NEW HERO STYLES (FB AD STYLE) --- */

/* Rating Bar Styles */
.rating-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #2c3e50;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-divider {
    color: #ccc;
    font-size: 18px;
}

/* Feature Checklist Styles */
.hero-checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    color: white;
}

.hero-checklist li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 16px;
    /* Soft shadow to make text pop against image */
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.check-icon {
    background-color: #27ae60; /* Green check circle */
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border: 2px solid white;
}

/* Offer Badge */
.offer-highlight {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    border: 1px solid rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .rating-bar-container {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    .rating-divider {
        display: none; 
    }
    .rating-item {
        background: #f8f9fa;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 12px;
        border: 1px solid #eee;
    }
    .hero-checklist li {
        font-size: 14px;
        margin-bottom: 8px;
    }
}

/* Official Privacy Text Styling */
.form-disclaimer {
    font-size: 11px;              /* Smaller, legal-style font */
    color: #95a5a6;               /* Muted gray (not harsh black) */
    text-align: center;           /* Perfectly centered */
    margin-top: 12px;             /* Space between button and text */
    letter-spacing: 0.3px;        /* Slightly easier to read */
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Area Styles */
.counties-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

/* UPDATED: Removed hover effects that confuse mobile users */
.county-badge {
    background-color: white;
    color: #2c3e50;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    cursor: default; /* Tells the mouse it's just text, not a link */
}

/* Only add hover effect if it's actually clickable (optional) */
.county-badge:hover {
    border-color: #e0e0e0; /* No color change */
    transform: none;       /* No movement */
    color: #2c3e50;        /* No text color change */
}

/* Service Area Split Layout */
.service-split-layout {
    display: flex;
    align-items: center; /* Vertically centers the map with the text */
    gap: 40px;
}

.service-map-col {
    flex: 0 0 45%; /* Map takes 45% width */
}

.service-text-col {
    flex: 1; /* Text takes remaining space */
}

/* Mobile: Stack them */
@media (max-width: 768px) {
    .service-split-layout {
        flex-direction: column; /* Stack vertically on phone */
        text-align: center;
    }
    
    .service-map-col {
        width: 100%;
        max-width: 400px; /* Keep map from getting too huge on tablet */
    }

    .service-text-col h2, 
    .service-text-col p {
        text-align: center !important; /* Center text on mobile */
    }

    .counties-grid {
        justify-content: center !important; /* Center badges on mobile */
    }
}

/* FIX: Force the Owner Section button text to be white */
.owner-contact .btn {
    color: white !important;
}

/* --- CUSTOM VIDEO PLAY BUTTON --- */
.video-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
}

/* The Circle */
.custom-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.6); /* Dark see-through background */
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* The Triangle */
.custom-play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 22px solid white;
    margin-left: 5px; /* Visual centering adjustment */
}

/* Hover Effect: Turns Gold */
.video-wrapper:hover .custom-play-button {
    background-color: #f4b941;
    border-color: #f4b941;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Class to hide button when video is playing */
.video-wrapper.is-playing .custom-play-button {
    opacity: 0;
    pointer-events: none;
}

/* =========================================
   MOBILE OPTIMIZATION (Paste at bottom of CSS)
   ========================================= */

@media (max-width: 768px) {

    /* --- 1. GLOBAL ADJUSTMENTS --- */
    body {
        padding-bottom: 80px; /* Space for the sticky bottom bar */
    }
    
    .container {
        padding: 0 15px; /* Tighter side padding for more space */
    }

    /* --- 2. HERO SECTION FIXES --- */
    .hero {
        padding: 40px 0 20px 0; /* Less vertical whitespace */
        min-height: auto;
        background-position: center top; /* Focus background on top */
    }

    .hero-container {
        flex-direction: column; /* Stack Content on top of Form */
        gap: 20px;
    }

    .hero-content {
        text-align: center; /* Center text on mobile */
        margin-bottom: 10px;
    }

    .hero h1 {
        font-size: 28px; /* Smaller H1 to prevent huge wrapping */
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    /* Fix the Checklist Alignment on Mobile */
    .hero-checklist {
        display: inline-block; /* Centers the list block */
        text-align: left; /* Keeps bullet points aligned left */
        margin: 0 auto 20px auto;
        padding-left: 10px;
    }

    .hero-checklist li {
        font-size: 14px; /* Readable but compact */
        margin-bottom: 10px;
        display: flex;
        align-items: flex-start; /* Aligns checkmark to top of text */
    }

    .check-icon {
        margin-top: 2px; /* Visual alignment fix */
    }

    /* --- 3. FORM OPTIMIZATION --- */
    .hero-visual-proof {
        width: 100%; /* Full width form */
        max-width: 100%;
        margin: 0;
    }

    .embedded-form {
        padding: 20px; /* slightly less padding */
        box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Softer shadow */
        border-radius: 8px;
    }

    .form-banner {
        font-size: 18px;
        text-align: center;
    }

    /* PREVENT ZOOMING: Inputs must be 16px on mobile */
    .form-control, select, textarea {
        font-size: 16px !important; 
        padding: 12px;
    }

    #hero-submit {
        font-size: 16px; /* Prevent button text overflow */
        padding: 15px 10px;
        white-space: normal; /* Allow text to wrap if needed */
        line-height: 1.2;
    }

    /* --- 4. TRUST BADGES & LOGOS --- */
    .hero-trust-badges {
        justify-content: center; /* Center badges */
        gap: 10px;
        flex-wrap: wrap;
    }

    .badge-item {
        font-size: 12px;
        padding: 8px 12px;
        width: auto; /* Let them flow naturally */
    }

    /* --- 5. OWNER SECTION STACKING --- */
    .owner-container {
        flex-direction: column; /* Stack image on top of text */
        text-align: center;
        gap: 30px;
    }

    .owner-image {
        margin: 0 auto;
        max-width: 280px; /* Restrict image size so it doesn't dominate */
    }

    .owner-content {
        padding: 0 10px;
    }
    
    .owner-signature {
        justify-content: center;
        display: flex;
    }
    
    .owner-contact a {
        justify-content: center;
    }

    /* --- 6. VIDEO & GALLERY FIXES --- */
    .video-grid, .gallery-grid {
        display: block; /* Stack videos/images vertically */
    }

    .video-card, .gallery-item {
        margin-bottom: 30px;
        width: 100%;
    }

    .video-wrapper video {
        height: auto; /* Let height adjust naturally */
        max-height: 300px; /* Cap it so it fits on one screen */
    }

    /* --- 7. STICKY BOTTOM BAR VISIBILITY --- */
    .mobile-bottom-bar {
        display: flex !important; /* Force show */
        z-index: 99999;
    }
}
/* FIXED GALLERY STYLES */

/* 1. Disable the Click Cursor */
.img-wrapper.no-click {
    cursor: default !important; /* Shows standard arrow, not a hand */
    pointer-events: none;       /* Prevents clicks entirely */
}

/* 2. Force Images to match sizes */
.fixed-ratio-img {
    width: 100%;
    height: 300px;       /* Forces all images to be exactly 300px tall */
    object-fit: cover;   /* Smartly crops the image to fill the box without stretching */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 3. Improve Label Look */
.img-label {
    bottom: 15px; /* Move up slightly */
    font-size: 14px;
    font-weight: 700;
    padding: 6px 18px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 10; /* Ensure label sits ON TOP of image */
}

/* 4. Mobile Adjustments */
@media (max-width: 768px) {
    .fixed-ratio-img {
        height: 250px; /* Slightly shorter on mobile phones */
    }
    
    .gallery-item {
        margin-bottom: 20px;
        padding: 10px;
    }
    
    .side-by-side-container {
        gap: 15px; /* Adds clean space between the stacked images */
    }
}


/* FIX FOR WHITE LINE / HORIZONTAL SCROLL */
@media (max-width: 768px) {
    
    /* 1. Force the page to never scroll horizontally */
    html, body {
        overflow-x: hidden; 
        width: 100%;
        position: relative;
    }

    /* 2. Fix the Button Text Overflow */
    .btn {
        white-space: normal !important; /* Allows text to wrap to two lines */
        max-width: 100%;                /* Never wider than the screen */
        box-sizing: border-box;         /* Includes padding in width calculation */
        text-align: center;
        padding: 15px 10px;             /* Reduced side padding for mobile */
    }
    
    /* Optional: Make that specific bottom button fit better */
    .gallery .btn {
        width: 90%;                     /* Give it a little breathing room on sides */
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}
