/* ============================================================
   D&A PAINTERS — dapainters.css
   ============================================================ */

:root {
    /* ── Brand colours extracted from D&K flyer ── */
    --blue: #1b3f72; /* deep navy (main brand blue) */
    --blue-mid: #1e5799; /* mid navy (banner / sections) */
    --blue-light: #2980c4; /* lighter blue (hover states) */
    --green: #7dc420; /* vivid lime green (accent) */
    --green-dark: #5fa010; /* darker green (hover) */
    --orange: #e8541a; /* orange (CTA banners, highlights) */
    --orange-dark: #c44010; /* darker orange (hover) */
    --dark: #111b2e; /* near-black navy (header/footer) */
    --cream: #f4f7fb; /* very light blue-tinted white (bg sections) */
    --sand: #dce8f5; /* light blue-grey (borders, dividers) */
    --text: #1c2a3a; /* dark navy text */
    --muted: #6b7f96; /* muted blue-grey */
    --white: #ffffff;
    --serif: "Playfair Display", Georgia, serif;
    --sans: "Lato", sans-serif;
    --radius: 6px;
    --shadow: 0 4px 24px rgba(27, 63, 114, 0.1);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-size: 0.97rem;
}
img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}
a {
    color: inherit;
    text-decoration: none;
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
    font-family: var(--serif);
    line-height: 1.2;
}
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}
h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
}
h3 {
    font-size: 1.25rem;
    font-weight: 600;
}
p {
    line-height: 1.7;
    color: #fefefe;
}

/* ── Buttons ── */
.btn-primary {
    display: inline-block;
    padding: 0.65rem 1.75rem;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 2px;
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.25s,
        transform 0.2s;
}
.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    color: #fff;
}

.btn-outline {
    display: inline-block;
    padding: 0.65rem 1.75rem;
    background: transparent;
    color: var(--blue);
    border: 1.5px solid var(--blue);
    border-radius: 2px;
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}
.btn-outline:hover {
    background: var(--blue);
    color: #fff;
}

.btn-white {
    display: inline-block;
    padding: 0.65rem 1.75rem;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    font-family: var(--sans);
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.25s;
}
.btn-white:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--dark);
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    justify-content: space-between;
}
header nav {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-header .brand {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 0.04em;
}
.site-header nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-family: var(--serif);
    margin-left: 1.8rem;
    transition: color 0.2s;
}
.site-header nav a:hover {
    color: #fff;
}
@media (max-width: 768px) {
    header nav {
        position: absolute;
        top: 56px;
        right: 0;
        background: #1a1714;
        flex-direction: column;
        width: 100%;
        display: none;
        padding: 1rem 0;
    }

    header nav a {
        padding: 0.75rem 2rem;
    }

    #menuToggle {
        display: block !important;
    }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1562259949-e8e7689d7828?w=1600&q=80")
        center/cover no-repeat;
    opacity: 0.45;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2.5rem 5rem;
    max-width: 680px;
}
.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
}
.hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 520px;
    margin-bottom: 2rem;
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section-tag {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.6rem;
}
.section-title {
    margin-bottom: 1rem;
}
.section-lead {
    color: var(--muted);
    max-width: 560px;
}

section {
    padding: 5rem 0;
}

/* ============================================================
   INTRO / ABOUT STRIP
   ============================================================ */
.intro-strip {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--sand);
}
.intro-strip p {
    font-size: 0.95rem;
    color: #555;
}

/* ============================================================
   TESTIMONIALS STRIP (top quotes)
   ============================================================ */
.testimonials-strip {
    background: var(--cream);
    padding: 4rem 0;
}
.testimonials-strip .section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.testimonials-strip .quote-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    height: 100%;
}
.testimonials-strip .stars {
    color: #e67e22;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}
.testimonials-strip .quote-text {
    font-size: 0.88rem;
    color: #555;
    margin-bottom: 1rem;
}
.testimonials-strip .author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.testimonials-strip .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--blue);
    flex-shrink: 0;
}
.testimonials-strip .author-name {
    font-weight: 700;
    font-size: 0.82rem;
}
.testimonials-strip .author-sub {
    font-size: 0.75rem;
    color: var(--muted);
}
/* ── Carousel Wrapper ── */
.tcarousel-wrap {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 6%,
        black 94%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 6%,
        black 94%,
        transparent 100%
    );
}
.tcarousel-track {
    display: flex;
    gap: 1rem;
}
.tcarousel-slide {
    flex: 0 0 calc(25% - 0.75rem);
}
@media (max-width: 991px) {
    .tcarousel-slide {
        flex: 0 0 calc(50% - 0.5rem);
    }
}
@media (max-width: 575px) {
    .tcarousel-slide {
        flex: 0 0 100%;
    }
}

.tcarousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1.25rem;
}
.tcarousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dce8f5;
    border: none;
    cursor: default;
    transition: all 0.3s;
    padding: 0;
}
.tcarousel-dot.active {
    background: #1b3f72;
    width: 22px;
    border-radius: 4px;
}

/* ============================================================
   CLIENTS SAY (big section with image)
   ============================================================ */
.clients-say {
    background: var(--white);
    padding: 1rem 0;
}
.clients-say .image-col img {
    border-radius: var(--radius);
    width: 90%;
    height: 420px;
}
.clients-say .feature-quote {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text);
    border-left: 3px solid var(--blue);
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    line-height: 1.55;
}
.clients-say .reviewer {
    font-size: 0.82rem;
    color: var(--muted);
}

/* ============================================================
   GET A QUOTE
   ============================================================ */
.get-quote {
    background: var(--cream);
    padding: 5rem 0;
}
.get-quote form .form-label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 0.3rem;
}
.get-quote form .form-control,
.get-quote form .form-select {
    border: 1px solid #d5d0c8;
    border-radius: 3px;
    font-size: 0.9rem;
    padding: 0.55rem 0.85rem;
    background: var(--white);
    transition: border-color 0.2s;
}
.get-quote form .form-control:focus,
.get-quote form .form-select:focus {
    border-color: var(--blue);
    box-shadow: none;
    outline: none;
}
.get-quote .quote-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: var(--radius);
    object-fit: cover;
}

/* ============================================================
   QUOTE CALLOUT (blue strip)
   ============================================================ */
.quote-callout {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.quote-callout::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1562259949-e8e7689d7828?w=800&q=60")
        left center/50% no-repeat;
    opacity: 0.12;
}
.quote-callout .blockquote-text {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-style: italic;
    line-height: 1.5;
    color: var(--white);
    position: relative;
    z-index: 1;
}
.quote-callout .blockquote-text::before {
    content: "\201C";
    font-size: 3rem;
    line-height: 0;
    vertical-align: -0.5rem;
    opacity: 0.4;
    margin-right: 0.25rem;
}
.quote-callout .cite {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    margin-top: 1.25rem;
    position: relative;
    z-index: 1;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
    background: var(--cream);
    padding: 5rem 0;
}
.services-section .section-title {
    text-align: center;
    margin-bottom: 0.5rem;
}
.services-section .section-subtitle {
    text-align: center;
    color: var(--muted);
    margin-bottom: 3rem;
    font-size: 0.9rem;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.service-card img {
    width: 100%;
    height: 200px;
}
.service-card .card-body {
    padding: 1.5rem;
}
.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}
.service-card p {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1rem;
}
.service-card ul {
    padding-left: 1.1rem;
    font-size: 0.83rem;
    color: #555;
    margin-bottom: 1rem;
}
.service-card ul li {
    margin-bottom: 0.25rem;
}
.service-card .learn-more {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue);
    border-bottom: 1.5px solid var(--blue);
    padding-bottom: 1px;
    transition: opacity 0.2s;
}
.service-card .learn-more:hover {
    opacity: 0.7;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
    background: var(--white);
    padding: 5rem 0;
}
.faq-section h2 {
    margin-bottom: 2.5rem;
}
.accordion-button {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text) !important;
    background: var(--white) !important;
    border: none;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: var(--blue) !important;
}
.accordion-button::after {
    filter: none;
}
.accordion-item {
    border: none;
    border-bottom: 1px solid var(--sand);
}
.accordion-body {
    font-size: 0.9rem;
    color: #555;
}

/* ============================================================
   LET'S WORK TOGETHER (CTA)
   ============================================================ */
.cta-section {
    background: var(--dark);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}
.cta-section h2 {
    color: var(--white);
    margin-bottom: 2.5rem;
}
.cta-section .cta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15rem;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.cta-section .cta-col {
    text-align: left;
}
.cta-section .cta-col h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    font-family: var(--sans);
}
.cta-section .cta-col a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.25rem;
    transition: color 0.2s;
}
.cta-section .cta-col a:hover {
    color: #fff;
}

/* ============================================================
   INSTAGRAM / SOCIAL GRID
   ============================================================ */
.social-grid {
    background: var(--white);
    padding: 4rem 0;
}
.social-grid h2 {
    margin-bottom: 2rem;
}
.social-grid .grid-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    transition: opacity 0.25s;
}
.social-grid .grid-img:hover {
    opacity: 0.85;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: linear-gradient(135deg, #1a5276 0%, #2471a3 100%);
    color: var(--white);
    padding: 3.5rem 2.5rem 1.5rem;
}
.site-footer h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2.5rem;
}
.site-footer .contact-label {
    font-size: 0.88rem;
    font-weight: 600;
    opacity: 0.8;
    margin-bottom: 0.2rem;
}
.site-footer .contact-val {
    font-size: 0.85rem;
    opacity: 0.65;
    margin-bottom: 1rem;
}
.site-footer .newsletter-lead {
    font-size: 0.88rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.site-footer .newsletter-form {
    display: flex;
    gap: 0.5rem;
}
.site-footer .newsletter-input {
    flex: 1;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    color: #fff;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
}
.site-footer .newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.85);
}
.site-footer .newsletter-input::placeholder {
    color: rgb(255, 255, 255);
}
.site-footer .social-icons {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
}
.site-footer .social-icon {
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #fff;
    transition:
        border-color 0.2s,
        background 0.2s;
}
.site-footer .social-icon:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.78rem;
    opacity: 0.55;
}
@media (max-width: 768px) {
    footer > div:first-child {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    footer h2 {
        font-size: 1.6rem;
    }

    footer form {
        flex-direction: column;
        align-items: stretch;
    }

    footer form input,
    footer form button {
        width: 100%;
    }

    footer form button {
        margin-top: 0.5rem;
    }

    footer div[style*="display: flex"][style*="gap: 0.75rem"] {
        justify-content: center;
    }

    footer > div:last-child {
        text-align: center;
    }
    .cta-section .cta-links {
        gap: 1.5rem;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* @media (max-width: 991px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 767px) {
    .site-header nav {
        display: none;
    }
    .hero {
        min-height: 70vh;
    }
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
    }
    .quote-callout::before {
        display: none;
    }
}
@media (max-width: 575px) {
    section {
        padding: 3rem 0;
    }
    .cta-section {
        padding: 4rem 0;
    }
} */

/* //qoute page styles */
/* ── Hero ── */
.quote-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.quote-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1562259949-e8e7689d7828?w=1400&q=60")
        center/cover no-repeat;
    opacity: 0.07;
}

.quote-hero .crumb {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.quote-hero .crumb span {
    color: var(--green);
}

.quote-hero h1 {
    color: #fff;
    margin: 0.5rem 0 0.6rem;
}

.quote-hero p {
    color: rgba(255, 255, 255, 1);
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0;
}

/* ── Page ── */
.quote-page {
    background: var(--cream);
    padding: 3.5rem 0 5rem;
}

/* ── Card ── */
.quote-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 32px rgba(27, 63, 114, 0.09);
    overflow: hidden;
    max-width: 760px;
    margin: 0 auto;
}

.quote-card .card-top {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.quote-card .card-top h3 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}

.quote-card .card-top p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin: 0;
}

.quote-card .free-badge {
    background: var(--green);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.quote-card .card-body-inner {
    padding: 2rem;
}

/* ── Field Label ── */
.field-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    margin-bottom: 0.35rem;
    display: block;
}

.field-label .req {
    color: var(--orange);
}

/* ── Inputs ── */
.form-control,
.form-select {
    border: 1.5px solid var(--sand);
    border-radius: 5px;
    font-size: 0.88rem;
    padding: 0.6rem 0.85rem;
    background: #f9fbff;
    color: var(--text);
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    width: 100%;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(125, 196, 32, 0.12);
    outline: none;
    background: #fff;
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

/* ── Image Upload ── */
.upload-zone {
    border: 2px dashed var(--sand);
    border-radius: 8px;
    background: #f9fbff;
    padding: 1.75rem 1rem;
    text-align: center;
    cursor: pointer;
    transition:
        border-color 0.2s,
        background 0.2s;
    position: relative;
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--green);
    background: #f0fce0;
}

.upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.upload-zone .upload-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.upload-zone .upload-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.upload-zone .upload-hint {
    font-size: 0.75rem;
    color: var(--muted);
}

.upload-zone .upload-hint span {
    color: var(--blue);
    font-weight: 700;
    text-decoration: underline;
}

/* ── Preview Grid ── */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    margin-top: 0.85rem;
}

@media (max-width: 575px) {
    .preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--sand);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preview-item .remove-btn {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 0.65rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s;
}

.preview-item .remove-btn:hover {
    background: var(--orange);
}

.upload-counter {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.4rem;
    text-align: right;
}

.upload-counter.at-limit {
    color: var(--orange);
    font-weight: 700;
}

/* ── Submit ── */
.btn-quote-submit {
    width: 100%;
    padding: 0.88rem;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.22s,
        transform 0.18s;
}

.btn-quote-submit:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

/* ── Divider ── */
.form-divider {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.75rem 0 1.25rem;
}

.form-divider::after {
    content: "";
    flex: 1;
    height: 1.5px;
    background: var(--sand);
}

/* ── Alerts ── */
.alert-ok {
    background: #edfbe0;
    border: 1.5px solid var(--green);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.88rem;
    color: #2d6a04;
    font-weight: 600;
    margin-bottom: 1.5rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
/* //request reviw page styles */
/* ── Hero ── */
.review-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.review-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=60")
        center/cover no-repeat;
    opacity: 0.07;
}

.review-hero .crumb {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.review-hero .crumb span {
    color: var(--green);
}

.review-hero h1 {
    color: #fff;
    margin: 0.5rem 0 0.6rem;
}

.review-hero p {
    color: rgba(255, 255, 255, 1);
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0;
}

/* ── Page ── */
.review-page {
    background: var(--cream);
    padding: 3.5rem 0 5rem;
}

/* ── Card ── */
.minimal-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 32px rgba(27, 63, 114, 0.09);
    overflow: hidden;
    max-width: 780px;
    margin: 0 auto;
}

.minimal-card .card-top {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.minimal-card .card-top h3 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}

.minimal-card .card-top p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin: 0;
}

.minimal-card .free-badge {
    background: var(--green);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.minimal-card .card-body-inner {
    padding: 2rem;
}

/* ── Labels & Inputs ── */
.field-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    margin-bottom: 0.35rem;
    display: block;
}

.field-label span {
    color: var(--orange);
}

.form-control,
.form-select {
    border: 1.5px solid var(--sand);
    border-radius: 5px;
    font-size: 0.88rem;
    padding: 0.6rem 0.85rem;
    background: #f9fbff;
    color: var(--text);
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    width: 100%;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(125, 196, 32, 0.12);
    outline: none;
    background: #fff;
}

textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

/* ── Section Divider ── */
.form-divider {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.75rem 0 1.25rem;
}

.form-divider::after {
    content: "";
    flex: 1;
    height: 1.5px;
    background: var(--sand);
}

/* ── Service Pills ── */
.service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.service-pills input[type="checkbox"] {
    display: none;
}

.service-pills label {
    border: 1.5px solid var(--sand);
    border-radius: 20px;
    padding: 0.35rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    background: #f9fbff;
    color: var(--text);
    transition: all 0.18s;
    user-select: none;
}

.service-pills label:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.service-pills input:checked + label {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

/* ── Date Slots ── */
.date-slots {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

@media (max-width: 575px) {
    .date-slots {
        grid-template-columns: repeat(3, 1fr);
    }
}

.date-slot input[type="radio"] {
    display: none;
}

.date-slot label {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1.5px solid var(--sand);
    border-radius: 8px;
    padding: 0.6rem 0.3rem;
    cursor: pointer;
    background: #f9fbff;
    text-align: center;
    transition: all 0.18s;
}

.date-slot label:hover {
    border-color: var(--green);
    background: #f0fce0;
}

.date-slot input:checked + label {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.date-slot label .s-day {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.65;
}

.date-slot label .s-date {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.1;
}

.date-slot label .s-mon {
    font-size: 0.65rem;
    opacity: 0.65;
}

.date-slot.booked label {
    opacity: 0.38;
    pointer-events: none;
    background: #eee;
}

/* ── Time Pills ── */
.time-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.time-pills input[type="radio"] {
    display: none;
}

.time-pills label {
    border: 1.5px solid var(--sand);
    border-radius: 20px;
    padding: 0.35rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    background: #f9fbff;
    color: var(--text);
    transition: all 0.18s;
    user-select: none;
}

.time-pills label:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.time-pills input:checked + label {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

/* ── Submit ── */
.btn-book {
    width: 100%;
    padding: 0.85rem;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.22s,
        transform 0.18s;
}

.btn-book:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

/* ── Success ── */
.alert-ok {
    background: #edfbe0;
    border: 1.5px solid var(--green);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.88rem;
    color: #2d6a04;
    font-weight: 600;
    margin-bottom: 1.5rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

/* // cart page css styles */

.cart-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
    padding: 3.5rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}
.cart-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1562259949-e8e7689d7828?w=1400&q=60")
        center/cover no-repeat;
    opacity: 0.06;
}
.cart-hero .crumb {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.cart-hero .crumb span {
    color: var(--green);
}
.cart-hero h1 {
    color: #fff;
    margin: 0.5rem 0 0;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cart-page {
    background: var(--cream);
    padding: 3rem 0 5rem;
}

/* ── Empty ── */
.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(27, 63, 114, 0.07);
    max-width: 420px;
    margin: 0 auto;
}
.empty-cart .empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.empty-cart h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.empty-cart p {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}
.btn-browse {
    display: inline-block;
    padding: 0.65rem 1.75rem;
    background: var(--blue);
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.2s;
}
.btn-browse:hover {
    background: var(--blue-mid);
    color: #fff;
}

/* ── Section label ── */
.sec-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
}
.sec-label::after {
    content: "";
    flex: 1;
    height: 1.5px;
    background: var(--sand);
}

/* ── Cart items card ── */
.cart-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(27, 63, 114, 0.08);
    overflow: hidden;
    margin-bottom: 1.25rem;
}
.cart-card-head {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-card-head h5 {
    color: #fff;
    margin: 0;
    font-size: 0.95rem;
    font-family: var(--sans);
    font-weight: 700;
}
.cart-card-head .badge-count {
    background: var(--green);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
}

/* ── Cart row ── */
/* ── Cart row (Desktop Default) ── */
.cart-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--sand);
    transition: background 0.15s;
}

.cart-row:last-child {
    border-bottom: none;
}

.cart-row:hover {
    background: #fafcff;
}

/* ========================= */
/* 📱 Mobile Card Version */
/* ========================= */
@media (max-width: 767.98px) {
    .cart-card {
        background: transparent;
        box-shadow: none;
    }

    .cart-row {
        flex-direction: column;
        align-items: center;
        text-align: center;

        background: #fff;
        border: 1px solid var(--sand);
        border-radius: 14px;
        margin: 0 auto 1rem auto;
        padding: 1.5rem;

        max-width: 500px;
        box-shadow: 0 6px 24px rgba(27, 63, 114, 0.06);
    }

    .cart-row:last-child {
        border-bottom: 1px solid var(--sand);
    }

    .cart-row:hover {
        background: #fff;
    }

    .row-price {
        text-align: center;
        margin-top: 0.5rem;
    }

    .qty-wrap {
        margin: 0.75rem 0;
    }

    .btn-remove {
        margin-top: 0.5rem;
    }
}
.cart-row .row-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.cart-row .row-info {
    flex: 1;
}
.cart-row .row-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text);
}
.cart-row .row-desc {
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0;
}

/* qty control */
.qty-wrap {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-right: 0.75rem;
}
.qty-btn {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--sand);
    border-radius: 4px;
    background: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.15s;
    line-height: 1;
}
.qty-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
}
.qty-num {
    font-size: 0.88rem;
    font-weight: 700;
    min-width: 1.5rem;
    text-align: center;
    color: var(--text);
}

.row-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--blue);
    white-space: nowrap;
    min-width: 60px;
    text-align: right;
}
.row-price.tbd {
    color: var(--muted);
    font-size: 0.8rem;
}

.btn-remove {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1rem;
    cursor: pointer;
    padding-left: 0.5rem;
    transition: color 0.2s;
    line-height: 1;
}
.btn-remove:hover {
    color: var(--orange);
}

/* ── Customer form ── */
.info-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(27, 63, 114, 0.08);
    overflow: hidden;
    margin-bottom: 1.25rem;
}
.info-card-head {
    background: var(--dark);
    padding: 0.9rem 1.5rem;
}
.info-card-head h5 {
    color: #fff;
    margin: 0;
    font-size: 0.95rem;
    font-family: var(--sans);
    font-weight: 700;
}
.info-card-body {
    padding: 1.5rem;
}

.field-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text);
    margin-bottom: 0.3rem;
    display: block;
}
.field-label .req {
    color: var(--orange);
}
.form-control,
.form-select {
    border: 1.5px solid var(--sand);
    border-radius: 5px;
    font-size: 0.88rem;
    padding: 0.6rem 0.85rem;
    background: #f9fbff;
    color: var(--text);
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    width: 100%;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(125, 196, 32, 0.12);
    outline: none;
    background: #fff;
}
textarea.form-control {
    resize: vertical;
    min-height: 85px;
}

/* ── Summary ── */
.summary-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(27, 63, 114, 0.08);
    overflow: hidden;
    position: sticky;
    top: 72px;
}
.summary-head {
    background: linear-gradient(
        135deg,
        var(--orange) 0%,
        var(--orange-dark) 100%
    );
    padding: 0.9rem 1.5rem;
}
.summary-head h5 {
    color: #fff;
    margin: 0;
    font-size: 0.95rem;
    font-family: var(--sans);
    font-weight: 700;
}
.summary-body {
    padding: 1.25rem 1.5rem;
}

.sum-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--sand);
}
.sum-row:last-of-type {
    border-bottom: none;
}
.sum-row .sr-l {
    color: var(--muted);
}
.sum-row.total {
    font-weight: 700;
    font-size: 1rem;
    color: var(--blue);
    border-top: 2px solid var(--sand);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}
.sum-row.total .sr-l {
    color: var(--text);
}

.note-box {
    background: var(--cream);
    border-radius: 6px;
    padding: 0.65rem 0.85rem;
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0.75rem 0;
    line-height: 1.5;
}
.note-box strong {
    color: var(--blue);
}

.btn-checkout {
    width: 100%;
    padding: 0.9rem;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.22s,
        transform 0.18s;
    margin-top: 0.75rem;
}
.btn-checkout:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.trust-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.85rem;
}
.trust-item {
    font-size: 0.7rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ── Success ── */
.alert-ok {
    background: #edfbe0;
    border: 1.5px solid var(--green);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.88rem;
    color: #2d6a04;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.alert-ok .ok-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}
.alert-ok strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}
/* // services page styles  */

.services-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1586023492125-27b2c045efd7?w=1400&q=60")
        center/cover no-repeat;
    opacity: 0.07;
}

.services-hero .crumb {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.services-hero .crumb span {
    color: var(--green);
}

.services-hero h1 {
    color: #fff;
    margin: 0.5rem 0 0.6rem;
}

.services-hero p {
    color: rgba(255, 255, 255, 1);
    max-width: 480px;
    font-size: 0.95rem;
    margin: 0;
}

.services-page {
    background: var(--cream);
    padding: 3.5rem 0 5rem;
}

/* ── Service Card ── */
.svc-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(27, 63, 114, 0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.22s,
        box-shadow 0.22s;
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(27, 63, 114, 0.13);
}

.svc-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.svc-card .svc-body {
    padding: 1.25rem 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.svc-card .svc-name-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.svc-card .svc-icon {
    font-size: 1.3rem;
}

.svc-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.svc-card p {
    font-size: 0.83rem;
    color: var(--muted);
    margin: 0.4rem 0 0.75rem;
    line-height: 1.55;
    flex: 1;
}

.svc-card .svc-price {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.85rem;
    font-weight: 600;
}

.svc-card .svc-price strong {
    color: var(--blue);
    font-size: 1rem;
}

/* Add to cart button */
.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    padding: 0.65rem;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.15s;
}

.btn-add-cart:hover {
    background: var(--blue-mid);
    transform: translateY(-1px);
}

.btn-add-cart.added {
    background: var(--green);
}

.btn-add-cart.added:hover {
    background: var(--green-dark);
}

.btn-add-cart.loading {
    opacity: 0.65;
    cursor: wait;
}

/* ── Floating Cart Button ── */
.cart-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.4rem;
    border-radius: 50px;
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(125, 196, 32, 0.4);
    transition:
        background 0.2s,
        transform 0.2s,
        opacity 0.3s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

.cart-float.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.cart-float:hover {
    background: var(--green-dark);
    color: #fff;
}

.cart-float .cf-badge {
    background: var(--orange);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Toast ── */
.cart-toast {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--dark);
    color: #fff;
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    font-size: 0.84rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1100;
    opacity: 0;
    transform: translateY(-6px);
    transition:
        opacity 0.22s,
        transform 0.22s;
    pointer-events: none;
}

.cart-toast.show {
    opacity: 1;
    transform: translateY(0);
}
