/* =========================================
   GLOBAL STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Using Oswald for standard text, Bebas Neue for headers */
    font-family: 'Oswald', sans-serif; 
}

body {
    background-color: #000000;
    color: #ffffff;
    line-height: 1.5;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;    /* Firefox */
}

body::-webkit-scrollbar {
    display: none;            /* Chrome, Safari, Opera */
}

/* =========================================
   HEADER STYLES (FLUID SCALING FIX)
   ========================================= */
header {
    background-color: #000000;
    /* Use percentage padding so it hugs the edges tighter on mobile */
    padding: 0px 5%; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0; 
    z-index: 1000; 
    border-bottom: 1px solid #333333;
}

.logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

#main-logo {
    /* CLAMP: Never gets smaller than 40px, naturally scales at 6vw, never bigger than 80px */
    height: clamp(80px, 12vw, 180px); 
    width: auto;
    filter: invert(100%); 
}

.business-name {
    position: absolute;
    left: 50%; 
    transform: translateX(-50%);
    color: #ffffff;
    font-family: 'Bebas Neue', sans-serif; 
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    
    /* Forces the text to stay on ONE line like your image */
    white-space: nowrap; 
    
    /* CLAMP: Scales smoothly between 16px (mobile) and 50px (desktop) */
    font-size: clamp(20px, 6vw, 100px); 
}

.menu-icon {
    color: #ffffff;
    /* CLAMP: Icon scales slightly with the screen */
    font-size: clamp(24px, 4vw, 30px); 
    cursor: pointer;
}

/* =========================================
   COMMON SECTION STYLES
   ========================================= */
section {
    padding: 40px 20px;
    max-width: 600px; 
    margin: 0 auto;
    border-bottom: 1px dashed #333;
    scroll-margin-top: 140px;
}

h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   SECTION 1: GALLERY / HOME
   ========================================= */
.hero-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.hero-image img {
    width: 100%;
    height: 500px; 
    object-fit: cover; 
    border-radius: 8px;
    margin-bottom: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.gallery-item {
    display: flex;
    flex-direction: column;
}

.gallery-label {
    font-size: 0.6rem;
    text-align: center;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: bold;
}

/* =========================================
   SECTION 2: PACKAGES
   ========================================= */
.pricing-section {
    padding:  60px 0;
    position: relative;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

} /* <-- FIXED MISSING BRACKET HERE */

.pricing-container {
    display: flex;
    width: 100%;
    max-width: 500px; 
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; 
    -ms-overflow-style: none;
    padding: 20px 0; 
    * { font-family: 'Arial', sans-serif; }

}

.pricing-container::-webkit-scrollbar {
    display: none;
}

.price-card {
    flex: 0 0 100%; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    scroll-snap-align: center; 
    scroll-snap-stop: always;  
    background-color: #fff;
    color: #000;
    border-radius: 100px;
    padding: 100px 30px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.price-card:active {
    transform: scale(1);
}

.package-badge {
    background-color: #000;
    color: #fff;
    padding: 10px;
    font-weight: bold;
    font-size: 0.9rem;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    margin: 0 auto 10px auto;
    width: 80%;
}

/* --- The Subheadings (Exterior/Interior) --- */
.service-list h4 {
    font-size: 1.4rem; /* <-- Increased from 1.1rem */
    font-weight: bold;
    margin-top: 15px; 
    margin-bottom: 5px; 
    text-transform: uppercase; 
    color: #000000; 
}

/* --- The Actual List of Services --- */
.service-list {
    list-style: none;
    padding: 0;
    text-align: center;
    font-size: 1.1rem; /* <-- Increased from 0.8rem */
    font-weight: bold;
    flex-grow: 1;
    line-height: 1.6; /* <-- Added this to give the lines slightly more breathing room so they don't crash into each other */
}

/* Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000000; 
    color: #ffffff; 
    border: 2px solid #ffffff; 
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: 0.3s;
    font-size: 20px; /* Reduced from 80px so the chevrons fit inside the circles */
}

.nav-arrow:hover {
    background: #ffffff; 
    color: #000000; 
}

.arrow-left { left: 10px; }
.arrow-right { right: 10px; }

/* =========================================
   SECTION 3: REVIEWS
   ========================================= */
#reviews {
    text-align: center;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.review-card {
    background-color: transparent;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.review-card .stars {
    color: #ffcc00; 
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-card .review-text {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #cccccc;
}

.review-card .review-author {
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
}

/* =========================================
   SECTION 4: CONTACT FORM & FOOTER
   ========================================= */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-size: 0.8rem;
    font-weight: bold;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px;
    font-size: 1rem;
    width: 100%;
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: #aaa;
}

.contact-form option {
    background-color: #000;
    color: #fff;
}

.submit-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 15px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #fff;
    color: #000;
}

.contact-info {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    font-weight: bold;
}

footer {
    border-top: 2px solid #fff;
    padding: 15px;
    text-align: center;
}

.phone-footer {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}

.phone-icon {
    margin-right: 10px;
}

.email-link {
    color: #ffcc00; 
}

.email-link:hover {
    color: #ffffff;
}

/* =========================================
   SECTION: BEFORE & AFTER
   ========================================= */
#before-after {
    text-align: center;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
    border-bottom: 1px dashed #333;
}

.ba-container {
    display: flex;
    flex-direction: column;
    gap: 60px; 
}

.ba-pair {
    background-color: transparent;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 8px;
}

.ba-images {
    display: flex;
    gap: 20px; 
}

.ba-image-wrapper {
    position: relative; 
    flex: 1; 
}

.ba-image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover; 
    border-radius: 4px;
    display: block;
}

.ba-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%); 
    background: rgba(0, 0, 0, 0.7); 
    color: #ffffff;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: bold;
    border: 1px solid #ffffff;
    letter-spacing: 1px;
}

.ba-description {
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #cccccc;
    margin-top: 15px;
}

/* =========================================
   MOBILE MENU SLIDE-OUT
   ========================================= */
#mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 250px;
    height: 100vh; 
    background-color: #000000;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    transition: 0.4s ease-in-out; 
    z-index: 2000; 
    border-left: 2px solid #ffffff;
}

#mobile-menu.open {
    right: 0; 
}

#mobile-menu a {
    padding: 20px;
    text-decoration: none;
    font-size: 1.2rem;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 1px solid #333333;
    transition: 0.2s;
}

#mobile-menu a:hover {
    background-color: #ffffff;
    color: #000000;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 40px;
    color: #ffffff;
    cursor: pointer;
}
.referral-link {
    text-align: center;
    padding: 20px;
    background-color: #000000; /* Matches a dark theme */
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.referral-link a {
    color: #2f2f31; /* Use your brand's accent color here */
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.referral-link a:hover {
    color: #ffffff;
    text-decoration: underline;
}