/* Mahkota Medical Centre — Stylesheet */

:root {
    --primary: #8a1538;
    --primary-dark: #6a0f28;
    --primary-deep: #4a0a1c;
    --accent: #c9a96e;
    --accent-dark: #a88a4f;
    --teal: #2c5f7c;
    --teal-dark: #1f4a63;
    --cream: #fdf8f3;
    --sand: #f1e6d2;
    --text: #1a1a1a;
    --text-light: #555;
    --text-muted: #8a8a8a;
    --bg: #ffffff;
    --bg-alt: #fbf7f1;
    --bg-warm: #f7eee2;
    --border: #ece4d4;
    --border-soft: #f0ebe2;
    --shadow: 0 2px 14px rgba(74, 10, 28, 0.06);
    --shadow-lg: 0 12px 38px rgba(74, 10, 28, 0.12);
    --shadow-xl: 0 24px 60px rgba(74, 10, 28, 0.14);
    --radius: 10px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.65;
    background: var(--bg);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.18;
    color: var(--primary-deep);
    margin-bottom: .5em;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.8vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
p { margin-bottom: 1rem; color: var(--text-light); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 920px; margin: 0 auto; padding: 0 24px; }

/* Top bar */
.top-bar {
    background: var(--primary-deep);
    color: #fff;
    font-size: .84rem;
    padding: 9px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar-left, .top-bar-right {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}
.top-bar a { color: #fff; opacity: .9; }
.top-bar a:hover { opacity: 1; color: var(--accent); }
.hide-sm { display: inline; }
.btn-small {
    background: var(--accent);
    color: var(--primary-deep) !important;
    padding: 5px 16px;
    border-radius: 18px;
    font-weight: 700;
    opacity: 1 !important;
    font-size: .82rem;
    letter-spacing: .02em;
}
.btn-small:hover { background: #fff; }

/* Header */
.main-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    color: var(--accent);
    border-radius: 50%;
    display: grid;
    place-items: center;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(138, 21, 56, 0.3);
}
.logo-text {
    font-family: var(--font-display);
    color: var(--primary-deep);
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.logo-text strong {
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: .02em;
}
.logo-text em {
    font-style: normal;
    font-size: .68rem;
    font-family: var(--font);
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-top: 2px;
}

.main-nav { display: flex; gap: 2px; align-items: center; flex-wrap: wrap; }
.nav-link {
    padding: 8px 12px;
    color: var(--text);
    font-size: .9rem;
    font-weight: 500;
    border-radius: 6px;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: var(--bg-alt);
}

.nav-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    min-width: 230px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity .2s, visibility .2s, transform .2s;
    z-index: 50;
    border: 1px solid var(--border-soft);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: var(--text);
    font-size: .9rem;
}
.dropdown-menu a:hover { background: var(--bg-alt); color: var(--primary); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: .92rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .22s ease;
    text-align: center;
    letter-spacing: .01em;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(138, 21, 56, 0.25); }
.btn-accent { background: var(--accent); color: var(--primary-deep); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); color: #fff; border-color: var(--accent-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: var(--accent); border-color: var(--accent); color: var(--primary-deep); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.8); }
.btn-outline-white:hover { background: #fff; color: var(--primary); }
.btn-lg { padding: 15px 34px; font-size: 1rem; }

/* Hero */
.hero {
    position: relative;
    background: linear-gradient(135deg, #fdf8f3 0%, #f7eee2 100%);
    padding: 80px 0 90px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 15% 20%, rgba(138, 21, 56, 0.04) 0%, transparent 45%),
                      radial-gradient(circle at 85% 80%, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(138, 21, 56, 0.08);
    color: var(--primary);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
}
.hero-content h1 {
    margin-bottom: 20px;
    color: var(--primary-deep);
}
.hero-content h1 em { font-style: italic; color: var(--accent-dark); font-weight: 500; }
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.65;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    font-size: .85rem;
    color: var(--text-light);
    padding-top: 24px;
    border-top: 1px solid rgba(138, 21, 56, 0.1);
}
.hero-trust-item {
    display: flex;
    flex-direction: column;
}
.hero-trust-item strong {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary);
    line-height: 1;
}
.hero-image {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(74, 10, 28, 0.3) 100%);
}
.hero-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: var(--radius);
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}
.hero-badge-icon {
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 1.4rem;
}
.hero-badge strong { display: block; color: var(--primary-deep); font-size: .95rem; }
.hero-badge span { font-size: .8rem; color: var(--text-muted); }

/* Stats */
.stats-bar {
    background: #fff;
    padding: 36px 0;
    border-bottom: 1px solid var(--border-soft);
}
.stats-bar.inline {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: -50px;
    position: relative;
    z-index: 2;
    padding: 30px 20px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    text-align: center;
}
.stat-item { padding: 14px; border-right: 1px solid var(--border-soft); }
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-number-suffix { color: var(--accent); }
.stat-label {
    font-size: .82rem;
    color: var(--text-light);
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Sections */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-alt { background: var(--bg-alt); }
.section-warm { background: var(--bg-warm); }
.section-dark { background: var(--primary-deep); color: #fff; position: relative; overflow: hidden; }
.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 85% 20%, rgba(201, 169, 110, 0.12) 0%, transparent 50%);
    pointer-events: none;
}
.section-dark > * { position: relative; z-index: 1; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.82); }
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.section-header.left { text-align: left; margin-left: 0; }
.section-eyebrow {
    display: inline-block;
    color: var(--accent-dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--accent); }
.section-header p { font-size: 1.05rem; margin-top: 14px; }

/* Departments / Services cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
}
.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    border: 1px solid var(--border-soft);
    transition: transform .25s, border-color .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(138, 21, 56, 0.15);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bg-warm), var(--sand));
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    font-size: 1.7rem;
    color: var(--primary);
}
.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--primary-deep); }
.service-card p { font-size: .95rem; margin-bottom: 16px; }
.service-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: .88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}
.service-card-link::after { content: '→'; }
.service-card:hover .service-card-link { gap: 10px; }

/* Feature cards with image */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.feature-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.feature-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-warm);
}
.feature-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.feature-card:hover .feature-card-image img { transform: scale(1.05); }
.feature-card-body { padding: 26px; }
.feature-card-body h3 { font-size: 1.3rem; margin-bottom: 10px; }

/* Rooms / Locations */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.location-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    transition: transform .25s, box-shadow .25s;
}
.location-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.location-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-warm);
}
.location-card-image img { width: 100%; height: 100%; object-fit: cover; }
.location-card-body { padding: 26px; }
.location-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.location-card .address {
    color: var(--text-light);
    font-size: .9rem;
    margin-bottom: 14px;
}
.location-tag {
    display: inline-block;
    background: var(--bg-warm);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.location-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: .9rem;
    padding-top: 14px;
    border-top: 1px solid var(--border-soft);
}
.location-price {
    font-family: var(--font-display);
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
}
.location-price small { font-family: var(--font); font-size: .75rem; font-weight: 500; color: var(--text-muted); }

/* Team / Doctors */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}
.team-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.team-photo {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--bg-warm), var(--sand));
    overflow: hidden;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--primary);
    font-weight: 600;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 22px; text-align: center; }
.team-body h4 { margin-bottom: 4px; font-size: 1.1rem; color: var(--primary-deep); }
.team-role { color: var(--accent-dark); font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 10px; display: block; }
.team-meta {
    font-size: .82rem;
    color: var(--text-muted);
    padding-top: 10px;
    border-top: 1px solid var(--border-soft);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial {
    background: #fff;
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    position: relative;
}
.testimonial::before {
    content: '“';
    position: absolute;
    top: 12px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
    opacity: .5;
}
.testimonial-text { font-style: italic; margin-bottom: 18px; color: var(--text); line-height: 1.7; }
.testimonial-author { font-weight: 700; color: var(--primary-deep); font-family: var(--font-display); font-size: 1.1rem; }
.testimonial-location { font-size: .82rem; color: var(--text-muted); }
.stars { color: var(--accent); margin-bottom: 12px; letter-spacing: 2px; font-size: 1rem; }

/* Page hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
    color: #fff;
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 90% 20%, rgba(201, 169, 110, 0.18) 0%, transparent 45%),
                      radial-gradient(circle at 10% 90%, rgba(201, 169, 110, 0.08) 0%, transparent 40%);
    pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 16px; max-width: 780px; }
.page-hero p {
    color: rgba(255,255,255,.85);
    font-size: 1.1rem;
    max-width: 720px;
    line-height: 1.6;
}
.breadcrumb {
    font-size: .85rem;
    color: rgba(255,255,255,.72);
    margin-bottom: 20px;
    letter-spacing: .02em;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { color: #fff; }

/* Content blocks */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.two-col-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.content-block h2 { margin-bottom: 20px; }
.content-block .section-eyebrow { margin-bottom: 12px; }
.content-block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}
.content-block li {
    margin-bottom: 12px;
    color: var(--text-light);
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}
.content-block li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 700;
    width: 22px;
    height: 22px;
    background: var(--bg-warm);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .78rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}
.value-card {
    padding: 32px 26px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    transition: transform .25s, box-shadow .25s;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.value-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent-dark);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}
.value-card h4 { color: var(--primary-deep); margin-bottom: 8px; }

/* Packages */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 26px;
}
.package-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    border: 1px solid var(--border-soft);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.package-card.featured {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(180deg, #fff, var(--cream));
}
.package-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary-deep);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
}
.package-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary-deep);
    margin-bottom: 6px;
    font-weight: 700;
}
.package-tag {
    color: var(--accent-dark);
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 18px;
    display: block;
}
.package-price {
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}
.package-price small {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-muted);
    font-family: var(--font);
}
.package-save {
    color: var(--accent-dark);
    font-size: .88rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.package-features {
    list-style: none;
    padding: 20px 0;
    border-top: 1px solid var(--border-soft);
    margin: 0 0 24px 0;
    flex: 1;
}
.package-features li {
    padding: 6px 0 6px 28px;
    font-size: .92rem;
    color: var(--text-light);
    position: relative;
}
.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--accent);
    font-weight: 700;
}

/* CTA */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    padding: 70px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 90% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 50%);
}
.cta-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cta-inner .section-eyebrow { color: var(--accent); margin-bottom: 10px; }
.cta-inner h2 { color: #fff; margin-bottom: 10px; }
.cta-inner p { color: rgba(255,255,255,.85); margin: 0; font-size: 1rem; }
.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Footer */
.site-footer {
    background: #1a0a12;
    color: #d6d6d6;
    padding: 70px 0 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 50px;
}
.footer-brand p {
    color: #b0a0a6;
    margin: 18px 0;
    max-width: 340px;
    font-size: .92rem;
    line-height: 1.65;
}
.footer-contact {
    margin: 20px 0;
}
.footer-contact p {
    font-size: .86rem;
    margin-bottom: 14px;
    color: #b0a0a6;
}
.footer-contact strong {
    color: var(--accent);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}
.footer-contact a { color: #fff; }
.footer-contact a:hover { color: var(--accent); }

.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-mark {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary-deep);
}
.footer-logo .logo-text strong { color: #fff; }
.footer-logo .logo-text em { color: var(--accent); }

.social { display: flex; gap: 10px; margin-top: 6px; }
.social a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.06);
    color: #fff;
    border-radius: 50%;
    font-weight: 600;
    font-size: .82rem;
    transition: background .2s;
}
.social a:hover { background: var(--accent); color: var(--primary-deep); }

.footer-col h4 {
    color: #fff;
    font-family: var(--font);
    font-size: .88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #b0a0a6; font-size: .9rem; }
.footer-col a:hover { color: var(--accent); }

.partners {
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 26px;
    text-align: center;
}
.partners h5 {
    color: #b0a0a6;
    font-family: var(--font);
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
    margin-bottom: 18px;
}
.partner-logos {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    opacity: .82;
}
.partner-logos span {
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 6px;
    font-size: .88rem;
    letter-spacing: .03em;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    font-size: .82rem;
    color: #8a7a81;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: #8a7a81; }
.footer-legal a:hover { color: var(--accent); }

/* Forms */
.form-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-soft);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.form-group { margin-bottom: 18px; }
label {
    display: block;
    font-weight: 600;
    font-size: .86rem;
    margin-bottom: 8px;
    color: var(--primary-deep);
}
input, textarea, select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: .95rem;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(138, 21, 56, 0.1);
}
textarea { min-height: 140px; resize: vertical; }

/* Tables */
.price-table {
    width: 100%;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-collapse: collapse;
    box-shadow: var(--shadow);
}
.price-table th, .price-table td {
    padding: 16px 22px;
    text-align: left;
    border-bottom: 1px solid var(--border-soft);
}
.price-table th {
    background: var(--primary-deep);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .8rem;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--bg-alt); }
.price-table .price {
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.1rem;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-soft);
    transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-warm), var(--sand));
}
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-content { padding: 26px; }
.blog-meta {
    display: flex;
    gap: 14px;
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.blog-category {
    color: var(--accent-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.blog-content h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--primary-deep); }

/* Conditions list */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}
.condition-tag {
    background: #fff;
    padding: 14px 18px;
    border-radius: var(--radius);
    border: 1px solid var(--border-soft);
    font-size: .88rem;
    color: var(--text);
    display: block;
    transition: background .2s, color .2s, border-color .2s;
    font-weight: 500;
}
.condition-tag:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.condition-tag::before {
    content: '+ ';
    color: var(--accent);
    font-weight: 700;
    margin-right: 4px;
}
.condition-tag:hover::before { color: var(--accent); }

/* FAQ */
.faq-item {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--shadow); }
.faq-question {
    padding: 18px 24px;
    font-weight: 600;
    color: var(--primary-deep);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .98rem;
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform .25s;
    font-weight: 300;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s, padding .3s;
    color: var(--text-light);
}
.faq-item.open .faq-answer { padding: 0 24px 22px; max-height: 500px; }

/* Info / Alert boxes */
.info-box {
    padding: 26px 30px;
    background: var(--cream);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    margin: 30px 0;
}
.info-box strong { color: var(--primary-deep); }
.info-box p:last-child { margin-bottom: 0; }

/* Process steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    counter-reset: step;
}
.process-step {
    padding: 30px 26px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    counter-increment: step;
    position: relative;
}
.process-step::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}
.process-step h4 { color: var(--primary-deep); margin-bottom: 8px; }

/* Accreditation strip */
.accred-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    margin-top: 40px;
}
.accred-item {
    padding: 26px 20px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border-soft);
    text-align: center;
    font-family: var(--font-display);
    color: var(--primary-deep);
    font-weight: 600;
}
.accred-item strong { display: block; font-size: 1.2rem; margin-bottom: 4px; }
.accred-item span { font-size: .82rem; color: var(--text-muted); font-family: var(--font); font-weight: 500; }

/* Contact info block */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.contact-info-item {
    padding: 24px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border-soft);
}
.contact-info-item strong {
    display: block;
    color: var(--primary);
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.contact-info-item p { margin: 0; color: var(--text); font-size: .95rem; line-height: 1.55; }

/* Responsive */
@media (max-width: 1150px) {
    .main-nav .nav-link { padding: 7px 9px; font-size: .85rem; }
    .hero-inner { gap: 40px; }
}

@media (max-width: 980px) {
    .hero-inner, .two-col { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { aspect-ratio: 3/2; max-height: 420px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item { border-bottom: 1px solid var(--border-soft); padding-bottom: 20px; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-brand { grid-column: span 2; }
    .cta-inner { grid-template-columns: 1fr; text-align: center; }
    .cta-buttons { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .hero { padding: 60px 0 70px; }
    .hide-sm { display: none; }

    .menu-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: #fff;
        flex-direction: column;
        padding: 80px 24px 24px;
        align-items: stretch;
        box-shadow: var(--shadow-xl);
        transition: right .28s cubic-bezier(.4,0,.2,1);
        overflow-y: auto;
        z-index: 99;
    }
    body.menu-open .main-nav { right: 0; }
    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(26, 10, 18, 0.5);
        z-index: 90;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 16px;
        border: none;
    }
}

@media (max-width: 640px) {
    .top-bar-inner { justify-content: center; font-size: .78rem; }
    .top-bar-left, .top-bar-right { gap: 12px; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section { padding: 50px 0; }
    .page-hero { padding: 60px 0 50px; }
    .form-card { padding: 28px 22px; }
    .partner-logos { gap: 12px; }
    .partner-logos span { font-size: .78rem; }
}
