:root {
    --navy: #151e2c;
    --gold: #c29543;
    --light-gold: #f4e9d8;
    --white: #ffffff;
    --text-dark: #333333;
    --text-gray: #555555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f5f5;
    color: var(--text-dark);
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* --- MAIN LAYOUT SPLIT --- */
.main-content-split {
    display: flex;
    flex-direction: row;
}

.left-column {
    flex: 1;
    padding: 3rem 2rem 2rem 4rem;
    display: flex;
    flex-direction: column;
}

.right-column {
    width: 38%;
    display: flex;
    flex-direction: column;
}

/* --- LOGO AREA --- */
.logo-area {
    text-align: center;
    margin-bottom: 3rem;
}

.logo-mark {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.house-icon-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 -5px;
}

.company-name {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--navy);
    font-weight: 700;
    letter-spacing: 1px;
}

.company-subname {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.line-sm {
    height: 1px;
    width: 40px;
    background-color: var(--gold);
}

.tagline {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.gold-text {
    color: var(--gold);
}

/* --- HERO TEXT AREA --- */
.hero-text-area {
    margin-bottom: 3rem;
}

.main-headline {
    font-size: 2.3rem;
    color: var(--navy);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: 500;
    max-width: 90%;
}

/* --- SERVICES AREA --- */
.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 2rem;
}

.pill-title {
    background-color: var(--navy);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}

.line-lg {
    height: 2px;
    width: 60px;
    background-color: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
}

.service-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.full-width-item {
    grid-column: 1 / -1;
    justify-self: center;
    width: 70%;
}

.service-icon {
    color: var(--gold);
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--light-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.service-text h4 {
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.service-text p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* --- RIGHT COLUMN / IMAGES --- */
.hero-image-wrapper {
    height: 45%;
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-color: #ddd;
    border-bottom-left-radius: 120px;
    border-bottom: 8px solid var(--gold);
    border-left: 8px solid var(--gold);
    background-size: cover;
    background-position: center;
}

.estimate-badge {
    position: absolute;
    bottom: -40px;
    left: 20px;
    background-color: var(--navy);
    color: var(--white);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 5px solid var(--gold);
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.badge-text {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.badge-subtext {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.badge-stars {
    color: var(--gold);
    font-size: 0.8rem;
}

.side-images-stack {
    height: 55%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 4px;
    background-color: var(--white);
}

.side-img {
    flex: 1;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

/* --- WHY CHOOSE US --- */
.why-choose-us {
    background-color: var(--navy);
    color: var(--white);
    display: flex;
    align-items: stretch;
    padding: 0;
}

.wcu-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 2rem;
    background-color: #111824;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.wcu-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.wcu-grid {
    display: flex;
    flex: 1;
}

.wcu-item {
    flex: 1;
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.wcu-item:last-child {
    border-right: none;
}

.wcu-item i {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.wcu-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wcu-item p {
    font-size: 0.75rem;
    color: #b0c4de;
}

/* --- CONTACT SECTION --- */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background-color: var(--white);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon-wrapper {
    background-color: var(--gold);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.contact-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-text.small-text {
    font-size: 0.85rem;
    line-height: 1.2;
}

.divider {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 300;
}

/* --- FOOTER STRIP --- */
.footer-strip {
    background-color: var(--gold);
    color: var(--navy);
    text-align: center;
    padding: 0.8rem;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* =========================================
   RESPONSIVE ADJUSTMENTS (UPDATED)
========================================= */

/* Tablets & Small Desktops */
@media (max-width: 992px) {
    .main-content-split { flex-direction: column; }
    .left-column { padding: 3rem 2rem 2rem 2rem; }
    .right-column { width: 100%; display: flex; flex-direction: column; }
    
    /* Layout Images */
    .hero-image-wrapper { height: 400px; margin-bottom: 60px; }
    .hero-image { border-bottom-left-radius: 0; border-left: none; }
    .estimate-badge { left: 50%; transform: translateX(-50%); bottom: -70px; }
    
    .side-images-stack { height: auto; flex-direction: row; flex-wrap: wrap; padding-top: 0; gap: 0; }
    .side-img { width: 50%; height: 250px; flex: none; border: 2px solid var(--white); }
    
    /* Why Choose Us & Footer */
    .why-choose-us { flex-direction: column; }
    .wcu-header { justify-content: center; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .wcu-grid { flex-wrap: wrap; }
    .wcu-item { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .contact-section { flex-wrap: wrap; text-align: center; }
    .divider { display: none; }
}

/* Mobile Phones */
@media (max-width: 768px) {
    /* Scale down typography */
    .logo-mark { font-size: 3.5rem; }
    .company-name { font-size: 1.8rem; }
    .company-subname { font-size: 1rem; gap: 10px; }
    .line-sm { width: 25px; }
    .main-headline { font-size: 1.8rem; }
    .hero-description { max-width: 100%; }

    /* Stack Services Grid */
    .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .full-width-item { width: 100%; }

    /* Adjust why choose us to 1 column */
    .wcu-item { min-width: 100%; border-right: none; }

    /* Contact Details Stack */
    .contact-section { flex-direction: column; gap: 1rem; }
    .contact-text { font-size: 1.1rem; }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    /* Stack side images completely */
    .hero-image-wrapper { height: 250px; margin-bottom: 50px; }
    .side-img { width: 100%; height: 200px; border-left: none; border-right: none; }
    
    /* Shrink the Badge */
    .estimate-badge { width: 110px; height: 110px; bottom: -55px; }
    .badge-text { font-size: 1.5rem; }
    .badge-subtext { font-size: 0.8rem; }
}


/* =========================================
   ADD YOUR IMAGES HERE
========================================= */

/* 1. Large Top Right Image (Living Room) */
.hero-image {
    background-image: url('living-room.jpg'); 
}

/* 2. Top Image in the Stack (House Exterior) */
.side-img-1 {
    background-image: url('exterior.jpg');
}

/* 3. Second Image in the Stack (Wood Deck) */
.side-img-2 {
    background-image: url('deck.jpg');
}

/* 4. Third Image in the Stack (Commercial Building) */
.side-img-3 {
    background-image: url('outside.jpg');
}

/* 5. Bottom Image in the Stack (Spray Painting) */
.side-img-4 {
    background-image: url('spray.jpg');