/* ===========================
   KRIMALI LIGHT — All Pages
   =========================== */

:root {
    --cream: #fdf8f4;
    --warm-white: #fff;
    --primary: #fbbdf2;
    /* Brand Pink */
    --accent: #fbbdf2;
    /* Darker Pink for hover/accents */
    --bg-soft: #fef0fa;
    /* Light Pink for soft backgrounds */
    --primary-gradient: linear-gradient(135deg, hsl(329, 100%, 89%), hsl(329, 100%, 80%));
    --primary-gradient-hover: linear-gradient(135deg, hsl(329, 100%, 65%), hsl(329, 100%, 75%));
    --charcoal: hsl(0, 0%, 6.7%);
    --gray: hsl(0, 0%, 45%);
    --gray-light: hsl(0, 0%, 96%);
    --border: hsl(329, 30%, 88%);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', sans-serif;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: var(--primary-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 154, 212, 0.4);
}

.btn-outline {
    background: transparent;
    color: hsl(329, 100%, 70%);
    /* Match the dark part of the gradient */
    border: 2px solid hsl(329, 100%, 70%);
}

.btn-outline:hover {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

/* ---- NAV ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(253, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1160px;
    margin: 0 auto;
}

.nav-logo img {
    height: 52px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    color: var(--gray);
    font-weight: 400;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--charcoal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s;
    border-radius: 2px;
}

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--bg-soft) 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 80px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-soft);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.1rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.hero h1 em {
    /* font-style: italic; */
    color: var(--accent);
}

.hero p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hero-stats>div {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid var(--border);
}

.hero-stats>div:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent);
    display: block;
}

.stat-lbl {
    font-size: 13px;
    color: var(--gray);
    font-weight: 400;
    letter-spacing: 0;
}

.hero-pink {
    font-family: var(--font-serif);
    /* font-style: italic; */
    color: var(--accent);
    /*position: relative;*/
    /*z-index: 1001;*/
}

.hero-img {
    position: relative;
}

.hero-img img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: top center;
    border-radius: 24px;
    box-shadow: var(--shadow-hover);
}

.hero-img-badge {
    position: absolute;
    bottom: 28px;
    left: -20px;
    background: #fff;
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.hero-img-badge i {
    color: var(--primary);
    font-size: 1.4rem;
}

/* ---- SECTION COMMON ---- */
section {
    padding: 90px 0;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 580px;
    line-height: 1.75;
}

.section-header {
    margin-bottom: 56px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-sub {
    margin: 0 auto;
}

/* ---- ABOUT ---- */
.about {
    background: var(--warm-white);
}

.about-inner {
    display: grid;
    grid-template-columns: 3fr 3.5fr;
    gap: 0px;
    align-items: center;
}

.about-img img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-text p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--charcoal);
    font-weight: 600;
}

.about-quote {
    margin-top: 32px;
    padding: 24px 28px;
    background: var(--bg-soft);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    /* font-style: italic; */
    color: var(--charcoal);
    line-height: 1.6;
}

/* ---- SERVICES ---- */
.services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.service-link:hover {
    gap: 10px;
}

/* ---- REVIEWS ---- */
.reviews {
    background: var(--warm-white);
}

.reviews-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee 34s linear infinite;
}

.reviews-marquee:hover .reviews-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    width: 340px;
    flex-shrink: 0;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.review-author span {
    font-size: 0.78rem;
    color: var(--gray);
}

.reviews-cta {
    text-align: center;
    margin-top: 44px;
}

/* ---- PROGRAMS ---- */
.programs {
    background: var(--cream);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.program-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.program-card.featured {
    border-color: var(--primary);
    background: var(--bg-soft);
}

.program-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
}

.program-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.program-duration {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.program-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ---- CONTACT ---- */
.contact {
    background: var(--warm-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.contact-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 14px;
    display: block;
}

.contact-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 12px;
    font-weight: 500;
}

.contact-card a {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    transition: color 0.2s;
}

.contact-card a:hover {
    color: var(--primary);
}

/* ---- FOOTER ---- */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0 28px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 48px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ---- MOBILE MENU ---- */
@media (max-width: 900px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 84px;
        left: 0;
        width: 100%;
        background: var(--cream);
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .nav-links.open li {
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open a {
        display: block;
        padding: 14px 0;
        font-size: 16px;
    }

    .nav-links.open .btn {
        margin-top: 16px;
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}
/* Hide mobile label by default */
.mobile-label {
    display: none;
}

/* Mobile view */
@media (max-width: 768px) {
    .mobile-label {
        display: block;
        text-align: center;
        margin-bottom: 15px;
    }

    .desktop-label {
        display: none;
    }
}
/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 64px 0;
    }

    .hero {
        padding: 130px 0 60px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .btn {
        width: fit-content;
    }

    .service-img-body {
        text-align: center;
    }

    .footer-brand p {
        max-width: max-content;
        margin-bottom: 10px;
    }

    /* for floating pills  */
    .pill-1 {
        top: 38% !important;
        left: -3% !important;
    }

    .pill-2 {
        top: 30%;
        right: -2% !important;
    }

    .pill-3 {
        top: 61% !important;
        left: -4% !important;
    }

    .pill-4 {
        top: 68%;
        right: -3% !important;
    }

    .pill-5 {
        top: 82%;
        left: -3% !important;
    }

    .pill-6 {
        top: 18%;
        right: -4% !important;
    }

    /* .hero-img { display: none; } */
    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .program-card,
    .blog-card-body,
    .who-card,
    .contact-info,
    .story-text,
    .svc-panel-body,
    .program-page-card,
    .philosophy-card-body {
        text-align: center;
    }

    .about-img {
        /*display: none;*/
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto 16px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .review-card {
        width: 280px;
    }
    .about-img img{
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* ---- PAGE HEADER ---- */
.page-header {
    padding: 130px 0 60px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--bg-soft) 100%);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 14px;
}

.page-header p {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- ABOUT PAGE ---- */
.story-section {
    background: var(--warm-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 36px;
    align-items: end;
}

.story-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.story-text h2 {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.story-text p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 18px;
}

.story-text strong {
    color: var(--charcoal);
}

.philosophy-section {
    background: var(--cream);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.philosophy-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.philosophy-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.philosophy-card-body {
    padding: 20px;
}

.philosophy-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.philosophy-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ---- SERVICES PAGE ---- */
.services-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-img-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    background: var(--warm-white);
    transition: all 0.3s ease;
}

.service-img-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.service-img-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.4s ease;
}

.service-img-card:hover img {
    transform: scale(1.04);
}

.service-img-body {
    padding: 24px;
}

.service-img-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.service-img-body p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 16px;
}

.service-img-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-img-body ul li {
    font-size: 0.88rem;
    color: var(--gray);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.service-img-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ---- CTA BANNER ---- */
.cta-banner {
    background: linear-gradient(135deg, var(--bg-soft), var(--cream));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    padding: 72px 0;
}

.cta-banner h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 14px;
}

.cta-banner p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- PROGRAMS PAGE ---- */
.programs-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.program-page-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.program-page-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.program-page-card.featured {
    border-color: var(--primary);
    background: var(--bg-soft);
}

.program-page-card .badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
}

.program-page-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.program-page-card .duration {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.program-page-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 18px;
}

.program-page-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.program-page-card ul li {
    font-size: 0.9rem;
    color: var(--gray);
    padding: 5px 0 5px 20px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.program-page-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 14px;
    display: block;
}

.benefit-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ---- GALLERY PAGE ---- */
.masonry-grid {
    columns: 4;
    column-gap: 16px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: block;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(196, 96, 122, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.masonry-overlay i {
    font-size: 1.6rem;
    color: #fff;
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

@media (max-width: 1024px) {
    .masonry-grid {
        columns: 3;
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        columns: 2;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        columns: 1;
    }
}

/* ---- VIDEOS PAGE ---- */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: center;
}

.reel-card {
    background: var(--warm-white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 360px;
    transition: all 0.3s;
}

.reel-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.reel-card blockquote {
    margin: 0 !important;
    min-width: unset !important;
    width: 100% !important;
    border: none !important;
    box-shadow: none !important;
}

.reel-label {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border);
}

.reel-label i {
    color: var(--primary);
}

.reel-label span {
    font-size: 13px;
    color: var(--gray);
}

.reel-label a {
    margin-left: auto;
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.reel-label a:hover {
    color: var(--primary);
}

.follow-box {
    text-align: center;
    margin-top: 60px;
    padding: 48px 32px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.follow-box h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.follow-box p {
    color: var(--gray);
    margin-bottom: 24px;
}

/* ---- CONTACT PAGE ---- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 14px;
}

.contact-info>p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 32px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    margin-bottom: 4px;
}

.contact-item-text p {
    font-size: 0.95rem;
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-item-text a {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
}

.contact-form-box {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
}

.contact-form-box h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.contact-form-box>p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: var(--font-sans);
    background: var(--warm-white);
    color: var(--charcoal);
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-note {
    font-size: 12px;
    color: var(--gray);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

#formMsg {
    display: none;
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.faq-section {
    background: var(--cream);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--warm-white);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: background 0.2s;
}

.faq-q:hover {
    background: var(--bg-soft);
}

.faq-q i {
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-q i {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

.faq-a p {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.7;
}

.map-section {
    background: var(--warm-white);
}

.map-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.map-info h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.address-box {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.address-box i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.address-box h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.address-box p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.hours h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.hours ul {
    list-style: none;
}

.hours li {
    font-size: 0.9rem;
    color: var(--gray);
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
}

.hours li strong {
    color: var(--charcoal);
}

.map-embed {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
}

/* ---- RESPONSIVE INNER PAGES ---- */
@media (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .story-grid img {
        height: 320px;
    }

    .about-carousel {
        width: 80%;
        margin: 0 auto;
    }

    .philosophy-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-image-grid {
        grid-template-columns: 1fr;
    }

    .programs-page-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .map-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .reels-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- HERO CAROUSEL ---- */
.hero-carousel {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.hero-carousel-container {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 400px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: auto;
    max-height: 84vh;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.hero-carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ---- FLOATING PILLS ---- */
.floating-pills {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pill {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--charcoal);
    box-shadow: var(--shadow);
    animation: pillFloat 6s ease-in-out infinite;
    white-space: nowrap;
}

.pill i {
    color: var(--primary);
    font-size: 13px;
}

.pill-1 {
    top: 12%;
    left: -18%;
    animation-delay: 0s;
}

.pill-2 {
    top: 30%;
    right: -20%;
    animation-delay: 1.5s;
}

.pill-3 {
    top: 50%;
    left: -16%;
    animation-delay: 3s;
}

.pill-4 {
    top: 68%;
    right: -18%;
    animation-delay: 0.8s;
}

.pill-5 {
    top: 82%;
    left: -14%;
    animation-delay: 2.2s;
}

.pill-6 {
    top: 18%;
    right: -16%;
    animation-delay: 4s;
}

@keyframes pillFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* @media (max-width: 1200px) { .floating-pills { display: none; } } */

/* ---- SERVICES TABLE ---- */
.services-table-wrap {
    overflow-x: auto;
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    background: var(--warm-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.services-table thead tr {
    background: var(--primary);
    color: #fff;
}

.services-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--charcoal);
    vertical-align: middle;
}

.services-table td i {
    color: var(--primary);
    margin-right: 8px;
}

.services-table tbody tr:last-child td {
    border-bottom: none;
}

.services-table tbody tr:hover {
    background: var(--bg-soft);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

@media (max-width: 768px) {

    .services-table th:nth-child(3),
    .services-table td:nth-child(3),
    .services-table th:nth-child(4),
    .services-table td:nth-child(4) {
        display: none;
    }
}

/* ---- HERO IMG POSITION FIX ---- */
.hero-img {
    position: relative;
}

/* ---- NO UNDERLINE ON NAV BUTTON ---- */
.nav-links .btn::after {
    display: none !important;
}

/* ===== CONNECT SECTION ===== */
.connect-section {
    padding: 90px 0;
    background: var(--warm-white);
}

.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ---- Instagram side ---- */
.connect-insta-header {
    margin-bottom: 16px;
}

.insta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.insta-badge:hover {
    opacity: 0.85;
}

.insta-frame-box {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: #fff;
    position: relative;
    height: 600px;
}

.insta-frame-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.insta-blocked {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    height: 100%;
    padding: 40px;
    text-align: center;
}

.insta-blocked i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #f09433, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insta-blocked p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ---- WhatsApp Form side ---- */
.connect-form-inner {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
}

.whatsapp-form-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.wa-icon {
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.whatsapp-form-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 3px;
}

.whatsapp-form-header p {
    font-size: 0.85rem;
    color: var(--gray);
}

.wa-form-group {
    margin-bottom: 16px;
}

.wa-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.wa-form-group input,
.wa-form-group select,
.wa-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font-sans);
    background: #fff;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s;
}

.wa-form-group input:focus,
.wa-form-group select:focus,
.wa-form-group textarea:focus {
    border-color: #25D366;
}

.btn-wa {
    width: 100%;
    justify-content: center;
    padding: 14px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, transform 0.2s;
    margin-top: 8px;
}

.btn-wa:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.wa-note {
    font-size: 12px;
    color: var(--gray);
    text-align: center;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

@media (max-width: 900px) {
    .connect-grid {
        grid-template-columns: 1fr;
    }

    .insta-frame-box {
        height: 500px;
    }
}

/* ---- SERVICE CARD TITLE LINK ---- */
.service-img-body h3 a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.2s;
}

.service-img-body h3 a:hover {
    color: var(--accent);
}

.service-img-body h3 a::after {
    display: none !important;
}

/* ---- FOOTER LOGO FIX ---- */
.footer-brand img {
    filter: none !important;
    height: 60px;
    width: auto;
    margin-bottom: 16px;
    /* background: #fff; */
    /* border-radius: 8px; */
    /* padding: 4px; */
}

/* ---- FOOTER LOGO ROUND ---- */
.footer-brand img {
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    object-fit: cover !important;
}

/* ---- ALL LOGOS ROUND ---- */
.nav-logo img,
.footer-brand img {
    border-radius: 50% !important;
    width: 72px !important;
    height: 72px !important;
    object-fit: cover !important;
}

/* ---- ABOUT CAROUSEL ---- */
.about-carousel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-carousel-container {
    position: relative;
    width: 100%;
    height: 690px;
}

.about-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.about-slide.active {
    opacity: 1;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.about-carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.about-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.about-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.about-prev,
.about-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
    box-shadow: var(--shadow);
}

.about-prev {
    left: 12px;
}

.about-next {
    right: 12px;
}

.about-prev:hover,
.about-next:hover {
    background: var(--primary);
    color: #fff;
}

/* ---- READ MORE ---- */
.story-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.story-more.open {
    max-height: 600px;
}

.read-more-btn {
    margin-top: 20px;
    font-size: 14px;
    padding: 10px 24px;
}

/* ---- GOOGLE RATING BADGE ---- */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 24px;
    margin-top: 20px;
    box-shadow: var(--shadow);
}

.google-logo {
    height: 22px;
    width: auto;
}

.google-stars {
    color: #FBBC04;
    font-size: 1rem;
    letter-spacing: 2px;
}

.google-score {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
}

.google-divider {
    width: 1px;
    height: 20px;
    background: var(--border);
}

.google-verified {
    font-size: 13px;
    color: #1a73e8;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.google-verified i {
    font-size: 14px;
}

/* ---- REVIEW CARD TOP ---- */
.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-google-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* ---- GOOGLE MAPS REVIEWS EMBED ---- */
.gmaps-reviews-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    height: 480px;
}

.gmaps-reviews-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.gmaps-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.97));
    display: flex;
    justify-content: center;
}

.gmaps-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #1a73e8;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: all 0.2s;
}

.gmaps-cta img {
    height: 18px;
}

.gmaps-cta:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

/* ---- FLOATING BUTTONS ---- */
.floating-btns {
    position: fixed;
    bottom: 28px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px 0 0;
    height: 52px;
    border-radius: 50px;
    font-size: 1.3rem;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
    max-width: 52px;
    /* collapsed — shows only icon */
}

.float-btn:hover {
    max-width: 200px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
    transform: translateY(-2px);
}

.float-btn i {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.float-label {
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s ease 0.1s;
    font-family: var(--font-sans);
}

.float-btn:hover .float-label {
    opacity: 1;
}

/* WhatsApp — green */
.float-wa {
    background: #25D366;
}

.float-wa:hover {
    background: #1ebe5d;
}

/* PDF — pink gradient */
.float-pdf {
    background: var(--primary);
}

.float-pdf:hover {
    background: var(--accent);
}

@media (max-width: 480px) {
    .floating-btns {
        bottom: 20px;
        /* Lift above mobile browser toolbars */
        right: 20px;
        z-index: 10000;
    }

    .float-btn {
        height: 52px;
        max-width: 52px;
        padding: 0;
        justify-content: center;
    }

    .float-btn i {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 20px;
    }

    .float-btn:hover {
        max-width: 52px;
        /* Keep it as a simple circle on hover in mobile */
    }

    .float-label {
        display: none;
    }
}

/* ---- SERVICE TAB SHOWCASE ---- */
.svc-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Tabs */
.svc-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-tab {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.svc-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.25s ease;
}

.svc-tab:hover,
.svc-tab.active {
    border-color: var(--primary);
    background: var(--bg-soft);
    transform: translateX(4px);
}

.svc-tab:hover::before,
.svc-tab.active::before {
    transform: scaleY(1);
}

.svc-tab-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--border);
    min-width: 32px;
    transition: color 0.25s;
}

.svc-tab:hover .svc-tab-num,
.svc-tab.active .svc-tab-num {
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.svc-tab-text {
    flex: 1;
}

.svc-tab-text h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 3px;
}

.svc-tab-text p {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
}

.svc-tab-arrow {
    color: var(--primary);
    font-size: 0.85rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s;
}

.svc-tab:hover .svc-tab-arrow,
.svc-tab.active .svc-tab-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Panel */
.svc-panel-wrap {
    position: relative;
}

.svc-panel {
    display: none;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.svc-panel.active {
    display: block;
}

.svc-panel-img {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.svc-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.svc-panel:hover .svc-panel-img img {
    transform: scale(1.04);
}

.svc-panel-body {
    padding: 32px;
}

.svc-panel-body h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.svc-panel-body p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 18px;
}

.svc-panel-body ul {
    list-style: none;
    margin-bottom: 24px;
}

.svc-panel-body ul li {
    font-size: 0.9rem;
    color: var(--gray);
    padding: 6px 0 6px 20px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.svc-panel-body ul li:last-child {
    border-bottom: none;
}

.svc-panel-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Mobile */
@media (max-width: 900px) {
    .svc-showcase {
        grid-template-columns: 1fr;
    }

    .svc-tab-text p {
        display: none;
    }

    .svc-panel-img {
        height: 240px;
    }
}

/* ---- SERVICE PANEL IMAGE — natural ratio, no crop ---- */
.svc-panel-img {
    height: auto !important;
    max-height: 420px;
    overflow: hidden;
}

.svc-panel-img img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    max-height: 420px;
    background: var(--cream);
}

/* ---- SERVICE PANEL — IMAGE BACKGROUND WITH OVERLAY ---- */
.svc-panel {
    position: relative;
    min-height: 480px;
    border-radius: 20px;
    overflow: hidden;
    border: none !important;
    box-shadow: var(--shadow-hover) !important;
}

.svc-panel-img {
    position: absolute !important;
    inset: 0;
    height: 100% !important;
    max-height: none !important;
    z-index: 0;
}

.svc-panel-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
    max-height: none !important;
    background: none !important;
}

/* Dark gradient overlay */
.svc-panel-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.55) 40%,
            rgba(0, 0, 0, 0.88) 100%);
}

.svc-panel-body {
    position: relative;
    z-index: 2;
    padding: 32px !important;
    margin-top: auto;
    /* push body to bottom */
    position: absolute !important;
    bottom: 0;
    left: 0;
    right: 0;
}

.svc-panel-body h3 {
    color: #fff !important;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.svc-panel-body p {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.svc-panel-body ul {
    margin-bottom: 20px;
}

.svc-panel-body ul li {
    color: rgba(255, 255, 255, 0.82) !important;
    border-bottom-color: rgba(255, 255, 255, 0.15) !important;
    font-size: 0.88rem;
}

.svc-panel-body ul li::before {
    color: var(--primary) !important;
}

/* ---- SERVICE PANEL HEIGHT FIX ---- */
.svc-panel-wrap,
.svc-panel {
    height: 100% !important;
    min-height: unset !important;
}

.svc-panel {
    display: none;
    flex-direction: column;
}

.svc-panel.active {
    display: flex !important;
}

.svc-panel-img {
    position: relative !important;
    inset: unset !important;
    flex: 1;
    height: auto !important;
}

.svc-panel-img img {
    width: 100% !important;
    height: 100% !important;
    min-height: 500px;
    object-fit: cover !important;
    object-position: top center !important;
    display: block;
}

.svc-panel-body {
    position: absolute !important;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

/* ---- PDF FLOAT BUTTON — ORIGINAL RED COLOR ---- */
.float-pdf {
    background: #E5252A !important;
}

.float-pdf:hover {
    background: #c41f24 !important;
}

/* ---- WHO WE WORK WITH MARQUEE ---- */
.who-marquee {
    overflow: hidden;
    -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%);
}

.who-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: whoScroll 30s linear infinite;
}

.who-marquee:hover .who-track {
    animation-play-state: paused;
}

@keyframes whoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.who-card {
    width: 280px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.who-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px hsl(329 100% 70% / 0.15);
}

.who-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin: 0 auto 18px;
    transition: all 0.3s;
}

.who-card:hover .who-icon {
    background: var(--primary);
    color: #fff;
}

.who-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
    line-height: 1.4;
}

.who-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ---- BLOG SECTION ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px hsl(329 100% 70% / 0.15);
    border-color: var(--primary);
}

.blog-card-img {
    display: block;
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
    display: block;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 24px;
}

.blog-date {
    font-size: 12px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.blog-date i {
    color: var(--primary);
}

.blog-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-body h3 a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-body h3 a:hover {
    color: var(--accent);
}

.blog-card-body h3 a::after {
    display: none !important;
}

.blog-card-body p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: gap 0.2s;
}

.blog-read-more:hover {
    gap: 10px;
}

.blog-read-more::after {
    display: none !important;
}

.blog-fallback {
    text-align: center;
    padding: 40px;
    color: var(--gray);
    font-size: 0.95rem;
}

.blog-fallback a {
    color: var(--accent);
    font-weight: 600;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- BLOG CARD NO IMAGE ---- */
.blog-card-img {
    display: none !important;
}

.blog-card-body {
    padding: 28px 24px;
}

.blog-card-body .blog-date {
    margin-bottom: 8px;
}

.blog-cat-inline {
    display: inline-block;
    background: var(--bg-soft);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* ---- NAV DOWNLOAD BROCHURE WHITE TEXT ---- */
.nav-book {
    color: #fff !important;
}

/* ---- FOOTER 4 COLUMNS ---- */
.footer-inner {
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
}

.footer-col a i {
    width: 16px;
    margin-right: 8px;
    color: var(--primary);
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 480px) {
    .footer-inner {
        grid-template-columns: 1fr !important;
    }
}

/* ---- SERVICES MOBILE ACCORDION ---- */
@media (max-width: 900px) {
    .svc-showcase { grid-template-columns: 1fr; gap: 0; }

    /* Hide desktop panel wrap */
    .svc-panel-wrap { display: none; }

    /* Each tab becomes an accordion item */
    .svc-tab {
        flex-direction: column;
        align-items: flex-start;
        border-radius: var(--radius);
        margin-bottom: 8px;
        transform: none !important;
    }
    .svc-tab-arrow { display: none; }

    /* Chevron icon for accordion */
    .svc-tab::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--blush);
        font-size: 12px;
        transition: transform 0.3s;
    }
    .svc-tab.open::after {
        transform: translateY(-50%) rotate(180deg);
    }

    /* Inline panel shown below each tab when open */
    .svc-tab .svc-inline-panel {
        display: none;
        width: 100%;
        margin-top: 16px;
        border-radius: var(--radius);
        overflow: hidden;
        border: 1px solid var(--border);
    }
    .svc-tab.open .svc-inline-panel { display: block; }

    .svc-inline-panel img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        object-position: top;
        display: block;
    }
    .svc-inline-panel .svc-panel-body {
        position: static !important;
        background: #fff;
        padding: 20px !important;
    }
    .svc-inline-panel .svc-panel-body h3 { color: var(--charcoal) !important; font-size: 1.1rem; }
    .svc-inline-panel .svc-panel-body p { color: var(--gray) !important; font-size: 0.9rem; }
    .svc-inline-panel .svc-panel-body ul li { color: var(--gray) !important; border-bottom-color: var(--border) !important; }
    .svc-inline-panel .svc-panel-body ul li::before { color: var(--blush) !important; -webkit-text-fill-color: var(--blush) !important; }
}

/* ---- SERVICES: DESKTOP vs MOBILE ---- */
.svc-desktop { display: grid; }
.svc-mobile  { display: none; }
.svc-accordion {
display: none !important;
}
@media (max-width: 900px) {
    .svc-desktop { display: none !important; }
    .svc-mobile  { display: block !important; }
}

/* ---- MOBILE ACCORDION ---- */
.svc-accordion { display: flex; flex-direction: column; gap: 10px; }

.svc-acc-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
}

.svc-acc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: background 0.2s;
    position: relative;
}
.svc-acc-header:hover { background: var(--bg-soft); }
.svc-acc-item.open .svc-acc-header { background: var(--bg-soft); border-bottom: 1px solid var(--border); }

.svc-acc-num {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--border);
    min-width: 28px;
}
.svc-acc-item.open .svc-acc-num { color: var(--primary); }

.svc-acc-header i {
    margin-left: auto;
    color: var(--primary);
    font-size: 12px;
    transition: transform 0.3s;
}
.svc-acc-item.open .svc-acc-header i { transform: rotate(180deg); }

.svc-acc-body {
    display: none;
}
.svc-acc-item.open .svc-acc-body { display: block; }

.svc-acc-body img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.svc-acc-content {
    padding: 20px;
}
.svc-acc-content p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }
.svc-acc-content ul { list-style: none; margin-bottom: 18px; }
.svc-acc-content ul li { font-size: 0.88rem; color: var(--gray); padding: 5px 0 5px 18px; position: relative; border-bottom: 1px solid var(--border); }
.svc-acc-content ul li:last-child { border-bottom: none; }
.svc-acc-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* ---- DESKTOP SERVICE PANEL FIX (no effect on mobile) ---- */
@media (min-width: 901px) {
    .svc-showcase {
        display: grid !important;
        grid-template-columns: 1fr 1.4fr;
        gap: 40px;
        align-items: start;
    }

    .svc-panel-wrap {
        display: block !important;
        position: relative;
        height: 560px;
    }

    .svc-panel {
        display: none;
        position: absolute !important;
        inset: 0;
        border-radius: 20px;
        overflow: hidden;
        border: none !important;
        box-shadow: 0 12px 40px rgba(0,0,0,0.12) !important;
        height: 560px !important;
        min-height: unset !important;
        flex-direction: unset !important;
    }

    .svc-panel.active {
        display: block !important;
    }

    .svc-panel-img {
        position: absolute !important;
        inset: 0 !important;
        height: 100% !important;
        max-height: none !important;
        z-index: 0;
    }

    .svc-panel-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: top center !important;
        min-height: unset !important;
        background: none !important;
    }

    .svc-panel-img::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.88) 100%);
    }

    .svc-panel-body {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 2;
        padding: 32px !important;
    }

    .svc-panel-body h3 { color: #fff !important; font-size: 1.4rem; margin-bottom: 10px; }
    .svc-panel-body p  { color: rgba(255,255,255,0.88) !important; font-size: 0.92rem; line-height: 1.7; margin-bottom: 16px; }
    .svc-panel-body ul { margin-bottom: 20px; }
    .svc-panel-body ul li { color: rgba(255,255,255,0.82) !important; border-bottom-color: rgba(255,255,255,0.15) !important; font-size: 0.88rem; }
    .svc-panel-body ul li::before { color: var(--primary) !important; -webkit-text-fill-color: var(--primary) !important; }
}

/* ================================================
   DESKTOP SERVICE PANEL — FINAL CLEAN OVERRIDE
   Only applies above 900px, zero effect on mobile
   ================================================ */
@media (min-width: 901px) {

    /* Reset showcase to proper 2-col grid */
    .svc-desktop {
        display: grid !important;
        grid-template-columns: 1fr 1.4fr !important;
        gap: 40px !important;
        align-items: start !important;
    }

    /* Panel wrap: fixed height container */
    .svc-panel-wrap {
        display: block !important;
        position: relative !important;
        height: 560px !important;
        min-height: unset !important;
        flex: unset !important;
    }

    /* All panels hidden by default */
    .svc-panel {
        display: none !important;
        position: absolute !important;
        inset: 0 !important;
        height: 560px !important;
        min-height: unset !important;
        border-radius: 20px !important;
        overflow: hidden !important;
        border: none !important;
        box-shadow: 0 12px 40px rgba(0,0,0,0.15) !important;
        flex-direction: unset !important;
    }

    /* Active panel visible */
    .svc-panel.active {
        display: block !important;
    }

    /* Image fills full panel */
    .svc-panel-img {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        flex: unset !important;
        z-index: 0 !important;
    }

    .svc-panel-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: top center !important;
        min-height: unset !important;
        max-height: none !important;
        background: none !important;
        display: block !important;
    }

    /* Dark gradient overlay */
    .svc-panel-img::after {
        content: '' !important;
        position: absolute !important;
        inset: 0 !important;
        background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.88) 100%) !important;
        z-index: 1 !important;
    }

    /* Text pinned to bottom */
    .svc-panel-body {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        top: unset !important;
        z-index: 2 !important;
        padding: 28px 32px !important;
        background: none !important;
    }

    .svc-panel-body h3 { color: #fff !important; font-size: 1.3rem !important; margin-bottom: 8px !important; }
    .svc-panel-body p  { color: rgba(255,255,255,0.85) !important; font-size: 0.9rem !important; line-height: 1.65 !important; margin-bottom: 14px !important; }
    .svc-panel-body ul { margin-bottom: 18px !important; }
    .svc-panel-body ul li { color: rgba(255,255,255,0.8) !important; border-bottom-color: rgba(255,255,255,0.12) !important; font-size: 0.85rem !important; }
    .svc-panel-body ul li::before { color: var(--primary) !important; -webkit-text-fill-color: var(--primary) !important; }
}

/* ===== CTA STRIP ===== */
.cta-strip {
    position: relative;
    background: var(--bg-soft);
    overflow: visible;
    padding: 0 !important;
    margin: 0 !important;
}
.cta-strip::before,
.cta-strip::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: hsl(329,100%,70%,0.12);
}
.cta-strip::before { width: 400px; height: 400px; top: -150px; left: -100px; }
.cta-strip::after  { width: 300px; height: 300px; bottom: -120px; right: 5%; }

.cta-strip-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}
.cta-strip-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    font-style: italic;
    color: hsl(0,0%,10%);
    line-height: 1.3;
    margin-bottom: 28px;
}
/* .cta-strip-quote span { color: hsl(329,100%,50%); } */

.cta-strip-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.cta-strip-image {
    position: relative;
    flex-shrink: 0;
}
.cta-strip-image img {
    height: 380px;
    width: auto;
    display: block;
    margin-top: -70px;
    filter: drop-shadow(0 20px 40px hsl(329,100%,50%,0.25));
    /* animation: ctaFloat 4s ease-in-out infinite; */
}
.cta-strip-image::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 70px;
    background: hsl(329,100%,60%,0.2);
    border-radius: 50%;
    filter: blur(20px);
}
@keyframes ctaFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}
.quote-badge {
    position: absolute;
    top: 10px; right: -10px;
    width: 100px; height: 100px;
}
.quote-badge svg { animation: rotateBadge 12s linear infinite; }
.quote-badge-center {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
}
@keyframes rotateBadge {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@media (max-width: 768px) {
    .cta-strip { overflow: hidden; }
    .cta-strip::before, .cta-strip::after { display: none; }
    .cta-strip-inner { grid-template-columns: 1fr; text-align: center; padding: 40px 24px; gap: 0; position: relative; }
    .cta-strip-image {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
    }
    .cta-strip-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, var(--bg-soft) 40%, transparent 100%);
    }
    .cta-strip-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top right;
        margin: 0;
        filter: none;
        opacity: 0.35;
    }
    .cta-strip-content { position: relative; z-index: 1; }
    .cta-strip-quote { font-size: 1.3rem; margin-bottom: 20px; }
    .cta-strip-actions { justify-content: center; flex-direction: column; align-items: center; }
    .cta-strip-actions .btn { width: 100%; justify-content: center; }
    .quote-badge { display: none; }
}
