/* --- Variables (Warm & Natural Palette) --- */
:root {
    --bg-color: #F9F7F2;       /* Warm Cream */
    --text-color: #3D3D3D;     /* Soft Charcoal */
    --accent-color: #D4C5B0;   /* Warm Tan */
    --primary-btn: #8C7B6C;    /* Earthy Brown */
    --white: #FFFFFF;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Navigation --- */
header {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { height: 100px; width: auto; }

.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-weight: 500; letter-spacing: 0.5px; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-btn); }

.menu-toggle { display: none; cursor: pointer; font-size: 1.5rem; }

/* --- Hero Section --- */
.hero {
    background: url('../images/hero.jpg') center/cover no-repeat;
    background-color: #555;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}
.hero::after { 
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.3);
}
.hero-content { position: relative; z-index: 1; padding: 2rem; }
.hero h1 { font-size: 3rem; margin-bottom: 1rem; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }

.btn {
    display: inline-block;
    background: var(--primary-btn);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    margin-top: 1rem;
    cursor: pointer;
    border: none;
}
.btn:hover { background: #6b5d52; }

/* --- Sections Generic --- */
section { padding: 4rem 2rem; max-width: 1100px; margin: 0 auto; }
h2 { text-align: center; font-size: 2.2rem; margin-bottom: 2rem; color: #2c2c2c; }

/* --- Homepage Services Grid (3 Columns) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-card img { width: 100%; height: 250px; object-fit: cover; }
.service-info { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.service-info h3 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.service-info p { margin-bottom: 1rem; color: #555; flex-grow: 1; }

/* --- Detailed Services Page (2 Columns Split) --- */
.split-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}
.split-col img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}
.split-col h3 {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}
.price-list {
    text-align: left;
}
.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 0.5rem;
}
.price-name { font-weight: 500; }
.price-val { font-weight: bold; color: var(--primary-btn); }
.small-note { font-size: 0.85rem; color: #666; display: block; margin-top: 0.2rem; }

/* --- Reviews Grid --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.review-item {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
.review-item:hover { transform: scale(1.02); }

.hidden { display: none; }
.center-btn { text-align: center; }

/* --- Availability --- */
.calendar-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* --- Contact & About --- */
.contact-container, .about-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--accent-color);
}
.about-split { display: flex; align-items: center; gap: 3rem; text-align: left; }
.about-split img { max-width: 400px; border-radius: 8px; }

/* ... keep all your previous CSS the same, just replace the 'footer' section with this ... */

/* --- Modern Footer --- */
footer {
    background: var(--white);
    color: var(--text-color);
    border-top: 1px solid #ddd;
    padding: 2rem 2rem;
    margin-top: auto;
}
.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap; /* Allows wrapping on small screens */
    width: 100%;
}
.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}
.footer-links svg { width: 24px; height: 24px; fill: currentColor; }
.footer-links a:hover { color: var(--primary-btn); }

.pci-badge img {
    height: 50px; /* Adjusted size to fit inline */
    width: auto;
    transition: transform 0.2s;
}
.pci-badge:hover img { transform: scale(1.05); }

.copyright { font-size: 0.9rem; color: #888; margin-top: 0.5rem; }

/* Mobile: Stack them nicely */
@media (max-width: 768px) {
    .footer-links { flex-direction: column; gap: 1.5rem; }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; flex-direction: column;
        background: var(--white); position: absolute;
        top: 100px; left: 0; width: 100%; padding: 1rem;
        box-shadow: 0 5px 5px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .reviews-grid { grid-template-columns: 1fr; }
    .about-split { flex-direction: column; }
    .split-services { grid-template-columns: 1fr; }
    .footer-links { flex-direction: column; gap: 1rem; }
}