/* =========================
   GLOBAL STYLES
========================= */
:root {

    /* BRAND COLORS */
    --primary-color: #2F4E3D;
--secondary-color: #3F5A4A;
--accent-color: #B7D7A6;

--background-color: #FAFBF7;
--card-color: #D4EEC9;

--heading-color: #2F4E3D;
--body-text: #555555;

}
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
background-color: var(--background-color);
}

h1 {
    color: var(--secondary-color);
}

h2 {
    color: var(--card-color);
    font-size: 30px;
}
h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--heading-color);
}
.footer-content h2 {
    color: white;
}
a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--accent-color);
}

button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}
/* =========================
   NAVIGATION
========================= */
.top-bar {

    background-color: #2E3B34;

    color: white;

    display: flex;

    justify-content: center;

    gap: 40px;

    padding: 10px;

    font-size: 14px;

}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 50px;

    position: sticky;
    top: 0;

    background: #F8F5EF;

    z-index: 1000;

    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
nav div {
    display: flex;
    gap: 30px;
}
.logo {

    font-family: "Cormorant Garamond", serif;

    font-size: 36px;

    font-weight: 600;

    color: var(--primary-color);

    margin: 0;
    
    transition: transform 0.3s ease;
    
    display:block;

    text-decoration:none;
}
.logo:hover {

    transform: scale(1.03);

}
nav a {

    font-family: "Inter", sans-serif;

    font-size: 15px;

}

/* =========================
   HERO
========================= */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 120px 80px;
}


.hero-text {
    width: 50%;
}

.hero-image {
    width: 55%;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
}

.hero h1 {
    font-size: 72px;
    line-height: 1;
    letter-spacing: -1px;
    max-width: 650px;
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--body-text);
}

.hero-button {

    display: inline-block;

    background-color: var(--primary-color);

    color: white;

    padding: 15px 30px;

    border-radius: 30px;

    text-decoration: none;

    font-weight: bold;

    transition: transform 0.2s ease, background-color 0.2s ease;

}

.hero-button:hover {

    background-color: var(--secondary-color);

    transform: translateY(-2px);

}
/* =========================
   SERVICES
========================= */
.services {
    padding: 120px 80px;
    text-align: center;
    background-color: #F8F5EF;
}


.services h2 {
    font-size: 40px;
    margin-bottom: 50px;
}


.service-cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}


.card {
    background-color: var(--card-color);
    width: 250px;
    padding: 30px;
    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-8px);

    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.card h3 {
    color: #2E3B34;
}


.card p {
    color: var(--body-text);
    line-height: 1.5;
}
/* =========================
   GALLERY
========================= */

.gallery {
    padding: 90px 60px;
    text-align: center;
}

.gallery h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    color: var(--primary-color);
    margin: 0 0 18px;
}

/* 2-column project layout */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

/* Keep heading + intro across the full section */
.gallery > h2,
.gallery > .section-intro {
    grid-column: 1 / -1;
}

.gallery > h2 {
    margin-bottom: 0;
}

.gallery > .section-intro {
    margin-bottom: 15px;
}

/* Individual project */
.gallery-project {
    background: white;
    padding: 22px;
    border-radius: 20px;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Before / After */
.gallery-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 0;
}

.gallery-image {
    display: flex;
    flex-direction: column;
}

.gallery-image span {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 7px;
}

.gallery-pair img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s ease;
}

.gallery-pair img:hover {
    transform: scale(1.02);
}
/* =========================
   ABOUT
========================= */
.why-us {
    padding: 120px 80px;
    text-align: center;
}


.why-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}


.why-card {
    width: 220px;
    padding: 30px;
    background-color: var(--card-color);
    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.why-card h3 {
    color: #2E3B34;
}


.why-card p {
    color: var(--body-text);
    line-height: 1.5;
}
/* =========================
   REVIEWS
========================= */
.reviews {
    padding: 120px 80px 65px;
    text-align: center;
}


.review-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}


.review-card {

    width: 260px;

    padding: 30px;

   background-color: var(--card-color);

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

}


.review-card h3 {

    color: #C7A75B;

}


.review-card p {

    color: var(--body-text);

    line-height: 1.6;

}
.review-cta {
    margin-top: 28px;
    text-align: center;
}

.google-review-button {
    display: inline-block;
}

.service-area {
    text-align: center;
}
.stars {

    color: #C7A75B;

    font-size: 22px;

    letter-spacing: 3px;

    margin-bottom: 20px;

}
/* =========================
   CONTACT
========================= */
.contact {
    padding: 120px 80px;
    text-align: center;
    background-color: #F8F5EF;
}


.quote-form {
    max-width: 600px;
    margin: 40px auto;

    display: flex;
    flex-direction: column;
    gap: 20px;
}


.quote-form input,
.quote-form select,
.quote-form textarea {

    padding: 15px;

    border: 1px solid #ddd;

    border-radius: 10px;

    font-size: 16px;
}


.quote-form textarea {
    height: 150px;
}
.top-bar .contact-info {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}
/* =========================
   FOOTER
========================= */
footer {

    background-color: var(--primary-color);

    color: white;

    padding: 50px;

    text-align: center;

}


.footer-content h3 {

    font-size: 30px;

}


.footer-links {

    margin: 30px 0;

}


.footer-links a {

    color: white;

    text-decoration: none;

    margin: 0 15px;

}


.footer-links a:hover {

    text-decoration: underline;

}


.copyright {

    font-size: 14px;

    opacity: 0.7;

}
/* =========================
   REUSABLE COMPONENTS
========================= */
.section-intro {
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--body-text);
    font-size: 18px;
    line-height: 1.6;
}


.trust-bar {

    display: flex;

    justify-content: space-around;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    padding: 30px;

    background-color: #ffffff;

    border-top: 1px solid #e5e5e5;

    border-bottom: 1px solid #e5e5e5;

}

.trust-item {

    font-weight: 600;

    color: #2E3B34;

}
/* =========================
   STATS / TRUST STRIP
========================= */

.stats {
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #ffffff;

    padding: 35px 20px;

    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.stats > div {
    width: 200px;

    text-align: center;

    padding: 0 30px;

    border-right: 1px solid #e5e5e5;
}

.stats > div:last-child {
    border-right: none;
}

.stats h2 {
    margin: 0 0 5px;

    font-family: "Cormorant Garamond", serif;

    font-size: 34px;

    line-height: 1;

    color: var(--primary-color);
}

.stats p {
    margin: 0;

    font-family: "Inter", sans-serif;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: var(--body-text);
}
/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    nav {
        flex-direction: column;
        gap: 20px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    /* Make hero photo much larger on mobile */
    .hero-image {
        width: calc(100% + 40px);
        max-width: none;
        margin-left: -20px;
        margin-right: -20px;
        margin-top: 25px;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 20px;
    }

    section {
        padding: 60px 20px;
    }

    .service-cards,
    .why-cards,
    .review-cards {
        flex-direction: column;
        align-items: center;
    }

    .card,
    .why-card,
    .review-card {
        width: 90%;
    }

    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        font-size: 18px;
    }

    .trust-bar {
        flex-direction: column;
    }

    .top-bar {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-bar .contact-info a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

    .gallery {
        display: block;
        padding: 60px 20px;
    }

    .gallery-project {
        padding: 18px;
        margin-bottom: 25px;
    }

    .gallery-pair {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-pair img {
        height: 150px;
    }

    .gallery h3 {
        font-size: 27px;
        margin-bottom: 15px;
    }

    .stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 25px 10px;
        gap: 0;
    }

    .stats > div {
        width: auto;
        padding: 18px 10px;
        border-right: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
    }

    .stats > div:nth-child(2) {
        border-right: none;
    }

    .stats > div:nth-child(3),
    .stats > div:nth-child(4) {
        border-bottom: none;
    }

    .stats > div:nth-child(4) {
        border-right: none;
    }

    .stats h2 {
        font-size: 30px;
    }

    .stats p {
        font-size: 11px;
    }

    .call-button {
        bottom: 20px;
        right: 15px;
        padding: 11px 20px;
        font-size: 14px;
    }

.who-we-are h2,
.who-we-are > .section-intro {
    padding-left: 24px;
    padding-right: 24px;
    text-align: left;
}

.who-we-are-story {
    padding: 0 24px;
}

.who-we-are-story p {
    font-size: 20px;
    line-height: 1.6;
}
}
.success-message {

    display: none;

    margin-top: 30px;

    padding: 25px;

    background: #eef8f1;

    border: 2px solid #8dcf9d;

    border-radius: 15px;

    text-align: center;

}

.success-message h3 {

    color: #2E3B34;

}
 .call-button {
    position: fixed;
    bottom: 25px;
    right: 25px;

    background-color: var(--primary-color);
    color: white;

    padding: 13px 25px;

    border-radius: 50px;

    font-weight: bold;

    box-shadow: 0 8px 25px rgba(0,0,0,.2);

    z-index: 999;

    transition: transform 0.25s ease;
}


.call-button:hover {

    transform:translateY(-5px);

    color:white;

}
/* =========================
   REVIEW STARS
========================= */

.stars {

    color: #C7A75B;

    font-size: 22px;

    letter-spacing: 3px;

    margin-bottom: 20px;

}
.faq {

    padding:120px 80px;

    text-align:center;

}


.faq-item {

    max-width:700px;

    margin:20px auto;

    background:white;

    padding:25px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    text-align:left;

}


.faq-item h3 {

    margin-top:0;

    color:var(--primary-color);

}
.areas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 850px;
    margin: 0 auto;
}

.areas div {
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--primary-color);
    background: white;
    padding: 8px 18px;
    border-radius: 30px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.06);
}
/* =========================
   FLOATING ACTION BUTTONS
========================= */

.call-button {
    position: fixed;

    right: 25px;

    color: white !important;
    text-decoration: none;

    border-radius: 50px;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 700;

    box-shadow: 0 8px 25px rgba(0,0,0,0.18);

    z-index: 999;

    transition: transform 0.25s ease,
                background-color 0.25s ease;
}
/* =========================
   FLOATING ACTION BUTTONS
========================= */
.call-button {
    position: fixed;
    right: 25px;
    bottom: 25px;

    display: block;

    background-color: #2E3B34 !important;
    color: #FFFFFF !important;

    padding: 13px 25px;

    border-radius: 50px;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 700;

    text-decoration: none !important;
    opacity: 1 !important;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);

    z-index: 9999;

    transition: transform 0.25s ease,
                background-color 0.25s ease;
}

/* Hover effects */

.call-button:hover {
    background-color: #3F5A4A !important;
    color: #FFFFFF !important;
    opacity: 1 !important;
    transform: translateY(-3px);
}
/* BOOK NOW - FORCE SOLID */
a.floating-book-button {
    position: fixed !important;
    right: 25px !important;
    bottom: 90px !important;

    display: inline-block !important;

    background: #7A9B8E !important;
    color: #FFFFFF !important;

    opacity: 1 !important;
    visibility: visible !important;

    padding: 13px 25px !important;

    border-radius: 50px !important;

    font-family: "Inter", sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;

    text-decoration: none !important;

    box-shadow: 0 8px 25px rgba(0,0,0,0.18) !important;

    z-index: 99999 !important;

    transition: transform 0.25s ease,
                background 0.25s ease !important;
}

a.floating-book-button:hover {
    background: #3F5A4A !important;
    color: #FFFFFF !important;
    opacity: 1 !important;
    transform: translateY(-3px) !important;
}


/* CALL NOW - FORCE SOLID */
a.call-button {
    position: fixed !important;
    right: 25px !important;
    bottom: 25px !important;

    display: inline-block !important;

    background: #2E3B34 !important;
    color: #FFFFFF !important;

    opacity: 1 !important;
    visibility: visible !important;

    padding: 13px 25px !important;

    border-radius: 50px !important;

    font-family: "Inter", sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;

    text-decoration: none !important;

    box-shadow: 0 8px 25px rgba(0,0,0,0.18) !important;

    z-index: 99999 !important;
}
/* =========================
   FINAL FLOATING BUTTON STYLE
========================= */

a.floating-book-button,
a.call-button {
    background-color: #2E3B34 !important;
    color: #FFFFFF !important;
    opacity: 1 !important;
    text-decoration: none !important;
}

/* Subtle hover */
a.floating-book-button:hover,
a.call-button:hover {
    background-color: #3F5A4A !important;
    color: #FFFFFF !important;
}
/* =========================
   WHO WE ARE
========================= */

.who-we-are {
    padding: 80px 20px;
}

.who-we-are h2,
.who-we-are > .section-intro {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: border-box;
    text-align: left;
}

.who-we-are h2 {
    margin-bottom: 10px;
}

.who-we-are > .section-intro {
    margin-top: 0;
    margin-bottom: 0;
}
.who-we-are-story {
    max-width: 850px;
    margin: 35px auto 0;
    padding: 0 50px;
    box-sizing: border-box;
    text-align: left;
}
.who-we-are-story p {
    font-family: "Cormorant Garamond", serif !important;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0.1px;
    color: var(--body-text);
    margin-bottom: 22px;
}
.quote-contact-info {
    color: #2F4E3D !important;
    margin-top: 30px;
    background: transparent !important;
    padding: 0;
    border-radius: 0;
}

.quote-contact-info p,
.quote-contact-info a {
    color: #2F4E3D !important;
    opacity: 1 !important;
}
.story-copy p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0.15px;

    color: #3F4A43;

    margin-bottom: 24px;
}

/* Give the opening paragraph a little personality */
.story-copy p:first-child::first-letter {
    float: left;

    font-size: 58px;
    font-weight: 600;
    line-height: 0.8;

    color: var(--primary-color);

    margin-right: 8px;
    margin-top: 8px;
}

/* Chloe signature */
.story-copy .story-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px !important;
    font-style: italic;
    font-weight: 600;

    color: var(--primary-color) !important;

    letter-spacing: 0.3px;
}
.founder-story .story-copy p {
    font-family: "Cormorant Garamond", serif !important;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.65;
}

.founder-story .story-copy .story-signature {
    font-family: "Cormorant Garamond", serif !important;
    font-size: 24px !important;
    font-style: italic;
    font-weight: 600;
}