/* Nova Laser Institute - Main Stylesheet */
/* Brand color: #004861 | Font: Balgin (see partials/font-faces.blade.php) */

:root {
    --primary: #004861;
    --primary-dark: #003648;
    --primary-light: #006688;
    --primary-pale: #e6f0f3;
    --white: #ffffff;
    --gray-50: #f8fafb;
    --gray-100: #f1f5f7;
    --gray-200: #e2e8ed;
    --gray-400: #94a3b0;
    --gray-600: #5a6a75;
    --gray-800: #2d3740;
    --gray-900: #1a2328;
    --font-main: 'Balgin', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-numeric: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 72, 97, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 72, 97, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 72, 97, 0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: var(--primary-light);
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 1.2;
    color: var(--gray-900);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-title strong,
.section-title .highlight {
    color: var(--primary);
}

.section-title.light {
    color: var(--white);
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 700px;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

.prose p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.prose strong,
.prose b,
strong,
b {
    font-weight: 700;
}

.prose strong {
    color: var(--gray-800);
}

.section {
    padding: 5rem 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--primary-pale);
    color: var(--primary-dark);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
    padding: 0px 100px 10px 100px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.nav-list .nav-lang-item {
    display: flex;
    align-items: center;
}

.nav-list .lang-switcher {
    padding-bottom: 0.4rem;
}

.lang-switch {
    color: var(--gray-400);
    padding: 0.25rem 0.35rem;
    transition: color var(--transition);
}

.lang-switch:hover,
.lang-switch.is-active {
    color: var(--primary);
}

.lang-divider {
    color: var(--gray-300);
    font-size: 0.75rem;
    user-select: none;
}

.logo img {
    height: 220px;
    width: auto;
}

.main-nav a.btn-primary,
.main-nav a.btn-primary:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 2.75rem;
    list-style: none;
}

.main-nav .nav-list > li {
    display: flex;
    align-items: center;
}

.main-nav .nav-list > li > a,
.main-nav .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--primary);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0;
    padding: 0 0 0.4rem;
    margin: 0;
    border: none;
    border-bottom: 3px solid transparent;
    background: none;
    cursor: pointer;
    white-space: nowrap;
    transition: color var(--transition), border-color var(--transition);
}

.main-nav .nav-list > li > a:hover,
.main-nav .dropdown-toggle:hover {
    color: var(--primary-dark, #003648);
}

.main-nav .nav-list > li > a.is-active,
.has-dropdown.is-active > .dropdown-toggle {
    border-bottom-color: var(--primary);
}

.nav-chevron {
    flex-shrink: 0;
    opacity: 0.7;
    margin-top: 1px;
}

.has-dropdown {
    position: relative;
}

/* Desktop: logo + nav in one row */
@media (min-width: 769px) {
    .site-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 100px 10px;
    }

    .header-inner {
        width: auto;
        padding: 0;
        flex-shrink: 0;
    }

    .mobile-nav-backdrop,
    .mobile-nav-eyebrow,
    .mobile-nav-footer {
        display: none !important;
    }

    .main-nav {
        position: static;
        width: auto;
        height: auto;
        transform: none !important;
        visibility: visible !important;
        background: none;
        overflow: visible;
        padding: 0;
    }

    .mobile-nav-inner {
        padding: 0;
        height: auto;
        overflow: visible;
        display: block;
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
    min-width: 180px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    margin-top: 0.5rem;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-800);
    border-bottom: none;
}

.dropdown-menu a:hover,
.dropdown-menu a.is-active {
    color: var(--primary);
    background: var(--gray-50);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1004;
    position: relative;
    width: 44px;
    height: 44px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
    transform-origin: center;
}

/* Hero split (100vh, 50/50) */
.hero-split {
    display: flex;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-left {
    flex: 0 0 50%;
    width: 50%;
    background: #004861;
    display: flex;
    align-items: center;
    padding: 6rem 4rem 4rem 5rem;
}

.hero-left-inner {
    max-width: 80%;
}

.hero-headline {
    font-family: var(--font-main);
    font-size: 70px;
    line-height: 70px;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-bottom: 2rem;
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-tagline-icon {
    flex-shrink: 0;
    opacity: 0.9;
}

@media (max-width: 1400px) {
    .hero-headline {
        font-size: clamp(48px, 4.5vw, 70px);
        line-height: 1;
    }
}

@media (max-width: 1024px) {
    .hero-left {
        padding: 6rem 2.5rem 3rem 3rem;
    }
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: #004861;
    padding: 1rem 1.75rem;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    transition: all var(--transition);
}

.btn-hero-cta:hover {
    background: var(--primary-pale);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-right {
    flex: 0 0 50%;
    width: 50%;
    position: relative;
    overflow: hidden;
}

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

/* About section */
.about-section {
    background: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.about-section-inner {
    width: 100%;
}

.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
}

.about-title {
    font-family: var(--font-main);
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    color: var(--primary);
    margin: 0;
}

.about-content {
    font-family: var(--font-main);
    font-size: 20px;
    line-height: 20px;
    color: var(--gray-600);
}

.about-content p {
    margin: 0 0 20px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-visual {
    margin-bottom: 4rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image {
    display: block;
    width: 100%;
    height: clamp(260px, 40vh, 420px);
    object-fit: cover;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.about-stat-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.about-stat-value {
    display: block;
    font-family: var(--font-numeric);
    font-size: 50px;
    line-height: 50px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-variant-numeric: tabular-nums;
}

.about-stat-label {
    display: block;
    font-family: var(--font-main);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    color: var(--gray-600);
}

/* Addictions */
.addictions-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 6rem 0;
}

.addictions-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3.5rem;
}

.addictions-title {
    font-family: var(--font-main);
    font-size: clamp(2.25rem, 4vw, 3.125rem);
    line-height: 1.1;
    font-weight: 400;
    color: var(--primary);
    margin: 0;
}

.addictions-intro {
    font-family: var(--font-main);
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--gray-600);
    margin: 0;
}

.addictions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    align-items: stretch;
}

.addiction-card {
    --card-accent: var(--primary);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color var(--transition);
}

.addiction-card--tobacco { --card-accent: #004861; }
.addiction-card--cannabis { --card-accent: #1f6b52; }
.addiction-card--alcohol { --card-accent: #6b3a36; }
.addiction-card--sugar { --card-accent: #8a5d2e; }

.addiction-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 72, 97, 0.14);
}

.addiction-card-media {
    position: relative;
    height: 210px;
    overflow: hidden;
    flex-shrink: 0;
}

.addiction-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.addiction-card:hover .addiction-card-image {
    transform: scale(1.06);
}

.addiction-card-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 36, 48, 0.05) 0%,
        rgba(0, 48, 97, 0.55) 55%,
        rgba(0, 48, 97, 0.92) 100%
    );
    pointer-events: none;
}

.addiction-card-badge {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    z-index: 1;
}

.addiction-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    padding: 0.5rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.addiction-card-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.addiction-card-title {
    font-family: var(--font-main);
    font-size: 1.65rem;
    line-height: 1.15;
    font-weight: 400;
    color: var(--white);
    margin: 0;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

.addiction-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem 1.75rem;
}

.addiction-stat-block {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.15rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-pale) 0%, rgba(230, 240, 243, 0.55) 100%);
    border: 1px solid rgba(0, 72, 97, 0.08);
    border-left: 4px solid var(--card-accent);
    border-radius: 12px;
}

.addiction-number {
    font-family: var(--font-numeric);
    font-size: 2.25rem;
    line-height: 1;
    font-weight: 700;
    color: var(--card-accent);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.addiction-stat-desc {
    font-family: var(--font-main);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
    color: var(--gray-600);
    margin: 0;
}

.addiction-facts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.addiction-facts li {
    position: relative;
    padding-left: 1.15rem;
    font-family: var(--font-main);
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--gray-600);
}

.addiction-facts li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--card-accent);
    box-shadow: 0 0 0 3px rgba(0, 72, 97, 0.08);
}

.btn-addiction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    margin-top: auto;
    padding: 0.95rem 1.5rem;
    background: var(--card-accent);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 10px;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.btn-addiction svg {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-addiction:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 72, 97, 0.22);
}

.btn-addiction:hover svg {
    transform: translateX(4px);
}

/* Method */
.method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.method-visual-image {
    display: block;
    width: 100%;
    min-height: 360px;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.method-text .btn {
    margin-top: 1.5rem;
}

/* Trust section */
.trust-section {
    background: var(--white);
    padding: 4rem 0rem 0rem 1rem;
}

.trust-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 4rem;
}

.trust-title {
    font-family: var(--font-main);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--primary);
    margin: 0 0 1.25rem;
}

.trust-title strong {
    font-weight: 700;
}

.trust-subtitle {
    font-family: var(--font-main);
    font-size: 18px;
    line-height: 28px;
    color: var(--gray-600);
    margin: 0;
}

.trust-subtitle strong {
    color: var(--gray-800);
    font-weight: 700;
}

.trust-layout {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 340px) 1fr;
    gap: 2.5rem 3rem;
    align-items: center;
}

.trust-column {
    display: flex;
    flex-direction: column;
    gap: 2.75rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.trust-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    color: var(--primary);
}

.trust-item-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.trust-item-title {
    font-family: var(--font-main);
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.5rem;
}

.trust-item-text {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 24px;
    color: var(--gray-600);
    margin: 0;
}

.trust-item-text strong {
    color: var(--gray-800);
    font-weight: 700;
}

.trust-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

.trust-doctor-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 32px rgba(0, 72, 97, 0.12));
}

/* CTA */
.cta-section {
    background: var(--primary);
    padding: 5rem 0;
}

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

.cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 1.05rem;
}

.contact-link:hover {
    color: var(--primary-pale);
}

/* FAQ */
.faq-section {
    background: var(--gray-50);
}

.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--gray-900);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform var(--transition);
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--gray-600);
}

/* Testimonials */
.testimonials-section {
    background: var(--white);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    margin-top: 2rem;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.testimonial-content {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 400;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* Location */
.centers-section {
    background: var(--gray-50);
    padding: 6rem 0;
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: stretch;
}

.location-info {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-name {
    font-family: var(--font-main);
    font-size: 32px;
    line-height: 1.2;
    color: var(--primary);
    margin: 0;
}

.location-address {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
}

.location-phone,
.location-email {
    font-size: 16px;
    color: var(--primary);
    display: block;
}

.location-directions {
    margin-top: auto;
    align-self: flex-start;
}

.location-map {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    min-height: 450px;
    background: var(--white);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: block;
}

.form-input,
.form-select {
    font-family: var(--font-main);
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    background: var(--white);
    color: var(--gray-800);
    outline: none;
    transition: border-color var(--transition);
}

.form-input {
    flex: 1;
    min-width: 200px;
}

.form-input:focus,
.form-select:focus {
    border-color: var(--primary);
}

/* Footer */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 3rem 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 230px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--gray-400);
    transition: color var(--transition);
}

.footer-social a:hover {
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-legal {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .addictions-title {
        font-size: clamp(2rem, 5vw, 3.125rem);
    }

    .addiction-card-title {
        font-size: 1.45rem;
    }

    .addiction-number {
        font-size: 2rem;
    }

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

    .trust-title {
        font-size: clamp(28px, 4vw, 42px);
    }

    .trust-layout {
        grid-template-columns: 1fr 240px 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .location-layout {
        grid-template-columns: 1fr;
    }

    .location-map {
        min-height: 360px;
    }

    .location-map iframe {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .site-header {
        z-index: 1003;
    }

    .header-inner {
        padding: 0 1.5rem 10px;
    }

    .nav-list .nav-lang-item .lang-switcher {
        padding: 1.15rem 0;
        font-size: 1.1rem;
    }

    .logo img {
        height: 56px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    body.mobile-nav-open {
        overflow: hidden;
    }

    .mobile-nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1001;
        background: rgba(0, 48, 65, 0.5);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .mobile-nav-backdrop.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        height: 100vh;
        z-index: 1002;
        margin: 0;
        padding: 0;
        background: linear-gradient(160deg, #ffffff 0%, #eef6f8 55%, #e6f0f3 100%);
        border: none;
        box-shadow: none;
        overflow: hidden;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.5s ease;
    }

    .main-nav.open {
        transform: translateX(0);
        visibility: visible;
    }

    .mobile-nav-inner {
        display: flex;
        flex-direction: column;
        height: 100%;
        padding: 6.5rem 1.75rem 2rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-nav-eyebrow {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        color: var(--gray-400);
        margin-bottom: 1.25rem;
    }

    .main-nav .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        flex: 1;
    }

    .main-nav .nav-list > li {
        display: block;
        border-bottom: 1px solid rgba(0, 72, 97, 0.08);
        opacity: 0;
        transform: translateX(28px);
    }

    .main-nav.open .nav-list > li {
        animation: mobileNavItemIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .main-nav.open .nav-list > li:nth-child(1) { animation-delay: 0.06s; }
    .main-nav.open .nav-list > li:nth-child(2) { animation-delay: 0.1s; }
    .main-nav.open .nav-list > li:nth-child(3) { animation-delay: 0.14s; }
    .main-nav.open .nav-list > li:nth-child(4) { animation-delay: 0.18s; }
    .main-nav.open .nav-list > li:nth-child(5) { animation-delay: 0.22s; }
    .main-nav.open .nav-list > li:nth-child(6) { animation-delay: 0.26s; }
    .main-nav.open .nav-list > li:nth-child(7) { animation-delay: 0.3s; }
    .main-nav.open .nav-list > li:nth-child(8) { animation-delay: 0.34s; }

    @keyframes mobileNavItemIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .main-nav .nav-list > li > a,
    .main-nav .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-size: 1.35rem;
        font-weight: 500;
        line-height: 1.3;
        padding: 1.15rem 0;
        border-bottom: none;
        white-space: normal;
    }

    .main-nav .nav-list > li > a.is-active,
    .has-dropdown.is-active > .dropdown-toggle {
        color: var(--primary);
        font-weight: 700;
    }

    .has-dropdown.open > .dropdown-toggle .nav-chevron {
        transform: rotate(180deg);
    }

    .nav-chevron {
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        min-width: 0;
        margin: 0;
        padding: 0 0 0 0.5rem;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1), padding 0.35s ease;
    }

    .has-dropdown.open .dropdown-menu {
        max-height: 320px;
        padding-bottom: 0.75rem;
    }

    .dropdown-menu a {
        padding: 0.75rem 0 0.75rem 1rem;
        font-size: 1.05rem;
        border-left: 2px solid rgba(0, 72, 97, 0.15);
    }

    .dropdown-menu a.is-active {
        border-left-color: var(--primary);
        background: transparent;
        font-weight: 600;
    }

    .mobile-nav-footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(0, 72, 97, 0.1);
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.45s ease 0.25s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
    }

    .main-nav.open .mobile-nav-footer {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-nav-cta {
        width: 100%;
        justify-content: center;
    }

    .about-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .about-title {
        font-size: clamp(32px, 7vw, 50px);
        line-height: 1.1;
    }

    .about-content {
        font-size: 18px;
        line-height: 1.5;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-stat-value {
        font-size: clamp(36px, 8vw, 50px);
        line-height: 1.1;
    }

    .about-stat-label {
        font-size: 18px;
        line-height: 1.4;
    }

    .about-section {
        min-height: auto;
        padding: 3.5rem 0;
    }

    .addictions-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .addictions-title {
        font-size: clamp(32px, 7vw, 50px);
        line-height: 1.1;
    }

    .addictions-intro {
        font-size: 18px;
        line-height: 1.5;
    }

    .addictions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .addiction-card-media {
        height: 190px;
    }

    .addiction-card-content {
        padding: 1.35rem 1.35rem 1.5rem;
    }

    .addiction-card-title {
        font-size: 1.35rem;
    }

    .addictions-section {
        padding: 3.5rem 0;
    }

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

    .trust-section {
        padding: 3.5rem 0;
    }

    .trust-header {
        margin-bottom: 2.5rem;
    }

    .trust-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .trust-visual {
        order: -1;
    }

    .trust-doctor-image {
        max-width: 260px;
        margin: 0 auto;
    }

    .trust-column {
        gap: 2rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .centers-section {
        padding: 3.5rem 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .section {
        padding: 3.5rem 0;
    }

    .hero-split {
        flex-direction: column;
        height: auto;
        min-height: auto;
        gap: 0;
        text-align: center;
    }

    .hero-left,
    .hero-right {
        flex: none;
        width: 100%;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100dvh;
        min-height: 100svh;
        padding: 5.5rem 1.25rem 2.5rem;
        box-sizing: border-box;
    }

    .hero-left-inner {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-headline {
        font-size: clamp(1.85rem, 7.5vw, 2.75rem);
        line-height: 1.08;
        margin-bottom: 1.25rem;
    }

    .hero-tagline {
        justify-content: center;
        margin-inline: auto;
        margin-bottom: 2rem;
        max-width: 20rem;
        line-height: 1.45;
    }

    .btn-hero-cta {
        margin-inline: auto;
    }

    .hero-right {
        height: 50vh;
        min-height: 320px;
    }
}

@media (max-width: 480px) {
    .btn-lg {
        width: 100%;
    }
}

/* Inner pages */
body.page-inner main {
    padding-top: 96px;
}

.page-hero {
    background: linear-gradient(135deg, #004861 0%, #003648 100%);
    color: var(--white);
    padding: 4rem 0 5rem;
}

.page-hero-compact {
    padding: 3rem 0 4rem;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.page-hero-compact .page-hero-grid {
    grid-template-columns: 1fr;
}

.page-hero-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.page-hero-title {
    font-family: var(--font-main);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.page-hero-title strong {
    font-weight: 400;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.65;
    opacity: 0.92;
    max-width: 540px;
    margin-bottom: 2rem;
}

.page-hero-cta {
    margin-top: 0.5rem;
}

.page-hero-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.page-hero-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.inner-section {
    padding: 5rem 0;
}

.inner-section-light {
    background: var(--white);
}

.inner-section-muted {
    background: var(--gray-50);
}

.inner-section-primary {
    background: #004861;
    color: var(--white);
}

.inner-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
}

.inner-title {
    font-family: var(--font-main);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.inner-title-center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.inner-title-light {
    color: var(--white);
}

.inner-subtitle-center {
    text-align: center;
    max-width: 640px;
    margin: -0.5rem auto 3rem;
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.6;
}

.inner-section-primary .inner-subtitle-center {
    color: rgba(255, 255, 255, 0.85);
}

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

.inner-centered-narrow {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.inner-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.prose-center {
    text-align: center;
}

.inner-highlight-card {
    background: var(--gray-50);
    border-left: 4px solid var(--primary);
    padding: 2rem;
    border-radius: var(--radius);
}

.inner-highlight-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.35;
}

.inner-cards-grid {
    display: grid;
    gap: 1.5rem;
}

.inner-cards-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.inner-link-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
    padding: 1.75rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    color: var(--primary);
    transition: all var(--transition);
}

.inner-link-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.inner-link-card h4 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.inner-link-card span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.inner-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.inner-step {
    padding: 2rem 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-top: 3px solid var(--primary);
}

.inner-step-num {
    display: block;
    font-family: var(--font-numeric);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    opacity: 0.35;
    margin-bottom: 1rem;
    line-height: 1;
}

.inner-step h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.inner-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-600);
}

.inner-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.inner-trust-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.inner-trust-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.inner-trust-item p {
    font-size: 0.9rem;
    line-height: 1.55;
    opacity: 0.88;
}

.inner-benefits-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inner-benefit-card {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.inner-benefit-card h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.inner-benefit-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--gray-600);
}

.inner-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.inner-benefit-col {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.inner-benefit-col h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.inner-benefit-col p {
    color: var(--gray-600);
    line-height: 1.6;
}

.inner-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.inner-timeline-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.inner-timeline-item span {
    display: block;
    font-family: var(--font-numeric);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.inner-timeline-item p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--gray-600);
}

.cta-band {
    background: #004861;
    color: var(--white);
    padding: 4rem 0;
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-band-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
    color: var(--white);
}

.cta-band-text {
    opacity: 0.9;
    max-width: 520px;
    line-height: 1.6;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
    flex-shrink: 0;
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
}

/* Contact */
.contact-section {
    padding: 4rem 0 6rem;
    background: var(--gray-50);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrap,
.contact-info-wrap {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.contact-form-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-form-intro {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 72, 97, 0.12);
}

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

.form-error {
    display: block;
    color: #c0392b;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.contact-detail-item {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
}

.contact-location-card h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.contact-location-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    display: block;
}

/* Blog */
.blog-section {
    padding: 4rem 0 6rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.blog-card-body {
    padding: 2rem;
}

.blog-date {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
}

.blog-card-title {
    font-size: 1.25rem;
    margin: 0.75rem 0;
    line-height: 1.35;
}

.blog-card-title a {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.blog-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
}

.blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--gray-500);
    padding: 3rem;
}

.blog-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.blog-article-header {
    background: var(--gray-50);
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.blog-article-header-inner {
    max-width: 760px;
}

.blog-back-link {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
}

.blog-article-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--primary);
    line-height: 1.2;
    margin: 0.75rem 0;
}

.blog-article-excerpt {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.blog-article-content {
    padding: 3rem 0 2rem;
    max-width: 720px;
}

.blog-article-content.prose p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
    color: var(--gray-700);
}

@media (max-width: 1024px) {
    .page-hero-grid,
    .inner-split,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .inner-cards-grid-4,
    .inner-steps,
    .inner-trust-grid,
    .inner-benefits-grid,
    .inner-timeline,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero-image {
        height: 300px;
    }

    .cta-band-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    body.page-inner main {
        padding-top: 96px;
    }

    .page-hero {
        padding: 2.5rem 0 3rem;
    }

    .inner-section {
        padding: 3.5rem 0;
    }

    .inner-cards-grid-4,
    .inner-steps,
    .inner-trust-grid,
    .inner-benefits-grid,
    .inner-timeline,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form-wrap,
    .contact-info-wrap {
        padding: 1.5rem;
    }
}

/* ── Animations ─────────────────────────────────────────────── */

@keyframes headerEnter {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroImageReveal {
    from {
        opacity: 0;
        transform: scale(1.06);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes faqReveal {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .site-header {
        animation: headerEnter 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .hero-animate {
        opacity: 0;
        animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: var(--hero-delay, 0ms);
    }

    .hero-animate-image {
        animation-name: heroImageReveal;
        animation-duration: 1.1s;
    }

    .animate-on-scroll {
        opacity: 0;
        will-change: opacity, transform;
        transition:
            opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: var(--animate-delay, 0ms);
    }

    .animate-up {
        transform: translateY(48px);
    }

    .animate-left {
        transform: translateX(-48px);
    }

    .animate-right {
        transform: translateX(48px);
    }

    .animate-scale {
        transform: scale(0.92) translateY(24px);
    }

    .animate-on-scroll.is-visible {
        opacity: 1;
        transform: none;
        will-change: auto;
    }

    /* Card lift on scroll-in */
    .addiction-card.is-visible,
    .blog-card.is-visible,
    .inner-link-card.is-visible,
    .testimonial-card.is-visible {
        transition:
            opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.35s ease;
    }

    .addiction-card.is-visible:hover,
    .blog-card.is-visible:hover,
    .inner-link-card.is-visible:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

    /* Trust items subtle icon pulse */
    .trust-item.is-visible .trust-item-icon svg {
        animation: iconPop 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: calc(var(--animate-delay, 0ms) + 200ms);
    }

    @keyframes iconPop {
        0%   { transform: scale(0.6); opacity: 0; }
        70%  { transform: scale(1.08); }
        100% { transform: scale(1); opacity: 1; }
    }

    /* FAQ accordion smooth open */
    .faq-item.is-visible .faq-answer {
        animation: faqReveal 0.45s ease both;
    }

    details.faq-item[open] .faq-answer {
        animation: faqReveal 0.35s ease both;
    }

    /* CTA band shimmer line */
    .cta-box.is-visible::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            105deg,
            transparent 40%,
            rgba(255, 255, 255, 0.07) 50%,
            transparent 60%
        );
        animation: shimmer 2.5s ease-in-out 0.6s both;
        pointer-events: none;
    }

    .cta-section .cta-box {
        position: relative;
        overflow: hidden;
    }

    @keyframes shimmer {
        from { transform: translateX(-100%); }
        to   { transform: translateX(100%); }
    }

    /* Location map fade */
    .location-map.is-visible iframe,
    .contact-map.is-visible iframe {
        animation: heroImageReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
        animation-delay: calc(var(--animate-delay, 0ms) + 150ms);
    }
}

}

/* Booking modal */
body.booking-open {
    overflow: hidden;
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.booking-modal[hidden] {
    display: none !important;
}

.booking-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 36, 48, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.booking-modal-dialog {
    position: relative;
    width: min(100%, 560px);
    max-height: min(92vh, 720px);
    overflow: auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0, 48, 97, 0.22);
    padding: 2rem 2rem 1.75rem;
    animation: bookingModalIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes bookingModalIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.booking-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-600);
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.booking-modal-close:hover {
    background: var(--primary-pale);
    color: var(--primary);
}

.booking-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 0.35rem;
}

.booking-modal-title {
    font-size: 1.75rem;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.booking-modal-subtitle {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 0.35rem;
}

.booking-hours {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.booking-steps {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--gray-200);
}

.booking-step-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--gray-400);
    white-space: nowrap;
}

.booking-step-indicator span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-600);
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.booking-step-indicator.is-active {
    color: var(--primary);
    font-weight: 600;
}

.booking-step-indicator.is-active span,
.booking-step-indicator.is-done span {
    background: var(--primary);
    color: var(--white);
}

.booking-step-line {
    flex: 1;
    height: 2px;
    background: var(--gray-200);
    min-width: 12px;
}

.booking-panel-head {
    margin-bottom: 1.25rem;
}

.booking-panel-head h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.booking-month-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.75rem;
}

.booking-month-label {
    font-weight: 600;
    color: var(--primary);
}

.booking-month-btn,
.booking-back-btn {
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--primary);
    border-radius: 8px;
    padding: 0.4rem 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    transition: border-color var(--transition), background var(--transition);
}

.booking-month-btn:hover,
.booking-back-btn:hover {
    border-color: var(--primary);
    background: var(--primary-pale);
}

.booking-back-btn {
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.65rem;
}

.booking-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.booking-weekdays span {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
}

.booking-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.35rem;
}

.booking-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: var(--gray-400);
    font-size: 0.9rem;
    cursor: default;
}

.booking-day.is-empty {
    pointer-events: none;
}

.booking-day.is-available {
    background: var(--primary-pale);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.booking-day.is-available:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 72, 97, 0.2);
}

.booking-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}

.booking-slot {
    padding: 0.85rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    background: var(--white);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.booking-slot:hover {
    border-color: var(--primary);
    background: var(--primary-pale);
    transform: translateY(-1px);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.booking-field input,
.booking-field textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font: inherit;
    color: var(--gray-800);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.booking-field input:focus,
.booking-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 72, 97, 0.1);
}

.booking-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.booking-form-error {
    color: #b42318;
    font-size: 0.875rem;
    background: #fef3f2;
    border: 1px solid #fecdca;
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
}

.booking-loading,
.booking-empty {
    text-align: center;
    color: var(--gray-400);
    padding: 2rem 1rem;
    font-size: 0.95rem;
}

.booking-selected-date,
.booking-selected-slot {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.booking-panel-success {
    text-align: center;
    padding: 1.5rem 0.5rem;
}

.booking-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-pale);
    color: var(--primary);
    margin-bottom: 1rem;
}

.booking-panel-success h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.booking-panel-success p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.booking-submit {
    width: 100%;
}

@media (max-width: 600px) {
    .booking-modal-dialog {
        padding: 1.5rem 1.25rem 1.25rem;
        border-radius: 16px;
    }

    .booking-steps {
        font-size: 0.7rem;
    }

    .booking-step-indicator span {
        width: 22px;
        height: 22px;
    }

    .booking-slots {
        grid-template-columns: 1fr;
    }

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

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}
