/*
Theme Name: BeYou - Krimali Mehta
Theme URI: https://krimali.com
Author: Krimali Mehta
Description: Premium transformation coaching theme
Version: 1.0.0
Text Domain: beyou
*/
/* ===========================
   KRIMALI All Pages
   =========================== */

:root {
   --cream: #fdf8f4;
    --warm-white: #fff;
    --blush: #fbbdf2;
    --blush-light: #fdebf5;
    --blush-dark: #eb77ad;
    --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; }

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

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: linear-gradient(135deg, hsl(329,100%,70%), hsl(329,100%,80%))
;
    color: #fff;
}
.btn-primary:hover {
    background: var(--blush-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196,96,122,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--blush-dark);
    border: 2px solid var(--blush);
}
.btn-outline:hover {
    background: var(--blush);
    color: #fff;
    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(--blush);
    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(--blush-light) 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--blush-light);
    border: 1px solid var(--blush);
    border-radius: 50px;
    font-size: 13px;
    color: var(--blush-dark);
    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(--blush-dark);
}

.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(--blush-dark);
    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(--blush-dark);
}

.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(--blush); 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(--blush-dark);
    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: 1fr 1fr;
    gap: 80px;
    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(--blush-light);
    border-left: 4px solid var(--blush);
    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(--blush);
}

.service-icon {
    width: 56px; height: 56px;
    background: var(--blush-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--blush-dark);
    margin-bottom: 20px;
    transition: all 0.3s;
}
.service-card:hover .service-icon {
    background: var(--blush);
    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(--blush-dark);
    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(--blush);
    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(--blush);
}
.program-card.featured { border-color: var(--blush); background: var(--blush-light); }

.program-badge {
    position: absolute;
    top: -12px; right: 24px;
    background: var(--blush);
    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(--blush-dark);
    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(--blush);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.contact-card i {
    font-size: 1.8rem;
    color: var(--blush);
    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(--blush-dark);
    font-weight: 600;
    transition: color 0.2s;
}
.contact-card a:hover { color: var(--blush); }

/* ---- 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(--blush); }

.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(--blush); }

.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(--blush); border-color: var(--blush); 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; }
}

/* ---- 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: 100px 0 60px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    /* .hero-img { display: none; } */
    .hero h1 { font-size: 2rem; }
    .hero-stats { gap: 24px; }

    .about-inner { grid-template-columns: 1fr; gap: 36px; }
    .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; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .review-card { width: 280px; }
}

@media (max-width: 480px) {
    .contact-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
}

/* ---- PAGE HEADER ---- */
.page-header {
    padding: 130px 0 60px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 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: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.story-grid img {
    width: 100%;
    height: 480px;
    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(--blush);
}
.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(--blush);
}
.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(--blush);
    font-weight: 700;
}

/* ---- CTA BANNER ---- */
.cta-banner {
    background: linear-gradient(135deg, var(--blush-light), 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(--blush);
}
.program-page-card.featured { border-color: var(--blush); background: var(--blush-light); }
.program-page-card .badge {
    position: absolute;
    top: -12px; right: 24px;
    background: var(--blush);
    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(--blush-dark);
    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(--blush);
    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(--blush); transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-card i { font-size: 2rem; color: var(--blush); 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(--blush); 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(--blush); }
.reel-label span { font-size: 13px; color: var(--gray); }
.reel-label a { margin-left: auto; font-size: 13px; color: var(--blush-dark); font-weight: 600; display: flex; align-items: center; gap: 5px; }
.reel-label a:hover { color: var(--blush); }
.follow-box {
    text-align: center;
    margin-top: 60px;
    padding: 48px 32px;
    background: var(--blush-light);
    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(--blush); transform: translateX(4px); }
.contact-item-icon {
    width: 44px; height: 44px;
    background: var(--blush);
    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(--blush-dark); 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(--blush); }
.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(--blush-light); }
.faq-q i { color: var(--blush); 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(--blush); 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) {
	.footer-brand {
	    display: flex;
    flex-direction: column;
    align-items: center;
}
	.footer{ text-align: center;}
    .story-grid { grid-template-columns: 1fr; gap: 32px; }
    .story-grid img { height: 320px; }
    .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: 580px; }
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.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(--blush); 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(--blush); 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(--blush); 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(--blush); margin-right: 8px; }
.services-table tbody tr:last-child td { border-bottom: none; }
.services-table tbody tr:hover { background: var(--blush-light); }
.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(--blush-dark); }
.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: 480px; }
.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(--blush); 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(--blush); 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(--blush); }
.float-pdf:hover { background: var(--blush-dark); }

@media (max-width: 480px) {
    .floating-btns { bottom: 20px; right: 16px; }
    .float-btn { height: 46px; max-width: 46px; padding: 0; }
    .float-btn i { width: 46px; height: 46px; }
    .float-btn:hover { max-width: 46px; }
    .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(--blush);
    transform: scaleY(0);
    transition: transform 0.25s ease;
}
.svc-tab:hover, .svc-tab.active {
    border-color: var(--blush);
    background: var(--blush-light);
    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(--blush);
    -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(--blush);
    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(--blush);
    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(--blush) !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(--blush);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px hsl(329 100% 70% / 0.15);
}
.who-icon {
    width: 64px; height: 64px;
    background: var(--blush-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--blush);
    margin: 0 auto 18px;
    transition: all 0.3s;
}
.who-card:hover .who-icon {
    background: var(--blush);
    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(--blush);
}

.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(--blush);
    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(--blush); }

.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(--blush-dark); }
.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(--blush-dark);
    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(--blush-dark); 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(--blush-light);
    color: var(--blush-dark);
    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(--blush);
}
@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 480px) {
    .footer-inner { grid-template-columns: 1fr !important; }
}

/* ===================================
   WORDPRESS THEME — NAV & FOOTER OVERRIDES
=================================== */

body { padding-top: 84px; background: var(--cream); }

/* NAV */
.main-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(253,248,244,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow 0.3s;
}
.main-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
}

.nav-logo img {
    height: 52px; width: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
	margin-left: auto;
    margin-right: 24px;
}
.nav-link {
    font-size: 15px;
    color: var(--gray);
    font-weight: 400;
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--blush);
    transition: width 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--charcoal); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta .cta-nav {
    padding: 10px 22px;
    background: var(--blush);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}
.nav-cta .cta-nav:hover {
    background: var(--blush-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px hsl(329 100% 70% / 0.3);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    background: none;
    border: none;
    padding: 4px;
}
.mobile-nav-icon {
    width: 24px; height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    position: relative;
    transition: all 0.3s;
}
.mobile-nav-icon::before,
.mobile-nav-icon::after {
    content: '';
    position: absolute;
    width: 100%; height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s;
}
.mobile-nav-icon::before { top: -8px; }
.mobile-nav-icon::after  { bottom: -8px; }

/* FOOTER */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 24px;
    margin-top: 80px;
}
.footer .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand .footer-logo img {
    height: 52px; width: 52px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    filter: none;
}
.footer-brand h3 {
    font-size: 1.3rem;
    font-weight: 300;
    background: linear-gradient(135deg, hsl(329,100%,70%), hsl(329,100%,80%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 260px; font-weight: 300; margin-bottom: 20px; }
.footer-brand .social-links { display: flex; gap: 10px; }
.footer-brand .social-links a,
.footer-brand .social-link {
    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;
    text-decoration: none;
    transition: all 0.2s;
}
.footer-brand .social-links a:hover,
.footer-brand .social-link:hover {
    background: var(--blush);
    border-color: var(--blush);
    color: #fff;
}
.footer-section h4 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover { color: var(--blush); }
.footer-links a i { color: var(--blush); width: 14px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-legal-links { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--blush); }
.footer-legal-links span { color: rgba(255,255,255,0.3); }

/* ===================================
   BLOG POST CARDS — beyou style
=================================== */
.blog-hero {
    padding: 60px 0 50px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 100%);
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.blog-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}
.blog-hero p { font-size: 1.05rem; color: var(--gray); }

.blog-section { padding: 80px 0; }

.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.post-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px hsl(329 100% 70% / 0.15);
    border-color: var(--blush);
}
.post-thumbnail { width: 100%; max-height: 360px; overflow: hidden; display: block; }
.post-thumbnail img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s ease; display: block; }
.post-card:hover .post-thumbnail img { transform: scale(1.05); }
.post-thumbnail-placeholder {
    width: 100%; height: 200px;
    background: var(--blush-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: var(--blush);
}
.post-body { padding: 24px; }
.post-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 12px; color: var(--gray); flex-wrap: wrap; }
.post-category {
    padding: 3px 12px;
    background: var(--blush-light);
    color: var(--blush-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.post-date { font-weight: 300; }
.post-card h2 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; line-height: 1.4; }
.post-card h2 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.post-card h2 a:hover { color: var(--blush-dark); }
.post-excerpt { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.read-more {
    font-size: 13px; font-weight: 600; color: var(--blush-dark);
    display: inline-flex; align-items: center; gap: 6px;
    text-decoration: none; transition: gap 0.2s;
}
.read-more:hover { gap: 10px; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 60px; flex-wrap: wrap; }
.pagination a, .pagination span {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    font-size: 14px; font-weight: 400;
    background: #fff; color: var(--charcoal);
    text-decoration: none;
    transition: all 0.2s;
}
.pagination a:hover, .pagination .current {
    background: var(--blush);
    color: #fff;
    border-color: var(--blush);
}

/* Single post */
.single-post-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 100%);
    border-bottom: 1px solid var(--border);
}
.single-post-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--charcoal);
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
    line-height: 1.3;
}
.single-post-hero .post-meta { justify-content: center; margin-bottom: 16px; }
.post-author-bar { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 14px; color: var(--gray); }
.post-author-bar strong { color: var(--charcoal); font-weight: 600; }

.single-post-featured-image { max-width: 860px; margin: 40px auto 0; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.single-post-featured-image img { width: 100%; height: auto; display: block; }

.single-post-content { padding: 80px 0; }
.post-content-wrapper { max-width: 760px; margin: 0 auto; }
.post-content-wrapper p { font-size: 1.05rem; color: var(--gray); line-height: 1.9; margin-bottom: 24px; font-weight: 300; }
.post-content-wrapper h2 { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 700; color: var(--charcoal); margin: 40px 0 18px; }
.post-content-wrapper h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--charcoal); margin: 30px 0 14px; }
.post-content-wrapper ul, .post-content-wrapper ol { padding-left: 24px; margin-bottom: 24px; color: var(--gray); line-height: 1.9; }
.post-content-wrapper blockquote {
    border-left: 4px solid var(--blush);
    padding: 20px 28px;
    margin: 30px 0;
    background: var(--blush-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--charcoal);
}
.post-content-wrapper img { border-radius: var(--radius); margin: 20px 0; width: 100%; }
.post-content-wrapper a { color: var(--blush-dark); text-decoration: underline; }
.post-content-wrapper a:hover { color: var(--blush); }

.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.post-tags a { padding: 5px 14px; background: var(--gray-light); border-radius: 50px; font-size: 13px; color: var(--gray); text-decoration: none; transition: all 0.2s; }
.post-tags a:hover { background: var(--blush-light); color: var(--blush-dark); }

.post-navigation { max-width: 760px; margin: 0 auto; padding: 40px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; border-top: 1px solid var(--border); }
.nav-previous, .nav-next { padding: 22px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.2s; text-decoration: none; display: block; }
.nav-next { text-align: right; }
.nav-previous:hover, .nav-next:hover { border-color: var(--blush); box-shadow: 0 8px 24px hsl(329 100% 70% / 0.12); }
.nav-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--blush); font-weight: 600; margin-bottom: 6px; }
.nav-title { font-size: 14px; font-weight: 600; color: var(--charcoal); line-height: 1.4; }

.related-posts { padding: 80px 0; background: var(--cream); }
.related-posts h2 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; text-align: center; margin-bottom: 48px; color: var(--charcoal); }

/* ===================================
   FLOATING WHATSAPP BUTTON
=================================== */
.float-wa-btn {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px 0 0;
    height: 52px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    overflow: hidden;
    max-width: 52px;
    white-space: nowrap;
}
.float-wa-btn:hover {
    max-width: 200px;
    background: #1ebe5d;
    box-shadow: 0 10px 32px rgba(37,211,102,0.5);
    transform: translateY(-2px);
    color: #fff;
}
.float-wa-btn i {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.float-wa-label {
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s ease 0.1s;
}
.float-wa-btn:hover .float-wa-label { opacity: 1; }

@media (max-width: 480px) {
    .float-wa-btn { bottom: 20px; right: 16px; height: 46px; max-width: 46px; padding: 0; }
    .float-wa-btn i { width: 46px; height: 46px; font-size: 1.3rem; }
    .float-wa-btn:hover { max-width: 46px; }
    .float-wa-label { display: none; }
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1024px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } .footer-content { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
    .nav-menu { display: none; position: fixed; top: 80px; left: 0; width: 100%; background: var(--cream); flex-direction: column; padding: 20px; gap: 0; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 999; }
    .nav-menu.active { display: flex; }
    .nav-link { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 16px; }
    .nav-cta { display: none; }
    .mobile-nav { display: flex; }
    .posts-grid { grid-template-columns: 1fr; }
    .post-navigation { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal-links { justify-content: center; }
}
