/* =============================================
   DESIGN SYSTEM — IVORY & SAGE DENTAL
============================================= */

:root {
    --cream: #FAF8F4;
    /* --ivory: #F5F0E8; */
    --ivory: #F5F0E8;
    --sage: #7A9E8E;
    /* --sage-dark: #4D7A68; */
    --sage-dark: #1e8c8b;
    --sage-light: #B2CEBD;
    --charcoal: #0b3b4a;
    --warm-grey: #7C7A77;
    --gold: #C8A96E;
    --white: #FFFFFF;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-body: 'Open Sans', sans-serif;
    --font-display: 'Open Sans', sans-serif;
}


/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
} */


/* ── Preloader ── */

#loader-wrapper {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

#loader {
    width: 48px;
    height: 48px;
    border: 2px solid var(--sage-light);
    /* border-top-color: var(--sage-dark); */
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#loader-wrapper.hidden {
    /* opacity: 0; */
    pointer-events: none;
}


/* ════════════════════════════════════════════
   INDEX.PHP STYLES
═════════════════════════════════════════════ */


/* ── HERO BANNER ── */

#hero-section {
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(43, 45, 47, 0.72) 0%, rgba(43, 45, 47, 0.3) 55%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 700px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(122, 158, 142, 0.25);
    border: 1px solid rgba(122, 158, 142, 0.4);
    backdrop-filter: blur(8px);
    color: var(--sage-light);
    padding: 6px 18px 6px 8px;
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeSlideUp 0.8s ease forwards;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--sage-light);
    border-radius: 50%;
}

.hero-title {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 300;
    color: white;
    line-height: 1.08;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.8s 0.15s ease both;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 44px;
    animation: fadeSlideUp 0.8s 0.3s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s 0.45s ease both;
}

.btn-primary-hero {
    background: var(--sage-dark);
    color: white;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-hero:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.btn-outline-hero {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 15px;
    text-decoration: none;
    transition: all var(--transition);
    backdrop-filter: blur(8px);
}

.btn-outline-hero:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}


/* Slide indicators */

.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 80px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
}

.hero-dot.active {
    background: var(--gold);
    width: 52px;
}


/* Hero stats strip */

.hero-stats {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    display: flex;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg) 0 0 0;
}

.hero-stat {
    padding: 24px 36px;
    text-align: center;
    border-left: 1px solid rgba(122, 158, 142, 0.2);
}

.hero-stat:first-child {
    border-left: none;
}

.hero-stat-num {
    font-family: 'Open Sans', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--sage-dark);
    line-height: 1;
}

.hero-stat-label {
    font-size: 11px;
    color: var(--warm-grey);
    letter-spacing: 0.05em;
    margin-top: 4px;
    text-transform: uppercase;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ── ABOUT US ── */

#about-section {
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image-stack {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: var(--radius-xl);
    object-fit: cover;
    aspect-ratio: 4/5;
    display: block;
}

.about-img-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--sage-dark);
    color: white;
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(77, 122, 104, 0.3);
}

.badge-num {
    font-family: 'Open Sans', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 4px;
}

.about-text {
    padding-left: 20px;
}

.section-tag {
    display: inline-block;
    font-size: 18px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 500;
    margin-bottom: 16px;
    position: relative;
    padding-left: 28px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: var(--sage-dark);
    display: none;
}

.section-heading {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.section-heading em {
    font-style: italic;
    color: var(--sage-dark);
}

.about-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--warm-grey);
    margin-bottom: 36px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--ivory);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--sage-dark);
    fill: none;
    stroke-width: 1.5;
}

.feature-text h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 14px;
    color: var(--warm-grey);
    line-height: 1.5;
}

.btn-sage {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--sage-dark);
    color: white;
    padding: 15px 32px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-sage:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
}

.btn-sage svg {
    width: 16px;
    height: 16px;
}


/* ── WHY CHOOSE US ── */

#why-section {
    background: var(--charcoal);
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
}

#why-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(122, 158, 142, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.why-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-image {
    position: relative;
}

.why-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.why-img-wrap img {
    width: 100%;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.why-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(43, 45, 47, 0.6) 0%, transparent 60%);
}

.why-card-float {
    position: absolute;
    bottom: 32px;
    right: -32px;
    background: var(--gold);
    color: var(--charcoal);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 48px rgba(200, 169, 110, 0.4);
    max-width: 200px;
}

.why-card-float p {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.why-card-float span {
    font-size: 11px;
    opacity: 0.7;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.why-content {}

.why-content .section-tag {
    color: var(--sage-light);
}

.why-content .section-tag::before {
    background: var(--sage-light);
}

.why-content .section-heading {
    color: white;
}

.why-desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 48px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(122, 158, 142, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
}

.why-card:hover {
    background: rgba(122, 158, 142, 0.1);
    border-color: rgba(122, 158, 142, 0.4);
    transform: translateY(-4px);
}

.why-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(122, 158, 142, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.why-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--sage-light);
    fill: none;
    stroke-width: 1.5;
}

.why-card h5 {
    font-size: 17px;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}

.why-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}


/* ── SERVICES — Circle Image Cards ── */

#services-section {
    padding: 60px 80px;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 30px;
}


/* Card is now a link */

.service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px 24px 32px;
    border: 1px solid rgba(122, 158, 142, 0.1);
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}


/* Subtle sage wash on hover */

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(30, 140, 139, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}


/* Bottom border reveal */

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-dark), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 64px rgba(43, 45, 47, 0.1);
    border-color: rgba(30, 140, 139, 0.18);
}

.service-card:hover::after {
    transform: scaleX(1);
}


/* ── Ring system ── */

.service-img-ring {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 28px;
    flex-shrink: 0;
}


/* Outer dashed ring — rotates on hover */

.service-img-outer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px dashed rgba(30, 140, 139, 0.25);
    transition: transform 8s linear;
}


/* .service-card:hover .service-img-outer {
    transform: rotate(360deg);
    transition: transform 8s linear;
    border-color: rgba(30, 140, 139, 0.5);
} */


/* Inner circle image */

.service-img-inner {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--ivory);
    border: 2.5px solid rgba(30, 140, 139, 0.12);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover .service-img-inner {
    border-color: rgba(30, 140, 139, 0.35);
    box-shadow: 0 0 0 6px rgba(30, 140, 139, 0.07);
}

.service-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img-inner img {
    transform: scale(1.08);
}


/* Orbiting dot that travels along the ring */


/* .service-orbit-dot {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--sage-dark);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(30, 140, 139, 0.4);
    opacity: 0;
    transition: opacity var(--transition);
    transform-origin: 0 70px;
  
    animation: none;
}

.service-card:hover .service-orbit-dot {
    opacity: 1;
    animation: orbit 3s linear infinite;
}

@keyframes orbit {
    from {
        transform: translateX(-50%) rotate(0deg) translateY(-70px) rotate(0deg);
    }
    to {
        transform: translateX(-50%) rotate(360deg) translateY(-70px) rotate(-360deg);
    }
} */


/* ── Text body ── */

.service-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.service-card h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 21px;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.25;
    transition: color var(--transition);
}

.service-card:hover h4 {
    color: var(--sage-dark);
}

.service-card p {
    font-size: 14px;
    color: var(--warm-grey);
    line-height: 1.65;
    margin: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--sage-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
    transition: gap var(--transition);
}

.service-link::after {
    content: '→';
}

.service-card:hover .service-link {
    gap: 10px;
}


/* Responsive */

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

@media (max-width: 768px) {
    #services-section {
        padding: 60px 24px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-img-ring {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* ── TESTIMONIALS SLIDER ── */

#testimonials-section {
    padding: 60px 80px;
    background: var(--charcoal);
}

.testi-slider-wrap {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.testi-slider-viewport {
    overflow: hidden;
}

.testi-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.testi-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 44px;
    border: 1px solid rgba(122, 158, 142, 0.12);
    flex: 0 0 calc(33.333% - 16px);
    margin-right: 24px;
    box-sizing: border-box;
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.testi-stars span {
    color: var(--gold);
    font-size: 18px;
}

.testi-quote {
    font-family: 'Open Sans', sans-serif;
    font-size: 30px;
    color: var(--sage-light);
    line-height: 0;
    margin-bottom: 16px;
}

.testi-text {
    font-size: 14px;
    color: var(--warm-grey);
    line-height: 1.75;
    margin-bottom: 28px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sage-light);
}

.testi-author-info h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}

.testi-author-info span {
    font-size: 12px;
    color: var(--warm-grey);
}


/* Shared slider nav */

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(122, 158, 142, 0.35);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.slider-btn:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
}

.slider-btn:hover svg {
    stroke: white;
}

.slider-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--charcoal);
    fill: none;
    stroke-width: 1.8;
    transition: stroke var(--transition);
}

.slider-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.s-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(122, 158, 142, 0.3);
    cursor: pointer;
    transition: all var(--transition);
}

.s-dot.active {
    background: var(--sage-dark);
    width: 24px;
    border-radius: 4px;
}


/* ── CLIENTS / PARTNERS ── */

#clients-section {
    padding: 60px 80px;
    background: white;
}

.clients-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.clients-label {
    font-size: 18px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-grey);
    margin-bottom: 40px;
}

.clients-marquee {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}

.client-logo {
    height: 48px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: filter var(--transition);
    flex-shrink: 0;
}

.client-logo:hover {
    filter: grayscale(0%) opacity(1);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* ── BLOGS SLIDER ── */

#blogs-section {
    padding: 60px 80px;
    background: var(--cream);
}

.blog-slider-wrap {
    max-width: 1400px;
    margin: 0 auto 48px;
    position: relative;
}

.blog-slider-viewport {
    overflow: hidden;
}

.blog-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(122, 158, 142, 0.1);
    transition: box-shadow var(--transition);
    text-decoration: none;
    display: block;
    flex: 0 0 calc(33.333% - 16px);
    margin-right: 24px;
    box-sizing: border-box;
}

.blog-card:hover {
    box-shadow: 0 24px 60px rgba(43, 45, 47, 0.1);
}

.blog-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.06);
}

.blog-date-pill {
    position: absolute;
    top: 16px;
    left: 16px;
    background: white;
    color: var(--charcoal);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: 100px;
}

.blog-body {
    padding: 28px;
}

.blog-body h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.35;
    margin-bottom: 12px;
    transition: color var(--transition);
}

.blog-card:hover .blog-body h4 {
    color: var(--sage-dark);
}

.blog-arrow {
    font-size: 13px;
    font-weight: 500;
    color: var(--sage-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blogs-footer {
    text-align: center;
    margin-top: 40px;
}


/* ── FOOTER ── */

#site-footer {
    background: var(--charcoal);
    padding: 80px 80px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 16px 0 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background var(--transition);
}

.social-btn:hover {
    background: var(--sage-dark);
}

.social-btn svg {
    width: 16px;
    height: 16px;
    stroke: white;
    fill: none;
    stroke-width: 1.5;
}

.footer-col h6 {
    font-size: 13px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: color var(--transition);
    font-style: normal;
}

.footer-col ul li a:hover {
    color: var(--sage-light);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}


/* ── Section divider ── */

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--sage-dark), var(--gold));
    border-radius: 2px;
    margin: 16px auto 0;
}


/* ════════════════════════════════════════════
   CONTACT.PHP STYLES
═════════════════════════════════════════════ */


/* ── PAGE HERO ── */

.page-hero {
    background: var(--charcoal);
    min-height: 321px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 15% 60%, rgba(122, 158, 142, 0.18) 0%, transparent 55%), radial-gradient(ellipse at 85% 20%, rgba(200, 169, 110, 0.1) 0%, transparent 50%);
}

.page-hero::after {
    content: 'We Care';
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Open Sans', sans-serif;
    font-size: 140px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: 0.1em;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}

.page-hero-inner {
    position: absolute;
    z-index: 2;
    /* padding: 0 80px 56px; */
    width: 100%;
    top: 50%;
    left: 52px;
    transform: translate(0%, -50%);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--sage-light);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
}

.breadcrumb-nav span {
    font-size: 13px;
    color: var(--sage-light);
}

.page-hero h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(40px, 5.5vw, 76px);
    font-weight: 300;
    color: white;
    line-height: 1.05;
}

.page-hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 14px;
    max-width: 500px;
    line-height: 1.7;
}


/* ── INFO CARDS STRIP ── */

#info-strip {
    background: var(--sage-dark);
    padding: 0 80px;
}

.info-strip-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.info-strip-card {
    padding: 36px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-decoration: none;
    transition: background var(--transition);
}

.info-strip-card:last-child {
    border-right: none;
}

.info-strip-card:hover {
    background: rgba(255, 255, 255, 0.06);
}

.info-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.info-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--sage-light);
    fill: none;
    stroke-width: 1.5;
}

.info-card-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.info-card-value {
    font-size: 14px;
    color: white;
    line-height: 1.6;
}

.info-card-value a {
    color: white;
    text-decoration: none;
    transition: color var(--transition);
    display: block;
}

.info-card-value a:hover {
    color: var(--gold);
}


/* ── MAIN CONTACT SECTION ── */

#contact-section {
    padding: 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}


/* ── Left: info + availability ── */

.contact-info-col {}

.contact-heading {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(30px, 3.5vw, 52px);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 20px;
}

.contact-heading em {
    font-style: italic;
    color: var(--sage-dark);
}

.contact-intro {
    font-size: 15px;
    color: var(--warm-grey);
    line-height: 1.8;
    margin-bottom: 48px;
}


/* Detail cards */

.detail-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.detail-card {
    background: white;
    border: 1px solid rgba(122, 158, 142, 0.12);
    border-radius: var(--radius-lg);
    padding: 24px 26px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.detail-card:hover {
    box-shadow: 0 8px 32px rgba(43, 45, 47, 0.07);
    border-color: rgba(122, 158, 142, 0.25);
}

.detail-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--ivory);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--sage-dark);
    fill: none;
    stroke-width: 1.5;
}

.detail-card-body {}

.detail-card-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.detail-card-values {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.detail-card-values a,
.detail-card-values span {
    font-size: 14px;
    color: var(--charcoal);
    text-decoration: none;
    line-height: 1.6;
    transition: color var(--transition);
}

.detail-card-values a:hover {
    color: var(--sage-dark);
}


/* Social row */

.social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.social-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1.5px solid rgba(122, 158, 142, 0.2);
    border-radius: 100px;
    padding: 8px 16px 8px 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal);
    transition: all var(--transition);
}

.social-chip:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    color: white;
}

.social-chip svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}


/* ── Right: Form ── */

.contact-form-col {}

.form-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px 44px;
    border: 1px solid rgba(122, 158, 142, 0.12);
    box-shadow: 0 4px 32px rgba(43, 45, 47, 0.05);
}

.form-card-heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.form-card-sub {
    font-size: 14px;
    color: var(--warm-grey);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid rgba(122, 158, 142, 0.2);
    border-radius: 14px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: var(--charcoal);
    background: var(--cream);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sage-dark);
    background: white;
    box-shadow: 0 0 0 4px rgba(77, 122, 104, 0.09);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(43, 45, 47, 0.35);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}


/* Custom select arrow */

.select-wrap {
    position: relative;
}

.select-wrap::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--warm-grey);
    pointer-events: none;
}


/* Recaptcha scale */

.recaptcha-wrap {
    transform: scale(0.85);
    transform-origin: left center;
    margin-bottom: 8px;
}

.btn-submit {
    width: 100%;
    background: var(--sage-dark);
    color: white;
    border: none;
    padding: 15px 32px;
    border-radius: 100px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(43, 45, 47, 0.2);
}

.btn-submit svg {
    width: 18px;
    height: 18px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}


/* ── MAP SECTION ── */

#map-section {
    padding: 0 80px 60px;
}

.map-wrap {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(43, 45, 47, 0.1);
    position: relative;
}

.map-wrap iframe {
    width: 100%;
    height: 480px;
    border: none;
    display: block;
}


/* Map overlay label */

.map-label {
    position: absolute;
    top: 24px;
    left: 24px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(43, 45, 47, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
}

.map-label-dot {
    width: 10px;
    height: 10px;
    background: var(--sage-dark);
    border-radius: 50%;
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(77, 122, 104, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(77, 122, 104, 0);
    }
}

.map-label span {
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
}


/* ════════════════════════════════════════════
   BLOG.PHP STYLES
═════════════════════════════════════════════ */


/* ── FEATURED STRIP ── */

#featured-section {
    padding: 60px 80px;
    background: var(--ivory);
}

.featured-inner {
    max-width: 1400px;
    margin: 0 auto;
}


/* Featured 3-column hero grid */

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}


/* First card is big */

.featured-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    text-decoration: none;
    display: block;
    background: var(--charcoal);
}

.featured-card:first-child {
    grid-row: span 2;
}

.featured-card-img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.featured-card:first-child .featured-card-img {
    min-height: 560px;
}

.featured-card:hover .featured-card-img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(43, 45, 47, 0.88) 0%, rgba(43, 45, 47, 0.2) 55%, transparent 100%);
    transition: opacity var(--transition);
}

.featured-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
}

.featured-date {
    display: inline-block;
    background: rgba(122, 158, 142, 0.3);
    border: 1px solid rgba(122, 158, 142, 0.4);
    backdrop-filter: blur(6px);
    color: var(--sage-light);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.featured-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: white;
    line-height: 1.25;
}

.featured-card:first-child .featured-title {
    font-size: clamp(22px, 2.5vw, 32px);
}

.featured-card:not(:first-child) .featured-title {
    font-size: 20px;
}

.featured-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.featured-read::after {
    content: '→';
}


/* ── BLOG GRID ── */

#blog-grid-section {
    padding: 60px 80px;
    background: var(--cream);
    padding-bottom: 0;
}

.blog-grid-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-grid-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
    flex-wrap: wrap;
}

.blog-count {
    font-size: 13px;
    color: var(--warm-grey);
    margin-top: 8px;
}


/* Grid */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 64px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(122, 158, 142, 0.1);
    text-decoration: none;
    display: block;
    transition: all var(--transition);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    margin: 5px;
}

.blog-card:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 24px 60px rgba(43, 45, 47, 0.1); */
    /* border-color: rgba(122, 158, 142, 0.25); */
}

.blog-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-card-date {
    position: absolute;
    top: 14px;
    left: 14px;
    background: white;
    color: var(--charcoal);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(43, 45, 47, 0.12);
}

.blog-card-body {
    padding: 24px 26px 28px;
}

.blog-card-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 21px;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.3;
    margin-bottom: 12px;
    transition: color var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card-title {
    color: var(--sage-dark);
}

.blog-card-excerpt {
    font-size: 13px;
    color: var(--warm-grey);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: Montserrat, sans-serif;
    font-style: normal;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(122, 158, 142, 0.1);
}

.blog-read-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--sage-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.blog-read-link:hover {
    gap: 12px;
}

.blog-read-link::after {
    content: '→';
}

.blog-card-tag {
    font-size: 11px;
    background: var(--ivory);
    color: var(--warm-grey);
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.05em;
}


/* Empty state */

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 24px;
}

.empty-state h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.empty-state p {
    font-size: 15px;
    color: var(--warm-grey);
}


/* ── PAGINATION ── */

.pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1.5px solid rgba(122, 158, 142, 0.25);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    transition: all var(--transition);
}

.page-btn:hover {
    border-color: var(--sage-dark);
    color: var(--sage-dark);
    background: rgba(77, 122, 104, 0.06);
}

.page-btn.active {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    color: white;
}

.page-btn.arrow svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.page-ellipsis {
    font-size: 14px;
    color: var(--warm-grey);
    padding: 0 4px;
}


/* ── NEWSLETTER STRIP ── */

#newsletter-strip {
    background: var(--sage-dark);
    padding: 64px 80px;
}

.newsletter-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-inner h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    color: white;
    margin-bottom: 12px;
}

.newsletter-inner h3 em {
    font-style: italic;
    color: var(--gold);
}

.newsletter-inner p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 240px;
    padding: 14px 20px;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: white;
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    background: white;
    color: var(--sage-dark);
    padding: 14px 32px;
    border-radius: 100px;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
}


/* ════════════════════════════════════════════
   SINGLE-POST.PHP STYLES
═════════════════════════════════════════════ */


/* ── PAGE HERO ── */

.post-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.post-hero-bg {
    position: absolute;
    inset: 0;
}

.post-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(43, 45, 47, 0.92) 0%, rgba(43, 45, 47, 0.55) 45%, rgba(43, 45, 47, 0.2) 100%);
}


/* Fallback if no image */

.post-hero.no-img {
    background: var(--charcoal);
    min-height: 360px;
}

.post-hero.no-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 60%, rgba(122, 158, 142, 0.15) 0%, transparent 60%);
}

.post-hero-inner {
    position: relative;
    z-index: 2;
    padding: 0 80px 64px;
    width: 100%;
    max-width: 900px;
}

.post-hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(122, 158, 142, 0.25);
    border: 1px solid rgba(122, 158, 142, 0.4);
    backdrop-filter: blur(8px);
    color: var(--sage-light);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 0.06em;
}

.meta-pill svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.post-hero h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(32px, 4.5vw, 62px);
    font-weight: 700;
    color: white;
    line-height: 1.12;
}

/* Blog Detail relocated content styles */
.post-main-img {
    height: 500px;

    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.post-main-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.post-main-meta {
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
}

.post-main-title {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 24px;
    line-height: 1.25;
}


/* Read time strip below hero */

.post-meta-strip {
    background: white;
    border-bottom: 1px solid rgba(122, 158, 142, 0.12);
}

.post-meta-strip-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.post-meta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--warm-grey);
}

.post-meta-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--sage-dark);
    fill: none;
    stroke-width: 1.8;
}

.post-meta-item strong {
    color: var(--charcoal);
    font-weight: 500;
}


/* Share buttons */

.share-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-label {
    font-size: 12px;
    color: var(--warm-grey);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.share-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.share-btn:hover {
    background: var(--sage-dark);
}

.share-btn:hover svg {
    stroke: white;
    fill: white;
}

.share-btn svg {
    width: 15px;
    height: 15px;
    stroke: var(--charcoal);
    fill: none;
    stroke-width: 1.5;
    transition: all var(--transition);
}


/* ── MAIN LAYOUT ── */

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 64px 80px 100px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    align-items: start;
}


/* ── ARTICLE ── */

.article-body {}


/* Article content typography */

.article-content {
    font-size: 16px;
    line-height: 1.95;
    color: #444;
}

.article-content p {
    margin-bottom: 22px;
}

.article-content h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 34px;
    font-weight: 500;
    color: var(--charcoal);
    margin: 44px 0 18px;
    line-height: 1.2;
}

.article-content h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--charcoal);
    margin: 36px 0 14px;
}

.article-content h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--charcoal);
    margin: 28px 0 12px;
}

.article-content ul,
.article-content ol {
    padding-left: 24px;
    margin-bottom: 22px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 16px 24px;
    margin: 32px 0;
    background: var(--ivory);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.6;
}

.article-content img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    margin: 28px 0;
}

.article-content a {
    color: var(--sage-dark);
    font-weight: 500;
}

.article-content strong {
    color: var(--charcoal);
    font-weight: 600;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
}

.article-content th {
    background: var(--ivory);
    padding: 12px 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    border-bottom: 2px solid rgba(122, 158, 142, 0.2);
    text-align: left;
}

.article-content td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(122, 158, 142, 0.12);
    font-size: 14px;
    color: var(--warm-grey);
}


/* ── Prev / Next navigation ── */

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(122, 158, 142, 0.15);
}

.post-nav-card {
    background: white;
    border: 1px solid rgba(122, 158, 142, 0.12);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    text-decoration: none;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.post-nav-card:hover {
    border-color: rgba(122, 158, 142, 0.3);
    box-shadow: 0 8px 28px rgba(43, 45, 47, 0.08);
    transform: translateY(-3px);
}

.post-nav-card.next {
    text-align: right;
}

.post-nav-dir {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-nav-card.next .post-nav-dir {
    justify-content: flex-end;
}

.post-nav-dir svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.post-nav-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ── SIDEBAR ── */

.article-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(122, 158, 142, 0.12);
}

.sidebar-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(122, 158, 142, 0.12);
}


/* Recent posts */

.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recent-post-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    transition: transform var(--transition);
}

.recent-post-item:hover {
    transform: translateX(4px);
}

.recent-post-thumb {
    width: 68px;
    height: 56px;
    min-width: 68px;
    border-radius: 12px;
    overflow: hidden;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.recent-post-item:hover .recent-post-thumb img {
    transform: scale(1.08);
}

.recent-post-info {}

.recent-post-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.35;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition);
}

.recent-post-item:hover .recent-post-title {
    color: var(--sage-dark);
}

.recent-post-date {
    font-size: 11px;
    color: var(--warm-grey);
    display: flex;
    align-items: center;
    gap: 4px;
}

.recent-post-date svg {
    width: 11px;
    height: 11px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}


/* CTA card */

.cta-card {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
}

.cta-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(122, 158, 142, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.cta-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--sage-light);
    fill: none;
    stroke-width: 1.5;
}

.cta-card h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
}

.cta-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin-bottom: 24px;
}

.cta-btn {
    display: block;
    background: var(--sage-dark);
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition);
}

.cta-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
}


/* Table of contents card */

.toc-card {}

.toc-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.toc-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--warm-grey);
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 8px;
    transition: all var(--transition);
}

.toc-item:hover {
    background: var(--ivory);
    color: var(--sage-dark);
}

.toc-item::before {
    content: '';
    width: 6px;
    height: 6px;
    min-width: 6px;
    background: var(--sage-light);
    border-radius: 50%;
    margin-top: 5px;
}


/* Reading progress bar */

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 2000;
    background: linear-gradient(90deg, var(--sage-dark), var(--gold));
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s linear;
}


/* ════════════════════════════════════════════
   ABOUT.PHP STYLES
═════════════════════════════════════════════ */


/* ── ABOUT INTRO SECTION ── */

#about-intro {
    padding: 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: var(--radius-xl);
    object-fit: cover;
    aspect-ratio: 4/5;
    display: block;
}


/* Floating accent block */

.about-img-accent {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 140px;
    height: 140px;
    background: var(--sage-light);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
}

.about-img-badge {
    position: absolute;
    bottom: 28px;
    right: -28px;
    background: var(--charcoal);
    color: white;
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: 0 20px 60px rgba(43, 45, 47, 0.25);
}

.badge-num {
    font-family: 'Open Sans', sans-serif;
    font-size: 44px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.badge-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 4px;
}

.about-text-block {}

.about-sub-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.about-sub-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: white;
    border: 1px solid rgba(122, 158, 142, 0.12);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    transition: box-shadow var(--transition);
}

.about-sub-card:hover {
    box-shadow: 0 8px 32px rgba(43, 45, 47, 0.08);
}

.sub-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--ivory);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--sage-dark);
    fill: none;
    stroke-width: 1.5;
}

.sub-card-body h6 {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.sub-card-body p {
    font-size: 14px;
    color: var(--warm-grey);
    line-height: 1.6;
}


/* ── STATS BAND ── */

#stats-band {
    background: var(--sage-dark);
    padding: 60px 80px;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 0 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:first-child {
    border-left: none;
}

.stat-num {
    font-family: 'Open Sans', sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-num span {
    color: var(--gold);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


/* ── DIRECTOR / BOD SECTION ── */

#director-section {
    padding: 60px 80px;
    background: var(--ivory);
}

.director-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
}

.director-img-wrap {
    position: relative;
}

.director-img {
    width: 100%;
    border-radius: var(--radius-xl);
    object-fit: cover;
    aspect-ratio: 3/4;
    display: block;
}

.director-img-tag {
    position: absolute;
    top: 28px;
    right: -20px;
    background: var(--gold);
    color: var(--charcoal);
    padding: 12px 20px;
    border-radius: 100px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(200, 169, 110, 0.35);
}


/* Quote decoration */

.director-quote-mark {
    position: absolute;
    bottom: -12px;
    left: 28px;
    font-family: 'Open Sans', sans-serif;
    font-size: 120px;
    color: var(--sage-light);
    line-height: 1;
    opacity: 0.4;
}

.director-content {}

.director-name {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.director-role {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: var(--sage-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 28px;
    display: block;
}

.director-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.5;
    margin-bottom: 24px;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
}

.director-desc {
    font-size: 15px;
    line-height: 1.85;
    color: var(--warm-grey);
    margin-bottom: 32px;
}


/* Checklist */

.director-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin-bottom: 36px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--charcoal);
}

.check-dot {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: rgba(122, 158, 142, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-dot svg {
    width: 11px;
    height: 11px;
    stroke: var(--sage-dark);
    fill: none;
    stroke-width: 2.5;
}


/* ── TEAM SECTION ── */

#team-section {
    padding: 60px 80px;
    background: var(--cream);
}

.team-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.team-header .section-tag {
    padding-left: 0;
    display: block;
    text-align: center;
}

.team-header .section-tag::before {
    display: none;
}

.team-header .divider {
    margin: 16px auto 0;
}


/* Team slider */

.team-slider-wrap {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.team-slider-viewport {
    overflow: hidden;
}

.team-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.team-card {
    flex: 0 0 calc(25% - 18px);
    margin-right: 24px;
    box-sizing: border-box;
}

.team-card-inner {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(122, 158, 142, 0.1);
    transition: all var(--transition);
    cursor: pointer;
}

.team-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(43, 45, 47, 0.1);
}

.team-photo {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card-inner:hover .team-photo img {
    transform: scale(1.06);
}

.team-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(43, 45, 47, 0.75) 0%, transparent 55%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
}

.team-card-inner:hover .team-photo-overlay {
    opacity: 1;
}

.view-profile-btn {
    background: white;
    color: var(--charcoal);
    border: none;
    padding: 10px 24px;
    border-radius: 100px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition);
}

.view-profile-btn:hover {
    background: var(--gold);
}

.team-info {
    padding: 20px 22px 24px;
}

.team-info h5 {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.team-exp {
    font-size: 12px;
    color: var(--sage-dark);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
    display: block;
}

.team-role {
    font-size: 13px;
    color: var(--warm-grey);
}


/* Slider nav */

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 44px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(122, 158, 142, 0.35);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.slider-btn:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
}

.slider-btn:hover svg {
    stroke: white;
}

.slider-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--charcoal);
    fill: none;
    stroke-width: 1.8;
    transition: stroke var(--transition);
}

.slider-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.s-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(122, 158, 142, 0.3);
    cursor: pointer;
    transition: all var(--transition);
}

.s-dot.active {
    background: var(--sage-dark);
    width: 24px;
    border-radius: 4px;
}


/* ── TEAM MODAL ── */

.team-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(43, 45, 47, 0.7);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.team-modal-overlay.open {
    display: flex;
}

.team-modal {
    background: white;
    border-radius: var(--radius-xl);
    max-width: 820px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(122, 158, 142, 0.2);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 1;
}

.modal-close:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
}

.modal-close:hover svg {
    stroke: white;
}

.modal-close svg {
    width: 16px;
    height: 16px;
    stroke: var(--charcoal);
    fill: none;
    stroke-width: 2;
}

.modal-body-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
}

.modal-photo-col {
    position: relative;
}

.modal-photo-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    display: block;
    min-height: 360px;
}

.modal-info-col {
    padding: 44px 40px;
}

.modal-expert-tag {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 500;
    margin-bottom: 12px;
}

.modal-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.modal-exp {
    font-size: 13px;
    color: var(--sage-dark);
    font-weight: 500;
    margin-bottom: 4px;
    display: block;
}

.modal-role {
    font-size: 14px;
    color: var(--warm-grey);
    margin-bottom: 24px;
    display: block;
}

.modal-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--sage-dark), var(--gold));
    border-radius: 2px;
    margin-bottom: 24px;
}

.modal-desc {
    font-size: 14px;
    line-height: 1.85;
    color: var(--warm-grey);
}


/* ── FULL IMAGE SECTION ── */

#fullimg-section {
    padding: 60px 80px;
    padding-top: 0;
}

.fullimg-inner {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.fullimg-inner img {
    width: 100%;
    display: block;
}


/* ════════════════════════════════════════════
   SERVICES.PHP STYLES
═════════════════════════════════════════════ */


/* ── LAYOUT WRAPPER ── */

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
}


/* ── MAIN CONTENT AREA ── */

.service-main {}


/* Service image */

.service-hero-img {
    width: 100%;
    border-radius: var(--radius-xl);
    object-fit: cover;
    display: block;
    margin-bottom: 44px;
    max-height: 520px;
}


/* Service heading */

.service-title {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 16px;
}

.service-title em {
    font-style: italic;
    color: var(--sage-dark);
}

.title-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--sage-dark), var(--gold));
    border-radius: 2px;
    margin-bottom: 32px;
}


/* Service content rich text */

.service-content {
    font-size: 15px;
    line-height: 1.9;
    color: var(--warm-grey);
}

.service-content h2,
.service-content h3,
.service-content h4 {
    font-family: 'Open Sans', sans-serif;
    color: var(--charcoal);
    margin: 32px 0 12px;
    font-weight: 500;
}

.service-content h2 {
    font-size: 30px;
}

.service-content h3 {
    font-size: 24px;
}

.service-content h4 {
    font-size: 20px;
}

.service-content p {
    margin-bottom: 16px;
}

.service-content ul,
.service-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.service-content li {
    margin-bottom: 8px;
}

.service-content img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    margin: 20px 0;
}

.service-content strong {
    color: var(--charcoal);
    font-weight: 600;
}

.service-content a {
    color: var(--sage-dark);
}

.service-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.service-content th {
    background: var(--ivory);
    padding: 12px 16px;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    border-bottom: 2px solid rgba(122, 158, 142, 0.2);
}

.service-content td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(122, 158, 142, 0.12);
    font-size: 14px;
    color: var(--warm-grey);
}


/* ── SIDEBAR ── */

.service-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}


/* All Services nav card */

.sidebar-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(122, 158, 142, 0.12);
}

.sidebar-card-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(122, 158, 142, 0.15);
}

.service-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-nav-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-radius: 12px;
    font-size: 14px;
    color: var(--charcoal);
    text-decoration: none;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.service-nav-list li a:hover {
    background: var(--ivory);
    border-color: rgba(122, 158, 142, 0.2);
    color: var(--sage-dark);
}

.service-nav-list li a.active {
    background: var(--sage-dark);
    color: white;
    border-color: var(--sage-dark);
}

.service-nav-list li a svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    opacity: 0.5;
}

.service-nav-list li a.active svg {
    opacity: 1;
}


/* Appointment card */

.appt-card {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
}

.appt-icon {
    width: 56px;
    height: 56px;
    background: rgba(122, 158, 142, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.appt-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--sage-light);
    fill: none;
    stroke-width: 1.5;
}

.appt-card h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
}

.appt-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin-bottom: 24px;
}

.btn-appt {
    display: block;
    background: var(--sage-dark);
    color: white;
    padding: 13px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition);
    margin-bottom: 10px;
}

.btn-appt:hover {
    background: var(--gold);
    color: var(--charcoal);
}

.btn-call {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    text-decoration: none;
    transition: color var(--transition);
}

.btn-call:hover {
    color: var(--sage-light);
}


/* Contact mini form */

.contact-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(122, 158, 142, 0.12);
}

.contact-card .sidebar-card-title {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(122, 158, 142, 0.2);
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: var(--charcoal);
    background: var(--cream);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--sage-dark);
    box-shadow: 0 0 0 3px rgba(77, 122, 104, 0.1);
}

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

.btn-submit {
    width: 100%;
    background: var(--sage-dark);
    color: white;
    border: none;
    padding: 13px 24px;
    border-radius: 100px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition);
}

.btn-submit:hover {
    background: var(--charcoal);
}


/* ── EXTRA CARDS SECTIONS ── */

.cards-section {
    padding: 80px;
}

.cards-section.alt-bg {
    background: var(--ivory);
}

.cards-section.dark-bg {
    background: var(--charcoal);
}

.section-header-inline {
    max-width: 1400px;
    margin: 0 auto 48px;
}

.dark-bg .section-tag {
    color: var(--sage-light);
}

.dark-bg .section-tag::before {
    background: var(--sage-light);
}

.dark-bg .section-heading {
    color: white;
}

.section-sub {
    font-size: 15px;
    color: var(--warm-grey);
    margin-top: 12px;
    line-height: 1.7;
}

.dark-bg .section-sub {
    color: rgba(255, 255, 255, 0.55);
}


/* Icon grid cards */

.icon-cards-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.icon-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(122, 158, 142, 0.1);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.alt-bg .icon-card {
    background: white;
}

.dark-bg .icon-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(122, 158, 142, 0.2);
}

.icon-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(43, 45, 47, 0.1);
}

.dark-bg .icon-card:hover {
    background: rgba(122, 158, 142, 0.12);
}

.icon-card-img-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    position: relative;
}

.icon-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity var(--transition);
    position: absolute;
    inset: 0;
}

.icon-card-img-wrap .img-hover {
    opacity: 0;
}

.icon-card-img-wrap .img-default {
    opacity: 1;
}

.icon-card:hover .img-hover {
    opacity: 1;
}

.icon-card:hover .img-default {
    opacity: 0;
}

.icon-card-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.4;
}

.dark-bg .icon-card-title {
    color: white;
}


/* ── TIMELINE (How It Works) ── */

.timeline-section {
    padding: 80px;
    background: var(--cream);
}

.timeline-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0;
    margin-top: 48px;
    position: relative;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sage-dark), var(--gold));
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    padding: 0 24px;
    padding-top: 64px;
    text-align: center;
}

.timeline-step-num {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: white;
    border: 2px solid var(--sage-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--sage-dark);
    transition: all var(--transition);
}

.timeline-step:hover .timeline-step-num {
    background: var(--sage-dark);
    color: white;
}

.timeline-step h5 {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.timeline-step p {
    font-size: 13px;
    color: var(--warm-grey);
    line-height: 1.65;
}


/* ── VIDEOS ── */

.videos-section {
    padding: 80px;
    background: var(--ivory);
}

.videos-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.video-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--charcoal);
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}


/* ════════════════════════════════════════════
   RESPONSIVE
═════════════════════════════════════════════ */

@media (max-width: 1024px) {

    #about-section,
    .why-inner,
    .director-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 80px 40px;
    }

    .hero-content {
        padding: 0 40px;
    }

    .hero-stats {
        display: none;
    }

    .services-grid,
    .testimonials-grid,
    .blogs-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #services-section,
    #testimonials-section,
    #blogs-section,
    #why-section {
        padding: 80px 40px;
    }

    #clients-section {
        padding: 60px 40px;
    }

    nav {
        display: none;
    }

    #contact-section {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 60px 40px;
    }

    .info-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-strip-card {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .info-strip-card:nth-child(2) {
        border-right: none;
    }

    .info-strip-card:nth-child(3) {
        border-bottom: none;
    }

    .info-strip-card:nth-child(4) {
        border-right: none;
        border-bottom: none;
    }

    #info-strip {
        padding: 0 40px;
    }

    #map-section {
        padding: 0 40px 60px;
    }

    #featured-section,
    #blog-grid-section,
    #newsletter-strip {
        padding: 60px 40px;
    }

    .featured-grid {
        grid-template-columns: 1fr 1fr;
    }

    .featured-card:first-child {
        grid-row: span 1;
        grid-column: span 2;
    }

    .featured-card:first-child .featured-card-img {
        min-height: 360px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        padding: 60px 40px 0;
    }

    .service-sidebar {
        position: static;
    }

    .cards-section,
    .timeline-section,
    .videos-section {
        padding: 60px 40px;
    }

    .team-card {
        flex: 0 0 calc(33.333% - 16px);
    }

    #about-intro {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .director-img-wrap {
        max-width: 400px;
        margin: 0 auto;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .stat-item {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding: 24px 0 0;
    }

    .stat-item:first-child,
    .stat-item:nth-child(2) {
        border-top: none;
    }
}

@media (max-width: 768px) {
    #site-header {
        padding: 0 24px;
    }

    .hero-content {
        padding: 0 24px;
    }

    .services-grid,
    .testimonials-grid,
    .blogs-grid,
    .blog-grid,
    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    #services-section,
    #testimonials-section,
    #blogs-section,
    #why-section,
    #about-section,
    #clients-section,
    .service-main-grid,
    .service-hero-split {
        padding: 60px 24px !important;
    }

    .hero-indicators {
        left: 24px;
    }

    #site-footer {
        padding: 60px 24px 32px;
    }

    .page-hero-inner {
        padding: 0 17px 5px;
        position: absolute;
        left: 0;
    }

    #info-strip {
        padding: 0 24px;
    }

    .info-strip-inner {
        grid-template-columns: 1fr;
    }

    .info-strip-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .info-strip-card:last-child {
        border-bottom: none;
    }

    #contact-section {
        padding: 48px 24px;
        display: block;
    }

    .form-card {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    #map-section {
        padding: 0 24px 60px;
    }

    .map-wrap iframe {
        height: 320px;
    }

    #featured-section,
    #blog-grid-section,
    #newsletter-strip {
        padding: 48px 24px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-card:first-child {
        grid-column: span 1;
    }

    .featured-card:first-child .featured-card-img {
        min-height: 300px;
    }

    .content-wrapper {
        padding: 40px 24px 0;
        display: block;
    }

    .post-hero {
        min-height: 400px;
    }

    .post-hero-inner {
        padding: 0 24px 40px;
    }

    .post-meta-strip-inner {
        padding: 12px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .article-content h2 {
        font-size: 26px;
    }

    .article-content h3 {
        font-size: 21px;
    }

    .modal-body-inner {
        grid-template-columns: 1fr;
    }

    .modal-photo-col img {
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        min-height: 260px;
    }

    .director-checklist {
        grid-template-columns: 1fr;
    }

    .team-card {
        flex: 0 0 calc(50% - 12px);
    }

    .timeline-steps::before {
        display: none;
    }

    .timeline-steps {
        grid-template-columns: 1fr;
    }

    .timeline-step {
        padding: 0 0 0 72px;
        text-align: left;
        padding-top: 0;
        margin-bottom: 32px;
    }

    .timeline-step-num {
        left: 0;
        transform: none;
        top: 0;
    }
}

@media (max-width: 640px) {
    .team-card {
        flex: 0 0 100%;
        margin-right: 0;
    }
}


/* footer */


/* ============================================
   FOOTER — IVORY & SAGE DENTAL
============================================ */

#main-footer {
    background: var(--charcoal, #2B2D2F);
    position: relative;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}


/* Subtle background texture */

#main-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 5% 90%, rgba(122, 158, 142, 0.08) 0%, transparent 50%), radial-gradient(ellipse at 95% 10%, rgba(200, 169, 110, 0.06) 0%, transparent 45%);
    pointer-events: none;
}


/* Top decorative line */

#main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 80px;
    right: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(122, 158, 142, 0.4), rgba(200, 169, 110, 0.3), transparent);
}


/* ── UPPER FOOTER ── */

.footer-upper {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 60px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 60px;
}


/* ── Column headings ── */

.footer-col-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: block;
    font-style: normal;
}


/* ── Col 1: Brand ── */

.footer-brand-logo {
    display: block;
    max-height: 60px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    /* Ensure logo shows on dark bg */
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    margin-bottom: 28px;
}


/* Social icons */

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.35s ease;
    font-size: 14px;
}

.footer-social-btn:hover {
    background: var(--sage-dark, #4D7A68);
    border-color: var(--sage-dark, #4D7A68);
    color: white;
    transform: translateY(-3px);
}

.footer-social-btn svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}


/* ── Col 2: Quick Links ── */

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    padding: 6px 0;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.footer-links li a:hover {
    color: var(--sage-light, #B2CEBD);
    gap: 14px;
}

.footer-links li a .link-arrow {
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: rgba(122, 158, 142, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.footer-links li a:hover .link-arrow {
    background: rgba(122, 158, 142, 0.3);
}

.footer-links li a .link-arrow svg {
    width: 9px;
    height: 9px;
    stroke: var(--sage-light, #B2CEBD);
    fill: none;
    stroke-width: 2.5;
}


/* ── Col 3: Contact ── */

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-contact-item:hover {
    transform: translateX(4px);
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(122, 158, 142, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.footer-contact-icon svg {
    width: 15px;
    height: 15px;
    stroke: var(--sage-light, #B2CEBD);
    fill: none;
    stroke-width: 1.8;
}

.footer-contact-text {}

.footer-contact-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 3px;
    font-style: normal;
}

.footer-contact-value {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.6;
    font-style: normal;
}

.footer-contact-value a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.footer-contact-value a:hover {
    color: var(--sage-light, #B2CEBD);
}


/* ── Col 4: Callback form ── */

.footer-form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 28px 24px;
}

.footer-form-intro {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: normal;
}

.footer-form-group {
    margin-bottom: 12px;
}

.footer-form-group label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    font-style: normal;
}

.footer-form-group input {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: white;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.footer-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.footer-form-group input:focus {
    border-color: rgba(122, 158, 142, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.footer-recaptcha {
    transform: scale(0.75);
    transform-origin: left center;
    margin: 8px 0;
}

.footer-submit-btn {
    width: 100%;
    background: var(--sage-dark, #4D7A68);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 100px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-submit-btn:hover {
    background: var(--gold, #C8A96E);
    color: var(--charcoal, #2B2D2F);
    transform: translateY(-2px);
}

.footer-submit-btn svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}


/* ── DIVIDER ── */

.footer-divider {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.footer-divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
}


/* ── BOTTOM BAR ── */

.footer-bottom {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--sage-light, #B2CEBD);
}

.footer-copyright span {
    color: var(--gold, #C8A96E);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--sage-light, #B2CEBD);
}

.footer-bottom-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}


/* Patient portal badge */

.patient-portal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(122, 158, 142, 0.15);
    border: 1px solid rgba(122, 158, 142, 0.25);
    border-radius: 100px;
    padding: 7px 14px 7px 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.patient-portal-badge:hover {
    background: rgba(122, 158, 142, 0.25);
    border-color: rgba(122, 158, 142, 0.5);
}

.patient-portal-badge img {
    height: 22px;
    width: auto;
}

.patient-portal-badge span {
    font-size: 12px;
    font-weight: 500;
    color: var(--sage-light, #B2CEBD);
    letter-spacing: 0.04em;
}


/* ── RESPONSIVE ── */

@media (max-width: 1200px) {
    .footer-upper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    #main-footer::after {
        left: 40px;
        right: 40px;
    }

    .footer-upper,
    .footer-divider,
    .footer-bottom {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .sidebar-card {
        margin-top: 20px !important;
    }

    .sidebar-col {
        margin-bottom: 0 !important;
    }

    .page-hero {
        /* min-height: 272px !important; */
        height: auto !important;
        min-height: auto !important;
        padding: 110px;
    }

    .sidebar-services-block,
    .sidebar-enquiry-block {
        padding: 0 !important;
    }

    .footer-col-title {
        margin-top: 20px;

    }

    .c-footer {
        display: block;
    }

    .footer-upper {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 48px 24px 40px;
    }

    #main-footer::after {
        left: 24px;
        right: 24px;
    }

    .footer-divider {
        padding: 0 24px;
    }

    .footer-bottom {
        padding: 20px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}


/* footer-end */


/* ── Top bar ── */

.topbar {
    background: var(--charcoal);
    padding: 8px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    gap: 16px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
    font-size: 16px;
}

.topbar-item:hover {
    color: var(--sage-light);
}

.topbar-item svg {
    width: 13px;
    height: 13px;
    stroke: var(--sage-dark);
    fill: none;
    stroke-width: 1.8;
    flex-shrink: 0;
}

.topbar-item a {
    color: inherit;
    text-decoration: none;
}

.topbar-item a:hover {
    color: var(--sage-light);
}

.topbar-social {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
}

.topbar-social:hover {
    background: var(--sage-dark);
}

.topbar-social svg {
    width: 14px;
    height: 14px;
    fill: rgba(255, 255, 255, 0.6);
}

.topbar-social:hover svg {
    fill: white;
}


/* ── Main header ── */

#site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(122, 158, 142, 0.15);
    transition: box-shadow 0.4s ease;
}

#site-header.scrolled {
    box-shadow: 0 4px 32px rgba(43, 45, 47, 0.09);
}

.header-inner {
    padding: 0 48px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}


/* Logo */

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.logo-fallback-mark {
    width: 44px;
    height: 44px;
    background: var(--sage-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-fallback-mark svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.logo-text-wrap {}

.logo-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.02em;
    display: block;
}

.logo-tagline {
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--warm-grey);
    text-transform: uppercase;
    display: block;
    margin-top: -1px;
}


/* Desktop nav */

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.main-nav>li {
    list-style: none;
    position: relative;
}

.main-nav>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.main-nav>li>a:hover,
.main-nav>li>a.active {
    color: var(--sage-dark);
    background: rgba(122, 158, 142, 0.08);
}

.main-nav>li>a .arrow {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.main-nav>li:hover>a .arrow {
    transform: rotate(180deg);
}


/* Mega / dropdown */

.nav-dropdown {
    top: 40px !important;
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid rgba(122, 158, 142, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(43, 45, 47, 0.12);
    padding: 16px;
    min-width: 280px;
    z-index: 100;
    animation: dropIn 0.25s ease;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.main-nav>li:hover .nav-dropdown {
    display: block;
}


/* Wide mega dropdown */

.nav-dropdown.mega {
    min-width: 540px;
    display: none;
}

.main-nav>li:hover .nav-dropdown.mega {
    display: block;
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    color: var(--charcoal);
}

.dropdown-item:hover {
    background: var(--ivory);
    color: var(--sage-dark);
}

.dropdown-item.active {
    background: rgba(77, 122, 104, 0.08);
    color: var(--sage-dark);
}

.dropdown-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--ivory);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
    overflow: hidden;
}

.dropdown-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.dropdown-item:hover .dropdown-icon {
    background: rgba(77, 122, 104, 0.12);
}

.dropdown-label {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}


/* CTA button */

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sage-dark);
    color: white;
    padding: 10px 22px;
    border-radius: 100px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.header-cta:hover {
    background: var(--sage-dark);
    transform: translateY(-1px);
    color: white;
}

.header-cta svg {
    width: 14px;
    height: 14px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}


/* Hamburger */

.mobile-toggle {
    display: none;
    background: none;
    border: 1.5px solid rgba(122, 158, 142, 0.3);
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
    transition: border-color 0.3s;
    flex-shrink: 0;
}

.mobile-toggle:hover {
    border-color: var(--sage-dark);
}

.mobile-toggle svg {
    width: 20px;
    height: 20px;
    stroke: var(--charcoal);
    fill: none;
    stroke-width: 1.5;
    display: block;
}


/* ── Mobile drawer ── */

.mobile-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1999;
}

.mobile-drawer.open {
    display: block;
}

.drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(43, 45, 47, 0.5);
    backdrop-filter: blur(4px);
}

.drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    background: white;
    overflow-y: auto;
    padding: 24px;
    animation: slideIn 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -20px 0 60px rgba(43, 45, 47, 0.15);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(122, 158, 142, 0.15);
}

.drawer-logo {
    height: 40px;
    width: auto;
}

.drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1.5px solid rgba(122, 158, 142, 0.2);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.drawer-close:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
}

.drawer-close:hover svg {
    stroke: white;
}

.drawer-close svg {
    width: 16px;
    height: 16px;
    stroke: var(--charcoal);
    fill: none;
    stroke-width: 2;
}

.drawer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.drawer-nav>li>a {
    display: block;
    padding: 12px 14px;
    font-size: 15px;
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.25s;
}

.drawer-nav>li>a:hover {
    background: var(--ivory);
    color: var(--sage-dark);
}


/* Accordion for mobile submenu */

.drawer-accordion-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--charcoal);
    font-family: 'Open Sans', sans-serif;
    background: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s;
    text-align: left;
}

.drawer-accordion-btn:hover {
    background: var(--ivory);
    color: var(--sage-dark);
}

.drawer-accordion-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.drawer-accordion-btn.open svg {
    transform: rotate(180deg);
}

.drawer-submenu {
    display: none;
    padding: 8px 0 8px 12px;
    border-left: 2px solid rgba(122, 158, 142, 0.2);
    margin-left: 14px;
    margin-bottom: 4px;
}

.drawer-submenu.open {
    display: block;
}

.drawer-submenu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    font-size: 13px;
    color: var(--warm-grey);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.25s;
}

.drawer-submenu a:hover {
    background: var(--ivory);
    color: var(--sage-dark);
}

.drawer-submenu a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.drawer-footer {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(122, 158, 142, 0.15);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-cta {
    display: block;
    text-align: center;
    background: var(--sage-dark);
    color: white;
    padding: 13px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s;
}

.drawer-cta:hover {
    background: var(--charcoal);
}

.drawer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--warm-grey);
    text-decoration: none;
}

.drawer-contact svg {
    width: 14px;
    height: 14px;
    stroke: var(--sage-dark);
    fill: none;
    stroke-width: 2;
}

.drawer-contact:hover {
    color: var(--sage-dark);
}


/* ── Responsive ── */

@media (max-width: 1100px) {
    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .topbar {
        padding: 8px 24px;
    }

    .header-inner {
        padding: 0 24px;
    }
}

@media (max-width: 640px) {
    .topbar-left .topbar-item:nth-child(n+2) {
        display: none;
    }
}


:root {
    --primary: #1e8c8b;
    --primary-dark: #156868;
    --primary-light: #e6f5f5;
    --primary-mid: #c2e8e8;
    --accent: #f4a738;
    --text-dark: #1a1a2e;
    --text-body: #4a5568;
    --text-muted: #718096;
    --bg-light: #f7fbfb;
    --bg-white: #ffffff;
    --border: #e2ecec;
    --shadow-sm: 0 2px 12px rgba(30, 140, 139, 0.08);
    --shadow-md: 0 8px 32px rgba(30, 140, 139, 0.12);
    --shadow-lg: 0 20px 60px rgba(30, 140, 139, 0.16);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --container-max: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
           BASE RESETS
        ============================================= */
body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-white);
}

/* =============================================
           BREADCRUMB / PAGE HERO — kept as original
        ============================================= */
/* No overrides — page-hero uses the site's existing styles from the theme */

/* =============================================
           HERO SPLIT SECTION
        ============================================= */
.service-hero-split {
    padding: 60px 80px;
    background: var(--bg-white);
}

.service-hero-split .container {
    max-width: var(--container-max);
}

.hero-content-left {
    padding-right: 40px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
}

.hero-content-left h1 {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.18;
    letter-spacing: -0.5px;
}

.hero-content-left h1 em {
    font-style: italic;
    color: var(--primary);
}

.hero-content-left p {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.75;
}

.btn-primary-teal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(30, 140, 139, 0.3);
}

.btn-primary-teal:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(30, 140, 139, 0.38);
    color: #fff !important;
}

.btn-primary-teal svg {
    transition: var(--transition);
}

.btn-primary-teal:hover svg {
    transform: translateX(3px);
}

.hero-img-right {
    position: relative;
}

.hero-img-right::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 80%;
    height: 80%;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.hero-img-right::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 50%;
    height: 50%;
    background: var(--primary-mid);
    border-radius: var(--radius-md);
    z-index: 0;
    opacity: 0.5;
}

.hero-img-right img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
    object-fit: cover;
}

/* =============================================
           MAIN GRID — Sidebar + Content
        ============================================= */
.service-main-grid {
    padding: 60px 80px;
    background: var(--bg-light);
    overflow: visible !important;
}

.service-main-grid .container {
    max-width: var(--container-max);
    overflow: visible !important;
}

/* ── SIDEBAR ── */
.sidebar-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

/* Services list block */
.sidebar-services-block {
    padding: 28px;
}

.sidebar-block-title {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--primary-light);
    position: relative;
}

.sidebar-block-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    margin-bottom: 2px;
}

.sidebar-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-body);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
    gap: 8px;
}

.sidebar-list a .arrow-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: transparent;
    transition: var(--transition);
    flex-shrink: 0;
}

.sidebar-list a:hover,
.sidebar-list a.active {
    background: var(--primary-light);
    color: var(--primary);
}

.sidebar-list a:hover .arrow-icon,
.sidebar-list a.active .arrow-icon {
    background: var(--primary);
    color: #fff;
}

.sidebar-list a.active {
    font-weight: 700;
}

/* Contact CTA block */
.sidebar-cta-block {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.sidebar-cta-block::before {
    content: '🦷';
    position: absolute;
    right: -8px;
    top: -10px;
    font-size: 80px;
    opacity: 0.1;
    line-height: 1;
}

.sidebar-cta-block p.cta-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.sidebar-cta-block p.cta-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
    line-height: 1.5;
}

.sidebar-cta-block a.cta-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-display);
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-cta-block a.cta-phone .phone-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.sidebar-cta-block a.cta-phone:hover .phone-icon {
    background: rgba(255, 255, 255, 0.35);
}

.sidebar-cta-block a.cta-phone:hover {
    color: #fff;
    opacity: 0.9;
}

/* ── MAIN DESCRIPTION ── */
.description-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    overflow: hidden;
}

/* =============================================
           ATTRACTIVE BULLET POINTS
           Targets all ul/ol inserted via admin editor
        ============================================= */
.description-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
}

.description-body ul li {
    position: relative;
    padding: 11px 14px 11px 48px;
    margin-bottom: 8px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.65;
    transition: var(--transition);
}

.description-body ul li:hover {
    background: var(--primary-light);
    border-left-color: var(--primary-dark);
}

.description-body ul li::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 13px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 9px;
    flex-shrink: 0;
}

/* Nested ul */
.description-body ul ul {
    margin: 10px 0 4px 0;
}

.description-body ul ul li {
    background: #fff;
    border-left-color: var(--primary-mid);
    font-size: 14px;
    padding-left: 44px;
}

.description-body ul ul li::before {
    width: 16px;
    height: 16px;
    top: 13px;
    background-color: #fff;
    border: 2px solid var(--primary);
    background-image: none;
}

/* Ordered list */
.description-body ol {
    list-style: none;
    counter-reset: ol-counter;
    padding: 0;
    margin: 0 0 22px 0;
}

.description-body ol li {
    counter-increment: ol-counter;
    position: relative;
    padding: 11px 14px 11px 52px;
    margin-bottom: 8px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.65;
    transition: var(--transition);
}

.description-body ol li:hover {
    background: var(--primary-light);
}

.description-body ol li::before {
    content: counter(ol-counter);
    position: absolute;
    left: 13px;
    top: 11px;
    width: 26px;
    height: 26px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-body);
    line-height: 26px;
    text-align: center;
}

/* =============================================
           STICKY SIDEBAR — Bulletproof Fix
           Bootstrap .row uses display:flex + align-items:stretch
           which forces col height = tallest sibling → breaks sticky.
           Fix: override row alignment + set col to self-start.
           Also: overflow:hidden on any ancestor kills sticky — override.
        ============================================= */
.sidebar-row {
    align-items: flex-start !important;
}

.sidebar-col {
    align-self: flex-start !important;
    position: relative;
}

.sidebar-sticky-wrap {
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    z-index: 10;
}

.sidebar-services-block {
    padding: 28px;
}

.desc-header {
    background: linear-gradient(135deg, var(--primary-light) 0%, #daf0f0 100%);
    padding: 28px 36px 22px;
    border-bottom: 1px solid var(--primary-mid);
    display: flex;
    align-items: center;
    gap: 14px;
}

.desc-header-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.desc-header-text h2 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-dark);
    margin: 0 0 4px;
}

.desc-header-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.description-body {
    padding: 36px;
    line-height: 1.85;
    color: var(--text-body);
    font-size: 15.5px;
}

.description-body h2,
.description-body h3 {
    font-family: var(--font-display);
    color: var(--text-dark);
    margin-top: 36px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.description-body h2 {
    font-size: 26px;
}

.description-body h3 {
    font-size: 20px;
    color: var(--primary-dark);
}

.description-body h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin-top: 10px;
    border-radius: 2px;
}

.description-body p {
    margin-bottom: 18px;
}

.description-body strong {
    color: var(--text-dark);
}

.description-body a {
    color: var(--primary);
}

/* =============================================
           ENQUIRY SECTION
        ============================================= */
.enquiry-section {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
}

.enquiry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #29b5b4, var(--primary));
}

.enquiry-section .container {
    max-width: var(--container-max);
}

.enquiry-inner {
    max-width: 760px;
    margin: 0 auto;
}

.enquiry-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.enquiry-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 38px);
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.enquiry-sub {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.enquiry-form-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.enquiry-form-card .form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 18px;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: var(--transition);
    width: 100%;
    outline: none;
}

.enquiry-form-card .form-control:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(30, 140, 139, 0.1);
}

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

.form-label-float {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.btn-submit-teal {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 15px 48px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(30, 140, 139, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-submit-teal:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(30, 140, 139, 0.38);
}

/* =============================================
           BOOKING MODAL
        ============================================= */
#bookingModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 25, 40, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

#bookingModal.open {
    display: flex;
}

.modal-box {
    background: #fff;
    border-radius: var(--radius-xl);
    width: 94%;
    max-width: 480px;
    overflow: visible;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 24px 28px 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-body {
    padding: 28px 32px 32px;
    background: #fff;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    overflow: visible;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 24px 28px 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

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

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: #fff;
    margin: 0 0 5px;
    line-height: 1.2;
}

.modal-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

.modal-close-btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    transition: var(--transition);
    margin-top: 2px;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.modal-body .form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-light);
    width: 100%;
    transition: var(--transition);
    outline: none;
    margin-bottom: 14px;
}

.modal-body .form-control:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(30, 140, 139, 0.1);
}

.modal-body select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231e8c8b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 36px;
}

.btn-modal-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(30, 140, 139, 0.3);
    margin-top: 4px;
}

.btn-modal-submit:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 28px rgba(30, 140, 139, 0.4);
}

/* =============================================
           RESPONSIVE
        ============================================= */
@media (max-width: 991px) {
    .hero-content-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-img-right::before,
    .hero-img-right::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .post-main-img {
        height: auto !important;
    }

    .service-hero-split {
        padding: 48px 0 40px;
    }

    .service-main-grid {
        padding: 40px 0 56px;
    }

    .description-body {
        padding: 24px 20px;
    }

    .desc-header {
        padding: 20px 24px 16px;
    }

    .enquiry-form-card {
        padding: 28px 20px;
    }

    .modal-body {
        padding: 20px 20px 24px;
    }

    .modal-header {
        padding: 18px 20px 16px;
        border-radius: 20px 20px 0 0;
    }

    .modal-box {
        border-radius: 20px;
    }

    .sidebar-col {
        margin-bottom: 30px;
    }

    .sidebar-sticky-wrap {
        position: static !important;
    }
}

/* --------service-page-end------- */
/* =============================================
   BOOKING MODAL STYLES
============================================= */
#bookingModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 25, 40, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

#bookingModal.open {
    display: flex;
}

.modal-box {
    background: #fff;
    border-radius: var(--radius-xl);
    width: 94%;
    max-width: 480px;
    overflow: visible;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 24px 28px 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

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

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: #fff;
    margin: 0 0 5px !important;
    line-height: 1.2;
}

.modal-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

.modal-close-btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    transition: var(--transition);
    margin-top: 2px;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.modal-body {
    padding: 28px 32px 32px;
    background: #fff;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    overflow: visible;
}

.modal-body .form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-light);
    width: 100%;
    transition: var(--transition);
    outline: none;
    margin-bottom: 14px;
}

.modal-body .form-control:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(30, 140, 139, 0.1);
}

.btn-modal-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(30, 140, 139, 0.3);
    margin-top: 4px;
}

.btn-modal-submit:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 28px rgba(30, 140, 139, 0.4);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 767px) {
    .modal-body {
        padding: 20px 20px 24px;
    }

    .modal-header {
        padding: 18px 20px 16px;
        border-radius: 20px 20px 0 0;
    }

    .modal-box {
        border-radius: 20px;
    }
}

/* =============================================
   BOOKING MODAL STYLES
============================================= */
#bookingModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 25, 40, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

#bookingModal.open {
    display: flex;
}

.modal-box {
    background: #fff;
    border-radius: var(--radius-xl);
    width: 94%;
    max-width: 480px;
    overflow: visible;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 24px 28px 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

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

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: #fff;
    margin: 0 0 5px !important;
    line-height: 1.2;
}

.modal-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

.modal-close-btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    transition: var(--transition);
    margin-top: 2px;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.modal-body {
    padding: 28px 32px 32px;
    background: #fff;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    overflow: visible;
}

.modal-body .form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-light);
    width: 100%;
    transition: var(--transition);
    outline: none;
    margin-bottom: 14px;
}

.modal-body .form-control:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(30, 140, 139, 0.1);
}

.btn-modal-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(30, 140, 139, 0.3);
    margin-top: 4px;
}

.btn-modal-submit:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 28px rgba(30, 140, 139, 0.4);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 767px) {
    .modal-body {
        padding: 20px 20px 24px;
    }

    .modal-header {
        padding: 18px 20px 16px;
        border-radius: 20px 20px 0 0;
    }

    .modal-box {
        border-radius: 20px;
    }
}