/* =========================================================
   CATRINA’S TOP NOTCH CLEANING
   CLEAN • CENTERED • ELEGANT • CONSISTENT
========================================================= */

/* ================================
   VARIABLES
================================ */
:root {
    --black: #000000;
    --white: #ffffff;
    --pink: #E7A6B2;
    --pink-dark: #C97C8A;
    --text-muted: #bdbdbd;
}

/* ================================
   GLOBAL RESET
================================ */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
}

a {
    color: var(--white);
    text-decoration: none;
    transition: .25s ease;
}

a:hover {
    color: var(--pink);
}

/* ================================
   SITE WRAPPER
================================ */
.full-site-width {
    max-width: 1100px;
    margin: 150px auto 0 auto;
    padding: 0 30px;
}

/* =========================================================
   HEADER – CENTERED ELEGANT NAV
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--black);
    border-bottom: 1px solid rgba(231,166,178,0.4);
    z-index: 1000;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Logo left */
.header-logo {
    position: absolute;
    left: 30px;
}

.header-logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
}

/* Center Navigation */
.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

/* Elegant links */
.header-nav a {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    padding-bottom: 6px;
}

/* Underline animation */
.header-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--pink);
    transition: width .3s ease;
}

.header-nav a:hover::after {
    width: 100%;
}

.header-nav a.active {
    color: var(--pink);
}

/* REMOVE hamburger entirely */
.header-toggle {
    display: none !important;
}

/* =========================================================
   HERO
========================================================= */

.home-hero {
    padding: 120px 0 140px 0;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.hero-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
}

/* =========================================================
   BUTTON
========================================================= */

.btn-primary {
    display: inline-block;
    background: var(--pink);
    color: var(--black);
    padding: 16px 44px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.btn-primary:hover {
    background: var(--white);
}

/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
    padding: 100px 0;
    border-top: 1px solid var(--pink);
    border-bottom: 1px solid var(--pink);
}

.trust-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.trust-item h3 {
    font-family: 'Playfair Display', serif;
    color: var(--pink);
    margin-bottom: 10px;
}

.trust-item p {
    color: var(--text-muted);
}

/* =========================================================
   SECTION BASE
========================================================= */

.section-dark {
    padding: 120px 0;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 40px;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 60px auto;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =========================================================
   SERVICES
========================================================= */

.services-grid {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: #0f0f0f;
    border: 1px solid #1e1e1e;
    padding: 40px;
    border-radius: 18px;
    transition: transform .2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--pink);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
}

/* =========================================================
   ABOUT
========================================================= */

.about-preview {
    padding: 120px 0;
    text-align: center;
}

.about-preview p {
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-muted);
    line-height: 1.8;
}

/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    padding: 120px 0;
    text-align: center;
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.final-cta p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* =========================================================
   MOBILE – KEEP NAV HORIZONTAL
========================================================= */

@media (max-width: 900px) {

    .header-inner {
        padding: 20px 20px;
    }

    .header-nav {
        gap: 25px;
        flex-wrap: wrap;
    }

    .header-nav a {
        font-size: 0.95rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-text p {
        margin: 0 auto 30px auto;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

}/* =========================================================
   CONTACT PAGE STYLING
========================================================= */

/* HERO */
.contact-hero {
    padding: 140px 0 80px 0;
    text-align: center;
}

.contact-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.contact-sub {
    color: var(--text-muted);
    line-height: 1.7;
}

/* MAIN SECTION */
.contact-section {
    padding: 80px 0 140px 0;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* LEFT COLUMN */
.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 35px;
    color: var(--pink);
}

.contact-details p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-details a {
    color: var(--white);
}

.contact-details a:hover {
    color: var(--pink);
}

.label {
    font-family: 'Playfair Display', serif;
    color: var(--pink);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.contact-note {
    margin-top: 35px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* RIGHT COLUMN – FORM */
.contact-form {
    background: #0f0f0f;
    border: 1px solid #1e1e1e;
    border-radius: 20px;
    padding: 30px;
}

.contact-iframe {
    width: 100%;
    min-height: 900px;
    border: none;
    border-radius: 12px;
}

/* MOBILE */
@media (max-width: 900px) {

    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .contact-info h2 {
        margin-bottom: 20px;
    }

    .contact-iframe {
        min-height: 1000px;
    }

}/* =========================================================
   GALLERY – SMALL, CONTROLLED, CLEAN
========================================================= */

.gallery-section .gallery-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 per row */
    gap: 25px;
}

.gallery-section .gallery-card {
    background: var(--pink);
    border-radius: 14px;
    overflow: hidden;
    height: 150px; /* THIS makes them small */
    padding: 0;
    transition: transform .25s ease;
}

.gallery-section .gallery-image {
    height: 100%;
}

.gallery-section .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-section .gallery-card:hover {
    transform: scale(1.03);
}

/* Responsive */
@media (max-width: 900px) {
    .gallery-section .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}/* =========================================================
   GALLERY GRID
========================================================= */

.gallery-page .gallery-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery-page .gallery-card {
    background: var(--pink);
    border-radius: 14px;
    overflow: hidden;
    height: 150px;
    transition: transform .25s ease;
}

.gallery-page .gallery-image {
    height: 100%;
}

.gallery-page .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-page .gallery-card:hover {
    transform: scale(1.03);
}

/* =========================================================
   LIGHTBOX
========================================================= */

#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.lightbox-img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 12px;
}

#lightbox .close,
#lightbox .prev,
#lightbox .next {
    position: absolute;
    color: white;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
}

#lightbox .close {
    top: 40px;
    right: 60px;
}

#lightbox .prev {
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
}

#lightbox .next {
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
}

/* Mobile */
@media (max-width: 900px) {
    .gallery-page .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #lightbox .prev,
    #lightbox .next {
        font-size: 30px;
    }
}/* =========================================================
   SERVICES PAGE POLISH
========================================================= */

/* Reduce massive vertical gaps */
.section-dark {
    padding: 80px 0;
}

/* Hero refinement */
.services-hero {
    padding-bottom: 40px;
}

.services-intro {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =========================================================
   SERVICE CARDS – UPGRADE
========================================================= */

.services-grid {
    max-width: 1100px;
    margin: 40px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: linear-gradient(145deg, #0f0f0f, #151515);
    border: 1px solid rgba(231,166,178,0.15);
    padding: 40px;
    border-radius: 20px;
    transition: all .25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--pink);
    box-shadow: 0 0 30px rgba(231,166,178,0.15);
}

.service-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--pink);
    margin-bottom: 12px;
}

.service-summary {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* =========================================================
   EXPANDER STYLING
========================================================= */

.service-expander summary {
    cursor: pointer;
    color: var(--pink);
    font-weight: 600;
    margin-top: 10px;
}

.service-expander ul {
    margin-top: 10px;
    padding-left: 18px;
    color: var(--text-muted);
}

.service-expander strong {
    display: block;
    margin-top: 15px;
    color: var(--white);
}

/* =========================================================
   ADD-ON PILLS
========================================================= */

.addons-grid {
    max-width: 900px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.addon-pill {
    border: 1px solid var(--pink);
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    transition: all .2s ease;
}

.addon-pill:hover {
    background: var(--pink);
    color: var(--black);
}

/* =========================================================
   PRICING BOX
========================================================= */

.pricing-box {
    max-width: 500px;
    margin: 40px auto 0 auto;
    background: #0f0f0f;
    border: 1px solid rgba(231,166,178,0.2);
    border-radius: 18px;
    padding: 40px;
}

.pricing-box p {
    margin: 10px 0;
}

.pricing-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =========================================================
   SERVICE AREAS
========================================================= */

.service-areas {
    max-width: 800px;
    margin: 30px auto 0 auto;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =========================================================
   SECTION TITLE ACCENT
========================================================= */

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: var(--pink);
    margin: 15px auto 0 auto;
}/* =========================================================
   TRUST STRIP WITH IMAGE
========================================================= */

.trust-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 60px rgba(231,166,178,0.2);
}

/* Mobile */
@media (max-width: 900px) {

    .trust-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .trust-image img {
        margin-top: 30px;
        max-width: 300px;
    }

}/* =====================================
   SERVICES PREVIEW SPACING FIX
===================================== */

.services-preview-grid {
    display: grid;
    gap: 40px; /* increase vertical space */
    margin-top: 60px;
}

.services-preview-grid .service-card {
    padding: 60px 40px; /* more vertical padding */
}/* =====================================
   SERVICES GRID BALANCE FIX
===================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    justify-items: center;
}

/* Keep cards same width */
.service-card {
    width: 100%;
    max-width: 340px;
}

/* Center last row if not full */
.services-grid {
    justify-content: center;
}
/* =========================================================
   SERVICES + ABOUT MOBILE OPTIMIZATION
========================================================= */

@media (max-width: 900px) {

    /* Reduce heavy vertical spacing */
    .section-dark,
    .about-preview {
        padding: 70px 20px !important;
    }

    /* =========================
       SERVICES PAGE
    ========================= */

    .services-hero {
        padding-bottom: 40px !important;
        text-align: center;
    }

    .services-intro {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 100%;
    }

    /* Stack services cards */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        margin-top: 40px !important;
    }

    .service-card {
        max-width: 100% !important;
        padding: 30px !important;
    }

    .service-card h2 {
        font-size: 1.4rem;
    }

    /* Expanders more readable */
    .service-expander summary {
        font-size: 0.95rem;
    }

    .service-expander ul {
        font-size: 0.9rem;
    }

    /* Add-ons stack better */
    .addons-grid {
        gap: 10px !important;
        justify-content: center;
    }

    .addon-pill {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    /* Pricing tighter */
    .pricing-box {
        padding: 25px !important;
        font-size: 0.95rem;
    }

    /* =========================
       ABOUT PAGE
    ========================= */

    .about-preview p {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 10px;
    }

    /* Improve button tap size */
    .btn-primary {
        padding: 14px 28px !important;
        font-size: 0.9rem;
    }

}/* ================================
   SECTION CONTAINER FIX
================================ */
.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}/* HOMEPAGE CENTER FIX */
.home-hero,
.section-dark,
.about-preview,
.final-cta {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}/* =====================================
   HOMEPAGE SERVICES PREVIEW GRID
===================================== */

.services-preview-grid {
    max-width: 1100px;
    margin: 60px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* Make cards consistent */
.services-preview-grid .service-card {
    max-width: 100%;
}

/* Mobile stack */
@media (max-width: 900px) {
    .services-preview-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}/* =====================================
   ABOUT PAGE GRID
===================================== */

.about-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
}

/* Stack on mobile */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }
}