/* ============================================================
   DEEPAK LIFE SOLUTION – Main Stylesheet
   Palette:
     --navy:   #173f61  (primary dark)
     --gold:   #d5a848  (warm amber gold)
     --sage:   #4A7C65  (accent green)
     --cream:  #FAF8F4  (background)
     --text:   #1e3248  (body text)
   ============================================================ */

:root {
    --navy:        #173f61;
    --navy-light:  #1d4a72;
    --gold:        #d5a848;
    --gold-light:  #e8c06a;
    --gold-pale:   #fdf5e6;
    --rose:        #c05878;
    --rose-dark:   #a0445f;
    --rose-light:  #e08fa8;
    --rose-pale:   #fceef3;
    --rose-mid:    #f0bacb;
    --sage:        #4A7C65;
    --sage-light:  #EDF4F0;
    --cream:       #fef4f7;
    --white:       #FFFFFF;
    --text:        #1e3248;
    --text-muted:  #5a6a7e;
    --border:      #eee0e4;
    --shadow-sm:   0 2px 12px rgba(23,63,97,0.08);
    --shadow-md:   0 8px 32px rgba(23,63,97,0.12);
    --shadow-lg:   0 20px 60px rgba(23,63,97,0.16);
    --shadow-rose: 0 8px 32px rgba(201,107,122,0.18);
    --radius:      16px;
    --radius-sm:   8px;
    --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-script: 'Great Vibes', cursive;
    --font-serif:  'Cormorant Garamond', 'Playfair Display', serif;
    --font-body:   'DM Sans', 'Inter', sans-serif;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden; /* must be on html AND body to truly clip */
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.25;
    color: var(--navy);
}

.font-script {
    font-family: var(--font-script) !important;
    font-weight: 400;
}

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

a { text-decoration: none; color: inherit; transition: var(--transition); }

img { max-width: 100%; height: auto; }

/* ── Utility ──────────────────────────────────────────────── */
.text-gold     { color: var(--gold) !important; }
.text-navy     { color: var(--navy) !important; }
.text-sage     { color: var(--sage) !important; }
.text-rose     { color: var(--rose) !important; }
.bg-navy       { background-color: var(--navy) !important; }
.bg-gold       { background-color: var(--gold) !important; }
.bg-cream      { background-color: var(--cream) !important; }
.bg-sage-light { background-color: var(--sage-light) !important; }
.bg-rose-pale  { background-color: var(--rose-pale) !important; }

.section-pad   { padding: 96px 0; }
.section-pad-sm{ padding: 64px 0; }

/* ── Section Labels ───────────────────────────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 12px;
}
.section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--rose);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    font-weight: 600;
}

.section-desc {
    font-size: 1.05rem;
    max-width: 600px;
    color: var(--text-muted);
}

/* ── Divider ─────────────────────────────────────────────── */
.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--gold));
    border-radius: 4px;
    margin: 16px 0 24px;
}
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 15px 32px;
    border-radius: 50px;
    border: 2px solid var(--rose);
    transition: var(--transition);
    letter-spacing: 0.02em;
    box-shadow: 0 4px 18px rgba(192,88,120,0.35);
    min-height: 50px;
}
.btn-primary-custom:hover {
    background: transparent;
    color: var(--rose);
    border-color: var(--rose);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(192,88,120,0.4);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 15px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: var(--transition);
    min-height: 50px;
}
.btn-outline-custom:hover {
    background: var(--white);
    color: var(--rose);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-book {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #0a3064, #0a3064);
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 11px 24px;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
    min-height: 44px;
}
.btn-book:hover {
    background: var(--rose-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192,88,120,0.4);
}

/* ── Navbar ──────────────────────────────────────────────── */
#mainNav {
    padding: 0px 0;
    transition: var(--transition);
    background: #bc5675;
    z-index: 1050;
}
#mainNav.scrolled {
    background: #bc5675;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0px 0;
    box-shadow: 0 4px 24px rgba(192,88,120,0.2);
    border-bottom: 1px solid rgba(192,88,120,0.15);
}
#mainNav.scrolled .nav-link { color: #fff !important; }
#mainNav.scrolled .navbar-brand .logo-main { color: var(--navy) !important; }

.navbar-brand { flex-shrink: 0; }

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(192,88,120,0.35);
}
.logo-icon-sm {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-main {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    transition: var(--transition);
}
.logo-sub {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--gold-light);
    text-transform: uppercase;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9) !important;
    padding: 6px 14px !important;
    border-radius: 6px;
    position: relative;
    transition: var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--rose-light);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: #fff !important; font-weight: 600; }

.navbar-toggler {
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    padding: 6px 10px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#mainNav.scrolled .navbar-toggler { border-color: #fff; }
#mainNav.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826,39,66,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ══════════════════════════════════════════════════════════
   HERO  –  Centered Romantic Poster Layout
   ══════════════════════════════════════════════════════════ */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(160deg,
        #1a0a14 0%,
        #2d1025 18%,
        #3a1535 32%,
        #173f61 52%,
        #1d2a50 68%,
        #2a1030 84%,
        #160820 100%
    );
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    text-align: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 70% 55% at 50% 50%, rgba(192,88,120,0.28) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 30%, rgba(213,168,72,0.18) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 30%, rgba(232,144,168,0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(10,5,15,0.95) 0%, transparent 45%);
    pointer-events: none;
}

/* light-ray decorative lines */
.hero-rays {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.04;
}
.hero-rays::before, .hero-rays::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), transparent 70%);
    box-shadow:
        -120px 0 0 rgba(255,255,255,0.5),
        120px 0 0 rgba(255,255,255,0.5),
        -280px 0 0 rgba(255,255,255,0.3),
        280px 0 0 rgba(255,255,255,0.3),
        -500px 0 0 rgba(255,255,255,0.15),
        500px 0 0 rgba(255,255,255,0.15);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}

/* ── Main hero content wrapper ── */
.hero-content-wrap {
    position: relative;
    z-index: 2;
    padding: 110px 16px 0;
    flex: 1;
}

/* ── Top certificate badge ── */
.hero-cert-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(213,168,72,0.3);
}

/* ── Logo ── */
.hero-brand-logo {
    margin-bottom: 20px;
    animation: float 6s ease-in-out infinite;
}
.hero-brand-logo img {
    height: 90px;
    filter: drop-shadow(0 6px 24px rgba(213,168,72,0.5)) brightness(1.15);
}

/* ── Brand name block ── */
.hero-brand-name {
    margin-bottom: 16px;
}
.brand-deepak {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 700;
    color: var(--navy);
    color: var(--white);
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-shadow: 0 4px 32px rgba(0,0,0,0.4), 0 0 60px rgba(213,168,72,0.15);
}
.brand-ls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 6px;
}
.brand-ls-line {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.brand-ls-line.right {
    background: linear-gradient(90deg, var(--gold), transparent);
}
.brand-life-solution {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    white-space: nowrap;
}

/* ── Gold tagline small ── */
.hero-tagline-small {
    font-size: clamp(0.68rem, 1.2vw, 0.8rem);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin: 16px 0 6px;
}

/* ── Heart ornament line ── */
.hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 14px auto;
}
.hero-ornament-line {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-ornament-line.r {
    background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-ornament i {
    color: var(--gold);
    font-size: 0.85rem;
}

/* ── Script line ── */
.hero-script-line {
    font-family: var(--font-script);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--rose-light);
    margin-bottom: 24px;
    line-height: 1.3;
    text-shadow: 0 2px 16px rgba(201,107,122,0.3);
}

/* ── Three value propositions ── */
.hero-value-props {
    margin-bottom: 24px;
}
.hero-value-line {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3.2vw, 2.2rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.35;
    letter-spacing: 0.01em;
}
.hero-value-line.script-line {
    font-family: var(--font-script);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--gold-light);
    font-weight: 400;
}

/* ── Description ── */
.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.62);
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.85;
}

/* ── Mini service strip ── */
.hero-service-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 0;
    margin-bottom: 32px;
}
.hero-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 20px;
}
.hero-service-item i {
    font-size: 1.5rem;
    color: var(--gold);
    display: block;
}
.hero-service-item span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    white-space: nowrap;
}
.hero-service-sep {
    color: rgba(213,168,72,0.4);
    font-size: 1rem;
    padding: 0 4px;
    align-self: center;
}

/* ── Hero CTA buttons ── */
.hero-buttons { margin-bottom: 0; }

/* ── Hero stats ── */
.hero-stats {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    justify-content: center;
}
.hero-stat {
    text-align: center;
    padding: 0 32px;
    position: relative;
}
.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}
.hero-stat .stat-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    display: block;
}
.hero-stat .stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
    display: block;
}

/* ── Hero pillars bar (bottom of hero) ── */
.hero-pillars-bar {
    position: relative;
    z-index: 3;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(213,168,72,0.2);
    padding: 20px 0;
    margin-top: 40px;
}
.hero-pillar-item {
    text-align: center;
    padding: 4px 16px;
    position: relative;
}
.hero-pillar-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(213,168,72,0.2);
}
.hero-pillar-item .pi-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2px;
}
.hero-pillar-item .pi-sub {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
}

/* ══════════════════════════════════════════════════════════
   QUALITIES BAR (Spiritual Wisdom etc.)
   ══════════════════════════════════════════════════════════ */
.qualities-bar {
    background: linear-gradient(90deg, #1a0a14 0%, #2d1025 30%, var(--navy) 60%, #1a0a14 100%);
    padding: 28px 0;
    border-bottom: 3px solid var(--rose);
}
.quality-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    text-align: center;
}
.quality-item i {
    font-size: 1.6rem;
    color: var(--gold);
}
.quality-item span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}
.quality-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    align-self: center;
    display: none;
}
@media (min-width: 768px) { .quality-sep { display: block; } }

/* ══════════════════════════════════════════════════════════
   LOVE TRUST RESPECT STONES
   ══════════════════════════════════════════════════════════ */
.values-stones {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}
.stone {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 50px 50px 40px 40px;
    text-align: center;
    padding: 10px 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(213,168,72,0.2);
}
.stone:nth-child(2) {
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--rose), #a85060);
}
.stone:nth-child(3) {
    padding: 10px 18px;
}

/* ══════════════════════════════════════════════════════════
   HELP CARD – updated with rose accent
   ══════════════════════════════════════════════════════════ */

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
    box-shadow: var(--shadow-sm);
}
.stat-item {
    text-align: center;
    padding: 0 24px;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--border);
}
.stat-number {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

/* ── What Deepak Can Help You ────────────────────────────── */
.help-section { background: var(--rose-pale); }

.help-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--gold));
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.help-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-rose); }
.help-card:hover::before { transform: scaleX(1); }

.help-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--rose-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--rose);
    margin: 0 auto 18px;
    transition: var(--transition);
}
.help-card:hover .help-icon {
    background: linear-gradient(135deg, var(--rose), var(--gold));
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}
.help-card h5 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--navy);
}
.help-card p { font-size: 0.88rem; margin: 0; }

/* ── Services Overview ───────────────────────────────────── */
.services-overview { background: var(--white); }

.service-overview-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 40px 32px;
    height: 100%;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-overview-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rose), var(--rose-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.service-overview-card:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-overview-card:hover::after { transform: scaleX(1); }

.service-card-num {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(213,168,72,0.12);
    line-height: 1;
    margin-bottom: -10px;
}
.service-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-overview-card:hover .service-card-icon {
    transform: scale(1.1) rotate(-5deg);
}
.icon-gold { background: var(--gold-pale); color: var(--gold); }
.icon-rose { background: var(--rose-pale); color: var(--rose); }
.icon-sage { background: var(--sage-light); color: var(--sage); }
.icon-navy { background: rgba(23,63,97,0.06); color: var(--navy); }

.service-overview-card h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.service-overview-card p { font-size: 0.92rem; margin-bottom: 20px; }

.service-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 28px;
}
.service-tag {
    font-size: 0.76rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--white);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--rose);
    transition: var(--transition);
}
.btn-service-link:hover { gap: 10px; color: var(--navy); }

/* ── About Snippet ────────────────────────────────────────── */
.about-snippet {
    background: linear-gradient(135deg, #1a0a14 0%, #2d1025 30%, #173f61 70%, #1a0f22 100%);
}

.about-snippet-visual {
    position: relative;
    height: 480px;
    overflow: visible; /* badges visible on desktop */
}
.about-img-frame {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.about-img-bg {
    width: 300px;
    height: 400px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(213,168,72,0.2), rgba(74,124,101,0.15));
    border: 1px solid rgba(213,168,72,0.25);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-img-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.5);
}
.about-img-placeholder i { font-size: 4rem; display: block; margin-bottom: 8px; color: var(--gold-light); }
.about-img-placeholder span { font-size: 0.85rem; font-weight: 500; }

.about-badge-float {
    position: absolute;
    background: var(--gold);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.about-badge-float.badge-1 { bottom: 40px; left: -20px; }
.about-badge-float.badge-2 { top: 60px; right: -10px; }
.about-badge-float .badge-num {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}
.about-badge-float .badge-text { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

.about-snippet-content { padding: 40px 0; }
.about-snippet-content .section-label { color: var(--rose-light); }
.about-snippet-content .section-label::before { background: var(--rose-light); }
.about-snippet-content .section-title { color: var(--white); }
.about-snippet-content p { color: rgba(255,255,255,0.65); }

.about-feature-list { list-style: none; padding: 0; margin: 24px 0 36px; }
.about-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}
.about-feature-list li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(213,168,72,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-section { background: var(--rose-pale); }

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card .quote-icon {
    font-size: 3rem;
    line-height: 1;
    color: var(--rose-mid);
    font-family: Georgia, serif;
    margin-bottom: 16px;
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 20px; }
.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}
.author-name { font-size: 0.95rem; font-weight: 600; color: var(--navy); font-family: 'Cormorant Garamond', 'Playfair Display', serif; }
.author-role { font-size: 0.78rem; color: var(--text-muted); }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, #1a0a14 0%, #2d1025 30%, #3a1535 50%, #173f61 80%, #1d2a50 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(213,168,72,0.08);
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(74,124,101,0.06);
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { position: relative; }

.footer-wave {
    margin-bottom: -2px;
    line-height: 0;
}
.footer-wave svg { width: 100%; display: block; }

.footer-body {
    background: linear-gradient(160deg, #1a0a14 0%, #2a1025 40%, #173f61 100%);
    padding: 72px 0 0;
}

.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
}

.footer-heading {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--rose);
    border-radius: 2px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.footer-links a i { font-size: 0.7rem; color: var(--rose-light); transition: var(--transition); }
.footer-links a:hover { color: var(--rose-light); padding-left: 4px; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
}
.footer-contact-list li i {
    color: var(--rose-light);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.footer-contact-list a {
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}
.footer-contact-list a:hover { color: var(--rose-light); }

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    transition: var(--transition);
}
.social-link:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 48px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, #1a0a14 0%, #2d1025 30%, #173f61 70%, #1a0a14 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 50%, rgba(213,168,72,0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(74,124,101,0.08) 0%, transparent 40%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero .breadcrumb { background: transparent; padding: 0; margin-bottom: 16px; }
.page-hero .breadcrumb-item { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.page-hero .breadcrumb-item a { color: var(--gold-light); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 540px; }

/* ── Services Detail Page ────────────────────────────────── */
.service-section { padding: 80px 0; }
.service-section:nth-child(even) { background: var(--cream); }
.service-section:nth-child(odd) { background: var(--white); }

.service-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 32px;
}
.service-list-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: var(--transition);
}
.service-list-item:hover {
    border-color: var(--rose);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}
.service-list-item i {
    color: var(--rose);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.service-list-item span { font-size: 0.92rem; color: var(--text); font-weight: 500; }

/* For service sections with cream bg, invert card bg */
.service-section:nth-child(even) .service-list-item { background: var(--white); }

/* ── About Page ──────────────────────────────────────────── */
.about-section { padding: 80px 0; }
.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--border);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
.value-card h5 { font-size: 1.1rem; margin-bottom: 10px; }

/* ── Contact Page ────────────────────────────────────────── */
.contact-section { padding: 80px 0; }

.contact-info-card {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 40px 36px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(213,168,72,0.08);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}
.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(213,168,72,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-item-text label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
}
.contact-item-text a,
.contact-item-text span {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}
.contact-item-text a:hover { color: var(--rose-light); }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 36px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.form-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.92rem;
    color: var(--text);
    background: var(--cream);
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(192,88,120,0.12);
    background: var(--white);
    outline: none;
}
.form-control::placeholder { color: #B0B5C0; }

.btn-submit {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition);
    width: 100%;
    box-shadow: 0 4px 18px rgba(192,88,120,0.35);
}
.btn-submit:hover {
    background: linear-gradient(135deg, var(--rose-dark), var(--rose));
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(192,88,120,0.45);
}
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* Success / Error alerts */
.alert-custom {
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    font-size: 0.9rem;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success-custom { background: #ECFDF5; color: #065F46; }
.alert-error-custom   { background: #FEF2F2; color: #991B1B; }

/* ── Process Steps ───────────────────────────────────────── */
.process-section { background: var(--white); }
.process-step {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}
.process-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(201,107,122,0.35);
}
.process-step h5 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.875rem; }
.process-connector {
    position: absolute;
    top: 60px;
    right: -30px;
    font-size: 1.2rem;
    color: var(--gold-light);
}

/* ── WhatsApp Float Button ───────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: var(--transition);
    text-decoration: none;
    animation: bounce-in 0.5s ease 2s both;
}
.whatsapp-float:hover {
    background: #20BD5A;
    color: var(--white);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}
.whatsapp-float .tooltip-label {
    position: absolute;
    right: 66px;
    background: var(--navy);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.whatsapp-float:hover .tooltip-label { opacity: 1; }

@keyframes bounce-in {
    0%   { opacity: 0; transform: scale(0.3); }
    60%  { opacity: 1; transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ── Scroll to Top ───────────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 9998;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--rose); transform: translateY(-3px); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE – PHONE FIRST
   ══════════════════════════════════════════════════════════ */

/* ── Tablet (≤992px) ── */
@media (max-width: 991.98px) {
    .section-pad     { padding: 64px 0; }
    .section-pad-sm  { padding: 44px 0; }
    .process-connector { display: none; }
    .about-snippet-visual { height: 300px; margin-bottom: 40px; }

    /* Mobile nav drawer */
    #navbarNav {
        background: #1a0a14;
        border-radius: var(--radius-sm);
        padding: 20px 16px;
        margin-top: 10px;
        border: 1px solid rgba(192,88,120,0.2);
    }
    #navbarNav .nav-link {
        color: rgba(255,255,255,0.9) !important;
        padding: 12px 16px !important;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    #navbarNav .nav-link:last-child { border-bottom: none; }
    #navbarNav .btn-book {
        display: flex;
        justify-content: center;
        margin-top: 12px;
        width: 100%;
    }

    /* Hero tablet tweaks */
    .hero-content-wrap { padding-top: 88px; }
    .hero-brand-logo img { height: 72px; }
    .hero-service-sep { display: none; }
    .hero-service-strip { gap: 10px 24px; }
    .hero-stat:not(:last-child)::after { display: none; }

    /* About badges */
    .about-badge-float.badge-1 { left: 0; bottom: 10px; }
    .about-badge-float.badge-2 { right: 0; top: 10px; }
    .stat-item:not(:last-child)::after { display: none; }
}

/* ── Phone (≤768px) ── */
@media (max-width: 767.98px) {
    html { scroll-padding-top: 64px; }

    .section-pad    { padding: 52px 16px; }
    .section-pad-sm { padding: 36px 16px; }
    .container      { padding-left: 16px; padding-right: 16px; }

    /* Overflow guard */
    .hero-section, .cta-banner, .about-snippet, .page-hero { overflow: hidden; }

    /* Typography */
    .section-title  { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .section-desc   { font-size: 0.95rem; }

    /* Hero */
    .hero-content-wrap    { padding: 80px 16px 0; }
    .hero-brand-logo img  { height: 64px; }
    .brand-deepak         { font-size: clamp(2.8rem, 12vw, 4rem); }
    .brand-life-solution  { font-size: 0.85rem; letter-spacing: 0.25em; }
    .hero-cert-badge      { font-size: 0.7rem; letter-spacing: 0.1em; }
    .hero-tagline-small   { font-size: 0.65rem; letter-spacing: 0.12em; }
    .hero-script-line     { font-size: clamp(1.5rem, 6vw, 2rem); }
    .hero-value-line      { font-size: clamp(1.15rem, 4.5vw, 1.6rem); }
    .hero-value-line.script-line { font-size: clamp(1.4rem, 5.5vw, 1.9rem); }
    .hero-desc            { font-size: 0.9rem; margin-bottom: 22px; }
    .hero-stats           { gap: 0; padding: 18px 0; }
    .hero-stat            { padding: 0 10px; }
    .hero-stat .stat-num  { font-size: 1.5rem; }
    .hero-stat .stat-label{ font-size: 0.6rem; }

    /* Service strip – 2×2 grid */
    .hero-service-strip   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 8px; max-width: 320px; margin: 0 auto 24px; }
    .hero-service-sep     { display: none; }
    .hero-service-item    { padding: 0 8px; }
    .hero-service-item i  { font-size: 1.3rem; }
    .hero-service-item span { font-size: 0.65rem; }

    /* Buttons – full width stack */
    .hero-buttons         { flex-direction: column; align-items: stretch; gap: 12px !important; max-width: 320px; margin: 0 auto; }
    .btn-primary-custom,
    .btn-outline-custom   { width: 100%; justify-content: center; font-size: 0.9rem; padding: 15px 24px; }
    .btn-submit           { font-size: 0.9rem; }

    /* Pillars bar */
    .hero-pillars-bar      { padding: 14px 0; margin-top: 24px; }
    .hero-pillar-item .pi-title { font-size: 0.65rem; }
    .hero-pillar-item .pi-sub   { font-size: 0.58rem; }
    .hero-pillar-item:not(:last-child)::after { display: none; }

    /* Qualities bar */
    .qualities-bar         { padding: 20px 0; }
    .quality-item i        { font-size: 1.3rem; }
    .quality-item span     { font-size: 0.63rem; }

    /* Cert banner */
    .cert-item span        { font-size: 0.7rem; }
    .cert-item i           { font-size: 1rem; }

    /* Stats bar */
    .stat-item             { padding: 10px 12px; }
    .stat-number           { font-size: 1.7rem; }

    /* Help cards */
    .help-card             { padding: 24px 18px; }
    .help-icon             { width: 54px; height: 54px; font-size: 1.35rem; }

    /* Service overview cards */
    .service-overview-card { padding: 28px 20px; }
    .service-card-icon     { width: 56px; height: 56px; font-size: 1.4rem; }

    /* Pillar cards */
    .pillar-card           { padding: 32px 18px 28px; }

    /* About section */
    .about-snippet-visual  { height: 260px; overflow: hidden; border-radius: var(--radius); }
    .about-badge-float     { padding: 10px 14px; }
    .about-badge-float .badge-num { font-size: 1.2rem; }
    .about-badge-float.badge-1 { left: 4px; bottom: 8px; }
    .about-badge-float.badge-2 { right: 4px; top: 8px; }

    /* Testimonials */
    .testimonial-card      { padding: 24px 16px; }
    .testimonial-text      { font-size: 0.9rem; }

    /* Values stones */
    .values-stones         { gap: 6px; }
    .stone                 { font-size: 0.62rem; padding: 8px 14px; }

    /* Process */
    .process-step          { padding: 24px 16px; }

    /* Contact */
    .contact-info-card, .contact-form-card { padding: 24px 16px; }
    .contact-info-card::before { width: 100px; height: 100px; top: -25px; right: -25px; }

    /* Service grid */
    .service-list-grid     { grid-template-columns: 1fr; }
    .service-tab-link      { padding: 8px 14px; font-size: 0.78rem; }

    /* Footer */
    .footer-wave svg       { width: 100%; }
    .footer-body           { padding: 48px 0 0; }
    .footer-heading        { font-size: 0.95rem; }

    /* Page hero */
    .page-hero             { padding: 100px 0 48px; }
    .page-hero h1          { font-size: clamp(1.6rem, 6vw, 2.4rem); }
    .page-hero p           { font-size: 0.9rem; }

    /* Quote */
    .quote-block p         { font-size: clamp(1rem, 3.5vw, 1.3rem); }
    .pillar-tagline        { font-size: 0.95rem; }

    /* Whatsapp float */
    .whatsapp-float        { width: 50px; height: 50px; font-size: 1.4rem; bottom: 20px; right: 16px; }
    .scroll-top            { bottom: 80px; right: 16px; width: 40px; height: 40px; }
}

/* ── Small phone (≤480px) ── */
@media (max-width: 480px) {
    .section-pad    { padding: 44px 14px; }
    .section-pad-sm { padding: 30px 14px; }

    /* Hero tighten even more */
    .hero-content-wrap    { padding: 130px 12px 0; }
    .brand-deepak         { font-size: clamp(2.4rem, 14vw, 3.2rem); }
    .hero-brand-logo img  { height: 54px; }
    .hero-ornament-line   { width: 30px; }

    /* Sections */
    .section-title        { font-size: clamp(1.5rem, 7vw, 1.9rem); }
    .service-overview-card h4 { font-size: 1.2rem; }
    .testimonial-card     { padding: 20px 14px; }

    /* Pillar cards: 1 per row */
    .pillar-card          { padding: 28px 16px 24px; }
    .pillar-icon          { width: 60px; height: 60px; font-size: 1.4rem; }
    .pillar-card h4       { font-size: 0.88rem; }

    /* Cert banner 1 per row */
    .cert-item            { flex-direction: column; gap: 4px; }

    /* Quality items 2-col */
    .quality-item span    { font-size: 0.58rem; }

    /* Stones */
    .stone                { font-size: 0.58rem; padding: 7px 12px; }
}

/* ══════════════════════════════════════════════════════════
   FOUR PILLARS SECTION
   ══════════════════════════════════════════════════════════ */
.pillars-section {
    background: linear-gradient(160deg, #1a0a14 0%, #2d1025 25%, #173f61 55%, #1a0f22 100%);
    position: relative;
    overflow: hidden;
}
.pillars-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(192,88,120,0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(213,168,72,0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 0%, rgba(213,168,72,0.08) 0%, transparent 40%);
    pointer-events: none;
}
.pillars-section .section-label { color: var(--rose-light); }
.pillars-section .section-label::before { background: var(--rose-light); }
.pillars-section .section-title { color: var(--white); }
.pillars-section .section-desc { color: rgba(255,255,255,0.6); max-width: 640px; }

.pillars-tagline-wrap {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
}
.pillars-tagline-wrap::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
}

.pillar-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(213,168,72,0.18);
    border-radius: var(--radius);
    padding: 44px 28px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    cursor: default;
}
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.pillar-card:hover {
    background: rgba(213,168,72,0.08);
    border-color: rgba(213,168,72,0.4);
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}
.pillar-card:hover::before { opacity: 1; }

.pillar-roman {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--gold);
    opacity: 0.5;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}
.pillar-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 1.5px solid rgba(213,168,72,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--gold);
    margin: 0 auto 22px;
    transition: var(--transition);
    background: rgba(213,168,72,0.07);
    position: relative;
}
.pillar-icon::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1px dashed rgba(213,168,72,0.2);
    transition: var(--transition);
}
.pillar-card:hover .pillar-icon {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 8px 32px rgba(213,168,72,0.35);
}
.pillar-card:hover .pillar-icon::after { border-color: rgba(255,255,255,0.3); }

.pillar-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
}
.pillar-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
    font-style: italic;
}

.pillar-tagline {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.6);
    margin: 0 auto;
    line-height: 1.9;
    max-width: 680px;
}
.pillar-tagline strong { color: var(--gold-light); font-style: normal; font-weight: 400; }

/* ══════════════════════════════════════════════════════════
   QUOTE SECTION
   ══════════════════════════════════════════════════════════ */
.quote-section {
    background: linear-gradient(135deg, var(--rose-pale) 0%, var(--gold-pale) 100%);
    border-top: 1px solid var(--rose-mid);
    border-bottom: 1px solid var(--rose-mid);
    position: relative;
    overflow: hidden;
}
.quote-section::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 18rem;
    color: rgba(213,168,72,0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.quote-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}
.quote-ornament-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.quote-ornament-line.right {
    background: linear-gradient(90deg, var(--gold), transparent);
}
.quote-ornament-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}
.quote-block {
    border: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}
.quote-block p {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(1.15rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--navy);
    line-height: 1.75;
    margin-bottom: 20px;
    font-weight: 400;
}
.quote-block footer {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.quote-block footer::before,
.quote-block footer::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

/* ══════════════════════════════════════════════════════════
   CERTIFICATION BANNER
   ══════════════════════════════════════════════════════════ */
.cert-banner {
    background: linear-gradient(135deg, var(--rose-pale) 0%, #fff0f5 50%, var(--gold-pale) 100%);
    border-top: 1px solid var(--rose-mid);
    border-bottom: 3px solid var(--rose);
    padding: 20px 0;
}
.cert-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 24px;
}
.cert-item i {
    color: var(--rose);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.cert-item span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--rose-dark);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
@media (max-width: 767.98px) {
    .cert-item { padding: 6px 12px; }
    .cert-item span { font-size: 0.74rem; }
}

/* ══════════════════════════════════════════════════════════
   HERO: marriage coaching accent words
   ══════════════════════════════════════════════════════════ */
.hero-title .highlight-italic {
    color: var(--gold-light);
    font-style: italic;
}
.hero-title .line-small {
    font-size: 0.72em;
    opacity: 0.85;
    display: block;
}

/* Pillar cards responsive */
@media (max-width: 575.98px) {
    .pillar-card { padding: 32px 20px 28px; }
    .pillar-icon { width: 62px; height: 62px; font-size: 1.5rem; }
    .pillar-card h4 { font-size: 0.9rem; }
}

/* ══════════════════════════════════════════════════════════
   SERVICE MATTER NOTE
   ══════════════════════════════════════════════════════════ */
.service-matter-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--rose-dark);
    background: var(--rose-pale);
    border: 1px solid var(--rose-mid);
    border-radius: 50px;
    padding: 5px 14px;
    margin: 10px 0 4px;
    letter-spacing: 0.02em;
}
.service-matter-note i { font-size: 0.85rem; }

/* ══════════════════════════════════════════════════════════
   BOOK YOUR SESSION BENEFITS SECTION
   ══════════════════════════════════════════════════════════ */
.book-session-benefits {
    background: linear-gradient(135deg, var(--navy) 0%, #1a4f77 100%);
}
.book-session-benefits .section-label { color: var(--gold-light); }
.book-session-benefits .section-title { color: #fff; }
.book-session-benefits .section-desc { color: rgba(255,255,255,0.7); }
.bsb-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 36px 24px 32px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}
.bsb-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    border-color: var(--gold);
}
.bsb-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(192,88,120,0.35);
}
.bsb-card h5 {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}
.bsb-card p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   BLOG PAGE
   ══════════════════════════════════════════════════════════ */
.blog-article-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 40px;
}
.blog-article-header {
    background: linear-gradient(135deg, var(--navy) 0%, #1a4f77 100%);
    padding: 36px 40px 28px;
}
.blog-article-header .article-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 10px;
    display: block;
}
.blog-article-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.35;
}
.blog-article-header .article-byline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
}
.blog-article-body {
    padding: 36px 40px 32px;
}
.blog-article-body p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 18px;
}
.blog-article-body h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--navy);
    margin: 28px 0 10px;
}
.blog-article-body ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 18px;
}
.blog-article-body ul li {
    position: relative;
    padding-left: 22px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 6px;
}
.blog-article-body ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--rose);
    font-weight: 700;
}
.blog-article-footer {
    border-top: 1px solid var(--border);
    padding: 18px 40px;
    background: var(--cream);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.blog-article-footer .author-chip {
    background: var(--navy);
    color: #fff;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.78rem;
    font-weight: 600;
}
.blog-article-footer .contact-chip {
    background: var(--rose-pale);
    color: var(--rose-dark);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid var(--rose-mid);
}
@media (max-width: 767.98px) {
    .blog-article-header { padding: 28px 24px 22px; }
    .blog-article-body { padding: 28px 24px 24px; }
    .blog-article-footer { padding: 16px 24px; }
}

/* ══════════════════════════════════════════════════════════
   BLOG LISTING CARDS (blog.php)
   ══════════════════════════════════════════════════════════ */
.blog-list-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(23,63,97,0.10);
    border: 1px solid var(--border);
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
}
.blog-list-card:hover {
    box-shadow: 0 12px 48px rgba(23,63,97,0.18);
    transform: translateY(-5px);
}

/* Image panel */
.blog-list-img {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    flex-shrink: 0;
}
.blog-img-inner {
    width: 100%;
    height: 100%;
    min-height: 340px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0d1f33;
}

/* Real photo fills the panel */
.blog-real-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}
.blog-list-img:hover .blog-real-img {
    transform: scale(1.06);
}

/* Dark gradient overlay over the photo */
.blog-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,20,35,0.25) 0%,
        rgba(10,20,35,0.55) 60%,
        rgba(10,20,35,0.78) 100%
    );
    z-index: 1;
}

.blog-cat-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    z-index: 2;
}

/* Content panel */
.blog-list-content {
    flex: 1;
    padding: 36px 36px 32px;
    display: flex;
    flex-direction: column;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.blog-num {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--rose);
    letter-spacing: 0.1em;
    background: var(--rose-pale);
    border: 1px solid var(--rose-mid);
    border-radius: 50px;
    padding: 4px 12px;
}
.blog-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.blog-card-title {
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.45;
    margin: 0 0 14px;
}
.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-card-title a:hover { color: var(--rose); }
.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0 0 24px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: auto;
}
.blog-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.blog-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--rose));
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.blog-author-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
}
.blog-author-role {
    font-size: 0.74rem;
    color: var(--text-muted);
}
.btn-blog-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rose);
    color: #fff;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    white-space: nowrap;
}
.btn-blog-read:hover {
    background: var(--rose-dark);
    color: #fff;
    transform: translateX(3px);
}

/* Responsive blog cards */
@media (max-width: 767.98px) {
    .blog-img-inner { min-height: 220px; }
    .blog-list-content { padding: 24px 22px 22px; }
    .blog-card-footer { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════════════
   BLOG POST DETAIL PAGES (blog-post-1.php / blog-post-2.php)
   ══════════════════════════════════════════════════════════ */

/* Hero */
.post-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0;
    overflow: hidden;
}
/* Fallback bg colours (shown before image loads) */
.post-hero-1 { background: #0d2a42; }
.post-hero-2 { background: #1a0d2e; }

/* Real photo behind the hero */
.post-hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    z-index: 0;
}

/* Dark + brand colour gradient over the photo */
.post-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(10, 25, 45, 0.78) 0%,
        rgba(120, 25, 55, 0.65) 60%,
        rgba(10, 25, 45, 0.82) 100%
    );
}
.post-hero-decor {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 6%;
    pointer-events: none;
    z-index: 2;
}
.post-hero-icon {
    font-size: clamp(6rem, 18vw, 14rem);
    color: rgba(255,255,255,0.06);
    position: relative;
    z-index: 0;
}
.post-hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
}
.post-hero-ring.ring-1 { width: 320px; height: 320px; right: 4%; top: 50%; transform: translateY(-50%); }
.post-hero-ring.ring-2 { width: 480px; height: 480px; right: -4%; top: 50%; transform: translateY(-50%); }
.post-hero-ring.ring-3 { width: 640px; height: 640px; right: -12%; top: 50%; transform: translateY(-50%); }

.post-hero-content {
    position: relative;
    z-index: 3;
    padding-top: 120px;
    padding-bottom: 60px;
}
.breadcrumb-light .breadcrumb-item a { color: rgba(255,255,255,0.6); }
.breadcrumb-light .breadcrumb-item.active { color: rgba(255,255,255,0.4); }
.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

.post-cat-pill {
    display: inline-block;
    background: var(--rose);
    color: #fff;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 18px;
    margin-bottom: 18px;
}
.post-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 16px;
    max-width: 760px;
}
.post-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    margin: 0 0 28px;
    max-width: 600px;
}
.post-author-bar {
    display: flex;
    align-items: center;
    gap: 14px;
}
.post-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}
.post-author-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
}
.post-author-role {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.55);
}

/* Post body */
.post-body {
    background: var(--white);
    border-radius: 24px;
    padding: 48px 52px;
    box-shadow: 0 4px 32px rgba(23,63,97,0.08);
    border: 1px solid var(--border);
    margin-bottom: 32px;
}
.post-lead {
    font-family: var(--font-serif);
    font-size: 1.18rem;
    color: var(--navy);
    line-height: 1.75;
    border-left: 4px solid var(--rose);
    padding-left: 20px;
    margin-bottom: 28px;
}
.post-body p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 18px;
}
.post-body h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--navy);
    font-weight: 700;
    margin: 36px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

/* Pull quote */
.post-pull-quote {
    background: var(--navy);
    border-radius: 16px;
    padding: 32px 36px;
    margin: 36px 0;
    position: relative;
}
.post-pull-quote--gold { background: linear-gradient(135deg, #1a3a1a, #2a4a1a); }
.post-quote-icon {
    font-size: 2.5rem;
    color: var(--rose);
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}
.post-pull-quote--gold .post-quote-icon { color: var(--gold); }
.post-pull-quote p {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: #fff;
    font-style: italic;
    line-height: 1.55;
    margin: 0 0 12px !important;
}
.post-pull-quote span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}

/* Highlight box */
.post-highlight-box {
    background: var(--rose-pale);
    border: 1px solid var(--rose-mid);
    border-left: 4px solid var(--rose);
    border-radius: 0 14px 14px 0;
    padding: 20px 24px;
    margin: 18px 0 24px;
}
.post-highlight-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.post-highlight-box ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--navy);
    line-height: 1.5;
}
.post-highlight-box ul li i { color: var(--rose); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }

/* Solutions block */
.post-solutions-wrap {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 28px 8px;
    margin: 24px 0 28px;
}
.post-solutions-wrap--danger {
    background: #fff5f7;
    border-color: var(--rose-mid);
}
.post-solutions-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.post-solutions-header i {
    font-size: 1.4rem;
    color: var(--gold);
}
.post-solutions-header h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 700;
    margin: 0;
    border: none;
    padding: 0;
}
.post-solution-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 22px;
}
.post-solution-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.post-solution-num--rose { background: var(--rose); }
.post-solution-item h5 {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--navy);
    font-weight: 700;
    margin: 0 0 6px;
}
.post-solution-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 !important;
    line-height: 1.65;
}

/* Author card */
.post-author-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 24px rgba(23,63,97,0.08);
    border: 1px solid var(--border);
    margin-bottom: 28px;
}
.post-author-card-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--rose));
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.post-author-card-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.post-author-card-title {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}
.post-author-card-contact {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.post-author-card-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--rose);
    text-decoration: none;
    transition: color 0.2s;
}
.post-author-card-contact a:hover { color: var(--rose-dark); }

/* Post nav */
.post-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.post-nav-back, .post-nav-next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 10px 22px;
    transition: all 0.25s;
}
.post-nav-back:hover, .post-nav-next:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

@media (max-width: 767.98px) {
    .post-hero { min-height: 400px; }
    .post-hero-content { padding-top: 100px; padding-bottom: 40px; }
    .post-body { padding: 28px 22px; }
    .post-pull-quote { padding: 24px 22px; }
    .post-solutions-wrap { padding: 20px 18px 4px; }
    .post-author-card { flex-direction: column; padding: 22px 20px; }
    .post-hero-ring { display: none; }
}

