/* ============================================================
   PREMIUM CSS — Mindful Resilience
   Design System Elevation
   ============================================================ */

/* ---- Additional Design Tokens ---- */
:root {
    --accent-color:   #B09268;   /* Burnished gold — richer than original muted olive */
    --gold-light:     #E8D5B8;
    --cream:          #F6F0E6;
    --forest-dark:    #1C3326;
    --sage-mid:       #4A7258;
    --divider-gold:   #D4B896;
    --primary-color:  #1E2020;   /* Slightly warmer near-black */
    --secondary-color:#F6F0E6;   /* Warm cream replaces cold grey */
}

/* ============================================================
   TYPOGRAPHY UPGRADE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Cormorant Garamond", "Marcellus", Georgia, serif;
    letter-spacing: -0.01em;
}

.section-title h1 { font-size: 54px; }
.section-title h2 { font-size: 50px; }

/* ============================================================
   BUTTON UPGRADE
   ============================================================ */
.btn-default {
    border-radius: 10px !important;
    letter-spacing: 0.04em;
    font-size: 14px !important;
    padding: 15px 28px !important;
}

/* ============================================================
   04. HERO — PIXEL-PERFECT EDITORIAL LAYOUT
   ============================================================ */

/* Ensure hero v3 content sits above the overlay */
.hero-v3-content {
    position: relative;
    z-index: 2;
    padding-bottom: 0;
}

/* ── Eyebrow ── */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.eyebrow-line {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--accent-color);
    flex-shrink: 0;
}

.eyebrow-text {
    font-family: "Sora", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-color);
}

/* ── Headline ── */
.hero-v3-headline {
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(46px, 5.5vw, 72px);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: #ffffff !important;
    margin: 0 0 28px;
    cursor: none;
}

/* ── Description ── */
.hero-v3-desc {
    font-family: "DM Sans", "Jost", sans-serif !important;
    font-size: 16.5px !important;
    line-height: 1.75 !important;
    color: rgba(255, 255, 255, 0.68) !important;
    max-width: 520px;
    margin: 0 0 38px !important;
}

/* ── CTA row ── */
.hero-v3-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.btn-hero {
    font-size: 13px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    padding: 17px 36px !important;
    border-radius: 8px !important;
}

.hero-cta-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.50);
    font-size: 12.5px;
    letter-spacing: 0.03em;
}

.hero-cta-note i {
    color: var(--accent-color);
    font-size: 14px;
    opacity: 0.8;
}

/* ── Inline credentials ── */
.hero-v3-creds {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
    z-index: 2;
}

.hero-v3-creds span {
    font-size: 11.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    padding: 0 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    line-height: 1;
}

.hero-v3-creds span:first-child {
    padding-left: 0;
}

.hero-v3-creds span:last-child {
    border-right: none;
}

/* ── Bottom trust bar ── */
.hero-v3-bar {
    position: relative;
    z-index: 2;
    margin-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 28px 0 32px;
}

.hero-v3-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.60);
    font-size: 13px;
    letter-spacing: 0.04em;
    position: relative;
    padding: 0 20px;
    flex: 1;
    justify-content: center;
}

.hero-bar-item + .hero-bar-item {
    border-left: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-bar-item:first-child { padding-left: 0; justify-content: flex-start; }
.hero-bar-item:last-child  { padding-right: 0; justify-content: flex-end; }

.hero-bar-item i {
    color: var(--accent-color);
    font-size: 13px;
    opacity: 0.85;
    flex-shrink: 0;
}

/* ============================================================
   SECTION PADDING
   ============================================================ */
.about-us           { padding: 90px 0; }
.our-services       { padding: 90px 0; background: var(--secondary-color); }
.why-choose-us      { padding: 90px 0; }
.our-testimonial    { padding: 90px 0; }
.our-faqs           { padding: 90px 0; }
.how-it-work        { padding: 90px 0; }
.cta-section        { padding: 90px 0; }
.mr-gallery         { padding: 90px 0; background: #fff; }

/* ============================================================
   05. ABOUT — PIXEL-PERFECT SINGLE IMAGE LAYOUT
   ============================================================ */

/* Row stretches both columns to same height */
.about-row {
    align-items: stretch !important;
}

/* Image column: fills 100% of row height */
.about-image-col {
    position: relative;
    height: 100%;
    min-height: 600px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.14);
}

.about-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image-col:hover img {
    transform: scale(1.03);
}

/* Subtle bottom gradient so badge is always readable */
.about-image-col::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(20, 20, 20, 0.65) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 0 0 24px 24px;
}

/* Floating stats badge at bottom of image */
.about-float-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 16px;
    padding: 18px 24px;
    z-index: 2;
}

.afb-stat {
    flex: 1;
    text-align: center;
}

.afb-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.20);
    flex-shrink: 0;
    margin: 0 4px;
}

.afb-num {
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
}

.afb-lbl {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 5px;
}

/* Content column: centered vertically, padded left */
.about-content-col {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0 50px 56px;
}

/* Tighter section-title spacing inside about */
.about-content-col .section-title {
    margin-bottom: 0;
}

.about-content-col .section-title h2 {
    margin-bottom: 24px;
}

.about-content-col .section-title p {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 15.5px;
    line-height: 1.75;
    color: #4a4a4a;
}

/* Closing statement */
.about-closing {
    font-size: 15px !important;
    font-style: italic;
    color: var(--primary-color) !important;
    margin-bottom: 28px !important;
    margin-top: 4px;
    line-height: 1.7 !important;
    font-weight: 500;
}

/* Credential chips */
.about-credential-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 22px;
}

.about-credential-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--cream);
    border: 1px solid var(--divider-gold);
    border-radius: 100px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.about-credential-chip:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.about-credential-chip i {
    color: var(--accent-color);
    font-size: 12px;
}

.about-credential-chip:hover i { color: var(--gold-light); }

/* ============================================================
   06. SERVICES — VIDEO + CARDS + WHATSAPP
   ============================================================ */

/* ── Service card video wrapper ── */
.post-video-wrap {
    position: relative;
    border-radius: 22px 22px 0 0;
    overflow: hidden;
    background: #000;
    line-height: 0;
}

.post-video-wrap .ratio {
    border-radius: 22px 22px 0 0;
    overflow: hidden;
}

.post-video-wrap iframe {
    border-radius: 22px 22px 0 0;
    display: block;
}

/* ── Service card number badge ── */
.post-video-wrap {
    position: relative;
}

.svc-number-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    background: var(--accent-color);
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    font-weight: 600;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 14px rgba(176, 146, 104, 0.45);
}

/* ── Explore Service button ── */
.svc-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff !important;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: 8px;
    border: 1.5px solid var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.svc-explore-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.svc-explore-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff !important;
    transform: translateX(3px);
}

.svc-explore-btn:hover i {
    transform: translateX(4px);
}

/* ── Bottom row: WhatsApp strip + View All ── */
.services-bottom-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ── WhatsApp strip ── */
.services-whatsapp-strip {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    border-radius: 14px;
    padding: 20px 28px;
    text-decoration: none !important;
    transition: all 0.35s ease;
    box-shadow: 0 8px 30px rgba(7, 94, 84, 0.30);
    min-width: 0;
}

.services-whatsapp-strip:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(7, 94, 84, 0.40);
}

.sws-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sws-icon-wrap i {
    font-size: 26px;
    color: #fff;
}

.sws-text {
    flex: 1;
    min-width: 0;
}

.sws-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.70);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.sws-number {
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.sws-action {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.90);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    border-left: 1px solid rgba(255, 255, 255, 0.20);
    padding-left: 24px;
    flex-shrink: 0;
}

.sws-action i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.services-whatsapp-strip:hover .sws-action i {
    transform: translateX(4px);
}

/* ── View All button ── */
.svc-view-all-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Section title centred ── */
.our-services .section-title {
    text-align: center;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .services-bottom-row { flex-direction: column; align-items: stretch; }
    .svc-view-all-btn { text-align: center; }
    .sws-action { display: none; }
}

@media (max-width: 576px) {
    .sws-number { font-size: 18px; }
}
.post-item {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 30px;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--divider-color, #EEEDED);
}

.post-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
    border-color: var(--gold-light);
}

.post-featured-image {
    overflow: hidden;
    position: relative;
}

.post-featured-image figure {
    display: block;
    margin: 0;
    overflow: hidden;
}

.post-featured-image figure a {
    display: block;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.post-item:hover .post-featured-image img {
    transform: scale(1.07);
}

.post-item-body {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
    border-top: 3px solid transparent;
    transition: border-color 0.35s ease;
}

.post-item:hover .post-item-body {
    border-top-color: var(--accent-color);
}

.post-item-content {
    flex: 1;
}

.post-item-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.post-item-content h3 a {
    color: inherit;
    transition: color 0.3s ease;
}

.post-item:hover .post-item-content h3 a {
    color: var(--accent-color);
}

.post-item-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #6a6a6a;
    margin: 0;
}

.post-item-btn {
    padding-top: 16px;
    border-top: 1px solid var(--divider-color, #EEEDED);
    margin-top: auto;
}

/* ============================================================
   GALLERY SECTION — DOCS PHOTOS MOSAIC
   ============================================================ */
.mr-gallery .section-title {
    text-align: center;
}

.mr-gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 290px 250px;
    gap: 14px;
}

.mr-gallery-item {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

/* First item spans full height on the left */
.mr-gallery-item:first-child {
    grid-row: 1 / 3;
    border-radius: 22px;
}

.mr-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mr-gallery-item:hover img {
    transform: scale(1.06);
}

.mr-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 32, 32, 0.45) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.mr-gallery-item:hover::after { opacity: 1; }

/* ============================================================
   07. WHY CHOOSE US — UPGRADES
   ============================================================ */
.why-choose-us { background: var(--cream); }

.why-choose-image figure {
    border-radius: 24px !important;
    overflow: hidden !important;
}

/* ── Quote box ── */
.gdw-quote-box {
    background: #fff !important;
    border-left: 4px solid var(--accent-color) !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06) !important;
    padding: 28px 30px 24px 30px !important;
    margin: 0 0 28px 0 !important;
}

.gdw-quote-box p {
    font-size: 15.5px !important;
    line-height: 1.75 !important;
    font-style: italic;
    color: #3a3a3a !important;
    margin: 0 !important;
}

.gdw-quote-author {
    display: block;
    margin-top: 16px !important;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    color: var(--accent-color) !important;
    letter-spacing: 0.04em;
}

/* ── Feature grid ── */
.gdw-feature-grid {
    margin-top: 4px !important;
}

/* d-flex on column makes all cards in a row equal height */
.gdw-feature-grid .d-flex {
    align-items: stretch;
}

/* ── Feature cards ── */
.gdw-feature-card {
    width: 100%;
    background: #fff !important;
    border: 1.5px solid var(--divider-gold) !important;
    border-radius: 18px !important;
    padding: 24px 22px 22px !important;
    transition: all 0.32s ease !important;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04) !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 17px;
}

.gdw-feature-card h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px !important;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.25;
    margin: 0 !important;
}

.gdw-feature-card p {
    color: #727272 !important;
    font-size: 13.5px !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

.gdw-feature-card:hover {
    background: var(--forest-dark) !important;
    border-color: var(--forest-dark) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.13) !important;
}

.gdw-feature-card:hover h4,
.gdw-feature-card:hover p {
    color: #fff !important;
}

/* ============================================================
   HOW IT WORKS — DARK BACKGROUND
   ============================================================ */
.how-it-work { background: var(--primary-color); }

.how-it-work .section-title h3,
.how-it-work .section-title h2 {
    color: var(--white-color) !important;
}

.how-it-work .section-title h3::before {
    background: var(--accent-color) !important;
}

.how-it-work .section-btn .btn-default {
    background: var(--accent-color);
}

.how-work-step-no h3 {
    color: var(--accent-color) !important;
}

.how-work-step-content h3,
.how-work-step-content p {
    color: rgba(255,255,255,0.85) !important;
}

.how-work-step-item {
    border-color: rgba(255,255,255,0.1) !important;
}

/* ============================================================
   11. CTA SECTION — FOREST DARK
   ============================================================ */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section .cta-box {
    background: linear-gradient(135deg, var(--forest-dark) 0%, #0E2418 100%);
    border-radius: 28px;
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section .cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../web-images/about/about-new.jpg') center/cover no-repeat;
    opacity: 0.08;
    border-radius: 28px;
}

.cta-section .cta-box::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176,146,104,0.15) 0%, transparent 70%);
}

.cta-section .section-title h3,
.cta-section .section-title h2,
.cta-section .section-title p {
    color: var(--white-color) !important;
}

.cta-section .section-title h3::before {
    background: var(--gold-light) !important;
}

.cta-section .cta-box-content {
    position: relative;
    z-index: 2;
}

/* ============================================================
   12. TESTIMONIALS — EDITORIAL CENTERED SLIDER
   ============================================================ */
.our-testimonial {
    background: #fff;
    padding: 50px 0 !important;
}

.our-testimonial .section-title h3::before {
    background: var(--accent-color) !important;
}

/* ---- Stats Bar ---- */
.testi-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: var(--cream);
    border: 1px solid rgba(176,146,104,0.2);
    border-radius: 16px;
    padding: 28px 40px;
    margin-bottom: 60px;
}

.tsb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 36px;
    text-align: center;
}

.tsb-val {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.tsb-val sup {
    font-size: 0.55em;
    color: var(--accent-color);
    vertical-align: super;
}

.tsb-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 16px;
}

.tsb-stars i {
    color: var(--accent-color);
}

.tsb-stars span {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 5px;
}

.tsb-lab {
    font-size: 12px;
    font-weight: 500;
    color: #888;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 !important;
}

.tsb-sep {
    width: 1px;
    height: 44px;
    background: rgba(176,146,104,0.25);
    flex-shrink: 0;
}

.tsb-avatars-item {
    padding: 0 36px;
}

.tsb-avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 6px;
}

.tsb-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.tsb-avatars img:first-child { margin-left: 0; }

/* ---- Outer slider wrapper ---- */
.testi-slider-outer {
    position: relative;
}

/* ---- Swiper ---- */
.testi-swiper {
    overflow: hidden;
}

/* Force all slides to equal height */
.testi-swiper .swiper-wrapper {
    align-items: stretch;
}

.testi-swiper .swiper-slide {
    height: auto;
    display: flex;
}

/* ---- Quote Card — fixed height so all 3 cards always match ---- */
.testi-quote-card {
    background: var(--cream);
    border: 1px solid rgba(176,146,104,0.2);
    border-radius: 20px;
    padding: 36px 28px 32px;
    text-align: center;
    height: 420px;                 /* fixed — same for every card */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.tqc-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.tqc-icon i {
    color: #fff;
    font-size: 15px;
}

.tqc-text {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 17px;
    font-style: italic;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 0 !important;
    flex: 1;
    overflow: hidden;
    /* clamp to 7 lines — long quotes get ellipsis, layout stays equal */
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
    width: 100%;
}

.tqc-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.tqc-author-line {
    width: 48px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.tqc-author-info h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px !important;
    letter-spacing: 0.01em;
}

.tqc-author-info span {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    background: rgba(176,146,104,0.12);
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(176,146,104,0.25);
}

/* ---- Navigation ---- */
.testi-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.testi-prev,
.testi-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid rgba(176,146,104,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.testi-prev i,
.testi-next i {
    color: var(--primary-color);
    font-size: 13px;
    transition: color 0.25s;
}

.testi-prev:hover,
.testi-next:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(176,146,104,0.35);
}

.testi-prev:hover i,
.testi-next:hover i {
    color: #fff !important;
}

.testi-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    justify-content: center;
}

.testi-dots .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background: rgba(176,146,104,0.3) !important;
    opacity: 1 !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
}

.testi-dots .swiper-pagination-bullet-active {
    background: var(--accent-color) !important;
    width: 28px !important;
}

/* ---- Responsive ---- */
@media (max-width: 1023px) {
    /* tablet: 2 cards — slightly taller to handle more text per column */
    .testi-quote-card { height: 460px; }
}

@media (max-width: 767px) {
    .testi-stats-bar {
        gap: 16px 0;
        padding: 20px 16px;
    }
    .tsb-item  { padding: 6px 16px; }
    .tsb-sep   { display: none; }
    /* mobile: 1 card — let height be natural */
    .testi-quote-card {
        height: auto;
        min-height: 0;
        padding: 32px 24px 28px;
    }
    .tqc-text {
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(37,211,102,0.55);
    color: #fff !important;
}

/* Pulse ring animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: wa-pulse 2.2s ease-out infinite;
    z-index: -1;
}

@keyframes wa-pulse {
    0%   { transform: scale(1);   opacity: 0.6; }
    70%  { transform: scale(1.55); opacity: 0;   }
    100% { transform: scale(1.55); opacity: 0;   }
}

/* Tooltip */
.whatsapp-float-tooltip {
    position: absolute;
    right: 68px;
    white-space: nowrap;
    background: var(--primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transform: translateX(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--primary-color);
    border-right-width: 0;
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 575px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
}

/* ============================================================
   13. FAQs — DARK BACKGROUND
   ============================================================ */
.our-faqs { background: var(--primary-color); }

.our-faqs .section-title h3,
.our-faqs .section-title h2 {
    color: var(--white-color) !important;
}

.our-faqs .section-title h3::before {
    background: var(--accent-color) !important;
}

.faq-cta-box .faq-cta-box-content h3 { color: var(--white-color) !important; }

.accordion-item {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    border-radius: 14px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    background: transparent !important;
    color: var(--white-color) !important;
    font-family: "Cormorant Garamond", serif !important;
    font-size: 18px !important;
    padding: 22px 24px !important;
}

.accordion-button:not(.collapsed) {
    color: var(--accent-color) !important;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: brightness(0) invert(1) !important;
}

.accordion-button span {
    color: var(--accent-color);
    margin-right: 8px;
}

.accordion-body p {
    color: rgba(255,255,255,0.68) !important;
    line-height: 1.75 !important;
}

/* ============================================================
   15. APPOINTMENT — SPLIT DARK FORM
   ============================================================ */
.our-appointment {
    background: linear-gradient(180deg, var(--cream) 50%, var(--accent-color) 50%);
    padding: 90px 0 100px;
}

.our-appointment-box {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.10);
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.appointment-form {
    width: 50%;
    background: var(--forest-dark) !important;
    padding: 55px 50px !important;
}

.appointment-form .section-title h3,
.appointment-form .section-title h2 {
    color: var(--white-color) !important;
}

.appointment-form .section-title h3::before {
    background: var(--accent-color) !important;
}

/* Add a heading inside appointment form for context */
.appointment-form-header {
    margin-bottom: 32px;
}

.appointment-form-header h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    color: var(--white-color);
    margin-bottom: 8px;
}

.appointment-form-header p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    margin: 0;
}

.appointment-form form .form-control {
    background: rgba(255,255,255,0.07) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    color: var(--white-color) !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
}

.appointment-form form .form-control::placeholder {
    color: rgba(255,255,255,0.4) !important;
}

.appointment-form form .form-control:focus {
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 3px rgba(176, 146, 104, 0.18) !important;
    background: rgba(255,255,255,0.10) !important;
    outline: none !important;
}

/* Date input light text on dark */
.appointment-form form input[type="date"] {
    color-scheme: dark;
}

.our-appointment-content {
    width: 50%;
    padding: 55px 50px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ============================================================
   16. FOOTER — CLEAN REBUILD v2
   ============================================================ */

/* CTA bar */
.footer-cta-box {
    background: linear-gradient(135deg, #1c3326 0%, #0d1f15 100%) !important;
    padding: 44px 0 !important;
}

.footer-cta-eyebrow {
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.18em !important;
    color: var(--accent-color) !important;
    margin: 0 0 10px !important;
}

.footer-cta-heading {
    font-family: "Cormorant Garamond", serif !important;
    font-size: 36px !important;
    font-weight: 400 !important;
    color: #fff !important;
    margin: 0 !important;
    line-height: 1.15 !important;
}

.footer-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-cta-btn-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    border-radius: 10px !important;
    padding: 13px 22px !important;
    color: #fff !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.footer-cta-btn-item:hover {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: #fff !important;
}

.footer-cta-btn-item i { font-size: 16px !important; }

.footer-cta-btn-wa { background: rgba(37,211,102,0.12) !important; border-color: rgba(37,211,102,0.25) !important; }
.footer-cta-btn-wa:hover { background: #25d366 !important; border-color: #25d366 !important; }

/* Main footer */
.main-footer {
    background: #131618 !important;
    padding: 64px 0 0 !important;
}

.footer-main-row {
    padding-bottom: 56px !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
}

/* Logo */
.footer-logo {
    display: block !important;
    width: 150px !important;
    margin-bottom: 18px !important;
    opacity: 0.9 !important;
}

.footer-tagline {
    font-size: 13.5px !important;
    line-height: 1.75 !important;
    color: rgba(255,255,255,0.42) !important;
    margin-bottom: 22px !important;
    max-width: 280px !important;
}

/* Social icons */
.footer-socials {
    display: flex !important;
    gap: 8px !important;
}

.footer-socials a {
    width: 36px !important;
    height: 36px !important;
    border-radius: 9px !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    background: rgba(255,255,255,0.04) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(255,255,255,0.50) !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.28s ease !important;
}

.footer-socials a:hover {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
}

/* Column headings */
.footer-col-title {
    font-family: "Sora", sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.14em !important;
    color: rgba(255,255,255,0.90) !important;
    margin: 0 0 20px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

/* Nav links */
.footer-nav-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-nav-list li {
    margin-bottom: 10px !important;
}

.footer-nav-list li a {
    font-size: 13.5px !important;
    color: rgba(255,255,255,0.45) !important;
    text-decoration: none !important;
    transition: all 0.22s ease !important;
    display: inline-block !important;
}

.footer-nav-list li a:hover {
    color: var(--accent-color) !important;
    transform: translateX(4px) !important;
}

/* Contact items */
.footer-contact-items {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.fci {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
}

.fci-icon {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.09) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--accent-color) !important;
    font-size: 13px !important;
    flex-shrink: 0 !important;
    margin-top: 1px !important;
}

.fci-icon-wa {
    background: rgba(37,211,102,0.10) !important;
    border-color: rgba(37,211,102,0.20) !important;
    color: #25d366 !important;
}

.fci-body {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.fci-label {
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    color: rgba(255,255,255,0.28) !important;
    display: block !important;
}

.fci-value {
    font-size: 13px !important;
    color: rgba(255,255,255,0.65) !important;
    text-decoration: none !important;
    transition: color 0.22s ease !important;
    display: block !important;
    line-height: 1.4 !important;
}

a.fci-value:hover { color: var(--accent-color) !important; }

/* Bottom bar */
.footer-bottom-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 20px 0 !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

.footer-copy,
.footer-credit {
    font-size: 12.5px !important;
    color: rgba(255,255,255,0.25) !important;
    margin: 0 !important;
}

.footer-credit a {
    color: var(--accent-color) !important;
    text-decoration: none !important;
}

.footer-credit a:hover { opacity: 0.75 !important; }

/* Responsive */
@media (max-width: 991px) {
    .footer-cta-btns { justify-content: flex-start; margin-top: 8px; }
    .footer-cta-heading { font-size: 28px !important; }
}

@media (max-width: 767px) {
    .footer-bottom-bar { flex-direction: column; align-items: flex-start; }
    .footer-logo { width: 60px !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
    .mr-gallery-grid { gap: 12px; }
}

@media (max-width: 991px) {
    .section-title h1 { font-size: 40px; }
    .section-title h2 { font-size: 38px; }

    .hero-v3-bar-inner { gap: 0; }
    .hero-bar-item { font-size: 12px; padding: 0 12px; }

    /* About — stack on tablet */
    .about-image-col { min-height: 420px; border-radius: 20px; }
    .about-content-col { padding: 40px 0 10px 0; }

    /* Gallery */
    .mr-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
    }
    .mr-gallery-item:first-child { grid-column: 1; grid-row: 1; }

    /* Appointment */
    .appointment-form, .our-appointment-content { width: 100%; }
    .our-appointment-box { flex-direction: column; }

    .cta-section .cta-box { padding: 50px 30px; }
}

@media (max-width: 767px) {
    .hero-v3-bar-inner { flex-wrap: wrap; gap: 16px; }
    .hero-bar-item { flex: 0 0 calc(50% - 8px); border-left: none !important; justify-content: flex-start !important; padding: 0 !important; }

    .hero-v3-creds span { font-size: 10px; padding: 0 10px; }

    .hero-cta-note { display: none; }

    /* About mobile */
    .about-image-col { min-height: 320px; }
    .about-float-badge { padding: 14px 18px; }
    .afb-num { font-size: 24px; }
    .about-content-col { padding: 32px 0 0 0; }

    .mr-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px 180px;
    }
    .mr-gallery-item:first-child { grid-row: auto; }

    .appointment-form,
    .our-appointment-content { padding: 36px 24px !important; }
}
