/* ============================================
   Harmont Tandhälsa – Main Stylesheet
   Design copy from veneer.se
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    /* Colors – matching veneer.se Divi theme */
    --color-bg:             #ffffff;
    --color-bg-dark:        #f5f5f5;
    --color-bg-section:     #f8f8f8;
    --color-bg-card:        #ffffff;
    --color-bg-card-hover:  #fafafa;
    --color-bg-footer:      #4f6e6e;

    --color-primary:        #d3a96e;     /* Gold accent – veneer.se */
    --color-primary-light:  #ddb97e;
    --color-primary-dark:   #b89050;
    --color-secondary:      #406566;     /* Teal – veneer.se */

    --color-text:           #4c4c4c;     /* Body text – veneer.se */
    --color-text-muted:     #666666;
    --color-text-light:     #555555;
    --color-heading:        #222222;     /* Heading color – veneer.se */

    --color-border:         #e0e0e0;
    --color-border-light:   #eeeeee;

    --color-success:        #4caf50;
    --color-error:          #f44336;
    --color-warning:        #ff9800;

    /* Typography – Poppins matching veneer.se */
    --font-heading:         'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body:            'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding:      60px 0;
    --section-padding-sm:   36px 0;
    --container-width:      1200px;
    --container-padding:    0 20px;

    /* Border radius */
    --radius-sm:            4px;
    --radius-md:            8px;
    --radius-lg:            16px;
    --radius-xl:            24px;

    /* Shadows */
    --shadow-card:          0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover:         0 8px 40px rgba(0,0,0,0.12);

    /* Transitions */
    --transition:           0.3s ease;
    --transition-slow:      0.5s ease;

    /* Header height */
    --header-height:        80px;
    --topbar-height:        40px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7em;
    font-weight: 300;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-heading);
}

h1 { font-size: clamp(2rem, 1.6rem + 2vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 1.3rem + 1.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 0.95rem + 0.8vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p {
    margin-bottom: 1em;
    color: var(--color-text-muted);
}

/* ---- Container ---- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem 3rem;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 2rem;
    cursor: pointer;
    transition: background-color 300ms ease, border-color 300ms ease, color 300ms ease;
    text-decoration: none;
    line-height: 1;
}

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

.btn-primary:hover {
    background: var(--color-secondary);
    color: #ffffff;
    border-color: var(--color-secondary);
}

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

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

.btn-secondary {
    background: var(--color-secondary);
    color: #ffffff;
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background: #375858;
    border-color: #375858;
    color: #ffffff;
}

.btn-text {
    background: transparent;
    color: var(--color-text-muted);
    padding: 14px 16px;
}

.btn-text:hover {
    color: var(--color-text);
}

.btn-sm {
    padding: 0.5rem 2rem;
    font-size: 13px;
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 15px;
}

/* ---- Topbar ---- */
.topbar {
    background: var(--color-bg-dark);
    height: var(--topbar-height);
    border-bottom: 1px solid var(--color-border);
    font-size: 13px;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

.topbar-contact a {
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-contact a:hover {
    color: var(--color-primary);
}

.topbar-divider {
    color: var(--color-border);
}

.topbar-hours {
    color: var(--color-text-muted);
}

.topbar-social {
    display: flex;
    gap: 14px;
}

.topbar-social a {
    color: var(--color-text-muted);
    font-size: 14px;
}

.topbar-social a:hover {
    color: var(--color-primary);
}

/* ---- Header ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: var(--header-height);
    transition: all var(--transition);
}

.site-header.scrolled {
    height: 65px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo img {
    height: 45px;
    width: auto;
    transition: height var(--transition);
}

.site-header.scrolled .logo img {
    height: 35px;
}

/* Nav Bar (separate row below header) */
.nav-bar {
    background: #ffffff;
}

.nav-bar .nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.nav-bar .nav-item a {
    display: block;
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 16px 8px;
    transition: color var(--transition);
}

.nav-bar .nav-item a:hover,
.nav-bar .nav-item.active a {
    color: var(--color-primary);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language switcher with flag dropdown */
.lang-switcher {
    position: relative;
    cursor: pointer;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-heading);
    padding: 6px 10px;
    transition: all var(--transition);
}

.lang-current:hover {
    color: var(--color-primary);
}

.lang-current .fa-chevron-down {
    font-size: 10px;
    color: var(--color-text-muted);
    transition: transform var(--transition);
}

.lang-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: all 0.2s;
    min-width: 100%;
    z-index: 100;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher:hover .lang-current .fa-chevron-down {
    transform: rotate(180deg);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-heading);
    transition: background var(--transition);
    white-space: nowrap;
}

.lang-option:hover {
    background: var(--color-bg-alt);
}

.btn-book {
    padding: 0.6rem 2rem;
    font-size: 13px;
    font-weight: 600;
    border-radius: 2rem;
    letter-spacing: 0.5px;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-content {
    text-align: center;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-list a {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-text);
}

.mobile-nav-list a:hover {
    color: var(--color-primary);
}

.mobile-lang-switcher {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.mobile-lang-switcher .lang-btn {
    padding: 8px 20px;
    font-size: 14px;
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero > .container {
    width: 100%;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.25) 50%,
        rgba(0,0,0,0.55) 100%
    );
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 20px;
    color: #ffffff;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.hero h1 {
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}

.hero-text {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-buttons .btn-outline {
    color: #ffffff;
    border-color: #ffffff;
}

.hero-buttons .btn-outline:hover {
    background: #ffffff;
    color: var(--color-heading);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 24px;
    color: var(--color-primary);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Hero for sub-pages (smaller) */
.hero-sub {
    min-height: 40vh;
    padding: var(--section-padding);
    background: var(--color-bg-section);
    position: relative;
    display: flex;
    align-items: center;
}

.hero-sub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(201,169,110,0.05), transparent 60%);
}

.hero-sub .hero-content {
    max-width: 700px;
    text-align: left;
    margin: 0;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-sub h1 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.hero-sub h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    margin-bottom: 16px;
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
    padding: 12px 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}
.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    margin: 0 auto;
    max-width: var(--container-width);
    padding-left: 20px;
    padding-right: 20px;
}
.breadcrumbs li::after {
    content: '/';
    margin: 0 8px;
    color: var(--color-text-muted);
    opacity: 0.5;
}
.breadcrumbs li:last-child::after {
    display: none;
}
.breadcrumbs a {
    color: var(--color-secondary);
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
.breadcrumbs .breadcrumb-current {
    color: var(--color-text);
}

/* Hero visual – immersive with bg image & teal overlay */
.hero-visual {
    min-height: 50vh;
    padding: 80px 0;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-visual.hero-compact {
    min-height: 30vh;
    padding: 50px 0;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(64, 101, 102, 0.82);
    z-index: 1;
}

.hero-visual .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-visual .hero-content {
    max-width: 700px;
    text-align: left;
    margin: 0;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-visual .hero-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.hero-visual h1 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.2;
}

.hero-visual .hero-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    font-weight: 300;
}

.hero-visual .hero-languages {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.hero-visual .hero-languages i {
    font-size: 22px;
    color: var(--color-primary);
}

/* ---- Sections ---- */
.section {
    padding: var(--section-padding);
    position: relative;
}

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

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header h3 {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 17px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* Decorative line */
.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--color-primary);
    margin: 24px auto 0;
}

/* ---- Info Bar (under hero) ---- */
.info-bar {
    background: var(--color-bg-section);
    border-bottom: 1px solid var(--color-border);
    padding: 20px 0;
}

.info-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.info-bar p {
    color: var(--color-primary);
    font-weight: 500;
    margin: 0;
    font-size: 15px;
}

.info-bar-contact {
    display: flex;
    gap: 40px;
    padding: 24px 0;
}

.info-bar-item h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.info-bar-item p,
.info-bar-item a {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
}

/* ---- Content Columns ---- */
.content-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-cols.content-cols-top {
    align-items: start;
}

.content-cols.reverse {
    direction: rtl;
}

.content-cols.reverse > * {
    direction: ltr;
}

.content-text h2 {
    margin-bottom: 16px;
}

.content-text h3 {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 17px;
    margin-bottom: 24px;
}

.content-text p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.content-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-height: 450px;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.content-image:hover img {
    transform: scale(1.03);
}

.image-caption {
    margin: 0;
    position: relative;
}

.image-caption img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.image-caption figcaption {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Two-col text with bullet list */
.content-text ul {
    margin: 16px 0;
    padding-left: 0;
}

.content-text ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--color-text-muted);
}

.content-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* ---- Reviews ---- */
.reviews-badges {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.review-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.review-badge-label {
    font-size: 14px;
    color: var(--color-text-muted);
}

.review-stars {
    display: flex;
    gap: 3px;
    color: #ffc107;
    font-size: 18px;
}

.review-rating {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    font-family: var(--font-heading);
}

/* ---- Treatment Cards Grid ---- */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.treatment-card {
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
}

.treatment-card:hover {
    transform: translateY(-3px);
}

.treatment-card-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.treatment-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter var(--transition);
}

.treatment-card:hover .treatment-card-image img {
    filter: grayscale(0%);
}

.treatment-card-body {
    padding: 0 10px;
}

.treatment-card-body h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.treatment-card-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-heading);
}

.treatment-card-body p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.treatment-card-body .btn {
    padding: 8px 20px;
}

.treatment-card-body .read-more {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-heading);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.treatment-card-body .read-more:hover {
    color: var(--color-primary);
}

/* Invisalign special badge */
.treatment-card .badge-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
}

.treatment-card .badge-overlay img {
    width: 60px;
    height: auto;
}

/* ---- Staff Cards ---- */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.staff-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    display: block;
    text-decoration: none;
}

.staff-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.staff-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.staff-card-info h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.staff-card-info p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* ---- Process Steps ---- */
.process-header {
    max-width: 700px;
    margin-bottom: 50px;
}

.process-header h2 {
    margin-bottom: 16px;
}

.process-intro {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 700px;
}

/* ---- Content Media (video/image in cols) ---- */
.content-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-height: 400px;
}

.content-media img,
.content-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.content-video {
    max-height: 500px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.process-step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.process-step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-secondary);
}

.process-step-content p {
    font-size: 15px;
    color: var(--color-text-muted);
    margin: 0;
}

/* ---- Video Embed ---- */
.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.video-wrapper video {
    width: 100%;
    display: block;
}

/* ---- Contact Page ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info-box {
    padding: 20px 0;
}

.contact-info-box h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.contact-info-box h4 i {
    color: var(--color-primary);
    margin-right: 8px;
}

.contact-info-box p,
.contact-info-box a:not(.btn) {
    font-size: 17px;
    color: var(--color-text);
    display: block;
    margin-bottom: 4px;
}

.contact-info-box a:not(.btn):hover {
    color: var(--color-primary);
}

/* Callback form */
.callback-form {
    background: #f5f5f5;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: none;
}

.callback-form h3 {
    margin-bottom: 8px;
}

.callback-form > p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

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

.form-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--radius-md);
    font-size: 14px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid var(--color-success);
    color: var(--color-success);
}

.form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid var(--color-error);
    color: var(--color-error);
}

/* ---- Hours Box ---- */
.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.hours-box {
    background: var(--color-bg-card);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.hours-box h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    color: var(--color-text-light);
}

.hours-row span:last-child {
    color: var(--color-text-muted);
}

/* ---- Booking Page ---- */
.booking-embed {
    min-height: 600px;
}

.booking-embed iframe {
    width: 100%;
    height: 800px;
    border: none;
}

/* ---- Staff Detail Page ---- */
.staff-detail {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.staff-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.staff-detail-image img {
    width: 100%;
    height: auto;
}

.staff-detail-content h2 {
    margin-bottom: 8px;
}

.staff-detail-content .staff-title {
    font-size: 16px;
    color: var(--color-primary);
    font-style: italic;
    margin-bottom: 30px;
}

.staff-detail-section {
    margin-bottom: 40px;
}

.staff-detail-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

/* ---- Parallax Divider ---- */
.parallax-divider {
    position: relative;
    height: 350px;
    background-attachment: fixed;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
    .parallax-divider {
        height: 200px;
        background-attachment: scroll;
    }
}

/* ---- CTA Section ---- */
.cta-section {
    background: var(--color-bg-section);
    padding: var(--section-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201,169,110,0.05), transparent 50%);
}

.cta-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content h3 {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 17px;
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--color-bg-footer);
    padding: 80px 0 40px;
    border-top: none;
    color: #d6e0e0;
}

.site-footer a {
    color: #d6e0e0;
}

.site-footer a:hover {
    color: var(--color-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-contact-item {
    margin-bottom: 12px;
}

.footer-contact-item .footer-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a8bfbf;
    margin-bottom: 2px;
}

.footer-contact-item a {
    color: #d6e0e0;
    font-size: 15px;
}

.footer-contact-item a:hover {
    color: var(--color-primary);
}

.footer-hours .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    font-size: 13px;
}

.footer-hours .hours-row:last-child {
    border-bottom: none;
}

.footer-hours .hours-row span:first-child {
    color: #d6e0e0;
}

.footer-hours .hours-row span:last-child {
    color: #a8bfbf;
}

.footer-address {
    color: #a8bfbf;
    font-size: 15px;
    line-height: 1.8;
}

/* Newsletter form */
.footer-newsletter-text {
    font-size: 14px;
    color: #a8bfbf;
    margin-bottom: 12px;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    color: #ffffff;
    font-size: 14px;
    font-family: var(--font-body);
}

.newsletter-input-group input::placeholder {
    color: #a8bfbf;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.newsletter-input-group .btn {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 12px 20px;
    font-size: 12px;
    white-space: nowrap;
}

.newsletter-message {
    margin-top: 8px;
    font-size: 13px;
}

.newsletter-message.success {
    color: var(--color-success);
}

.newsletter-message.error {
    color: var(--color-error);
}

/* Footer nav links */
.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-nav a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #d6e0e0;
    transition: color var(--transition);
}

.footer-nav a:hover,
.footer-nav a.active {
    color: var(--color-primary);
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-brand-name {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-company-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
    color: #b8cfcf;
}

.footer-company-info a {
    color: #b8cfcf;
    font-size: 13px;
}

.footer-company-info a:hover {
    color: var(--color-primary);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    transition: all var(--transition);
}

.footer-social a:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-copyright {
    text-align: center;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 10px;
}

.footer-copyright p {
    font-size: 13px;
    color: #a8bfbf;
    margin: 0;
}

.cookie-settings-link {
    font-size: 12px;
    color: #a8bfbf;
    text-decoration: underline;
}

/* ---- Cookie Consent ---- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 20px;
}

.cookie-consent h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.cookie-consent > .cookie-consent-inner > p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--color-primary);
    width: 18px;
    height: 18px;
}

.cookie-option-text strong {
    display: block;
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 2px;
}

.cookie-option-text span {
    font-size: 13px;
    color: var(--color-text-muted);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    flex: 1;
    min-width: 140px;
}

/* ---- 404 Page ---- */
.page-404 {
    text-align: center;
    padding: 120px 20px;
}

.page-404 h1 {
    font-size: 100px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.page-404 h2 {
    margin-bottom: 16px;
}

.page-404 p {
    margin-bottom: 30px;
}

/* ---- Partners ---- */
.partners-row {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.partner-logo {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--transition);
    filter: grayscale(100%);
}

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

/* ---- About page staff bios ---- */
.staff-bios {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.staff-bio {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: start;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--color-border);
}

.staff-bio:nth-child(even) {
    direction: rtl;
}

.staff-bio:nth-child(even) > * {
    direction: ltr;
}

.staff-bio-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.staff-bio-image img {
    width: 100%;
    height: auto;
}

.staff-bio-content h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.staff-bio-content .staff-title {
    font-size: 15px;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-style: italic;
}

/* ---- Staff Profiles (Om oss grid) ---- */
.staff-profiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.staff-profile {
    text-align: left;
}

.staff-profile-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 4/5;
}

.staff-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-profile h3 {
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--color-heading);
}

.staff-profile-title {
    font-size: 14px;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-style: italic;
}

.staff-profile-bio {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.staff-profile-bio p {
    margin-bottom: 12px;
}

/* ---- Hero Sidebar (contact & hours overlay) ---- */
.hero-sidebar {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255,255,255,0.95);
    border-radius: var(--radius-lg);
    padding: 30px;
    max-width: 280px;
    box-shadow: var(--shadow-card);
}

.hero-sidebar-block {
    margin-bottom: 20px;
}

.hero-sidebar-block:last-child {
    margin-bottom: 0;
}

.hero-sidebar-block h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 8px;
}

.hero-sidebar-block p {
    font-size: 13px;
    color: var(--color-text);
    margin: 0 0 4px;
    line-height: 1.6;
}

.hero-sidebar-block a {
    color: var(--color-primary);
    font-weight: 500;
}

/* ---- Urgent / Akut Bar ---- */
/* ---- Intro Two-Column (image+contact left, text right) ---- */
.intro-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.intro-left .content-image {
    margin-bottom: 24px;
}

.akut-line {
    font-size: 15px;
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.akut-line strong {
    font-weight: 700;
    color: var(--color-heading);
    font-style: italic;
}

.intro-contact-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.intro-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.intro-contact-item > i {
    font-size: 20px;
    color: var(--color-primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.intro-contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 6px;
}

.intro-contact-item p {
    font-size: 16px;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.7;
}

.intro-contact-item a {
    color: var(--color-primary);
    font-weight: 500;
}

.intro-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.intro-heading {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.2;
    margin-bottom: 16px;
}

.intro-subheading {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.6;
    margin-bottom: 24px;
}

.intro-body p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ---- Section Title Variants ---- */
.section-header-left {
    max-width: 900px;
    margin-bottom: 40px;
}

.section-title-lg {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-heading);
    margin-bottom: 12px;
    font-weight: 700;
}

.section-subtitle-h3 {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: var(--color-heading);
    margin-bottom: 12px;
}

.section-lead {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 17px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.section-subtitle-beauty {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-intro-text {
    font-size: 16px;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ---- Treatments Subsections ---- */
.treatments-subsection {
    margin-bottom: 40px;
}

.treatments-subsection-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-heading);
}

/* ---- Partners Grid ---- */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.partner-box {
    background: transparent;
    border-radius: 0;
    padding: 40px;
    border: none;
    text-align: center;
}

.partner-box .partner-logo {
    height: 120px;
    width: auto;
    margin: 0 auto 20px;
    display: block;
    filter: none;
    opacity: 1;
}

.partner-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--color-heading);
}

.partner-box p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ---- Contact page compact hours ---- */
.hours-compact .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--color-border-light);
}

.hours-compact .hours-row:last-child {
    border-bottom: none;
}

/* ---- Utility Classes ---- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-gold { color: var(--color-primary); }
.text-muted { color: var(--color-text-muted); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }
.mt-3 { margin-top: 48px; }
.mt-4 { margin-top: 64px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 16px; }
.mb-2 { margin-bottom: 32px; }
.mb-3 { margin-bottom: 48px; }

.hidden { display: none !important; }

/* ---- Animations (scroll reveal) ---- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 42px 0;
    }

    .hero-sidebar {
        display: none;
    }

    .content-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-cols.reverse {
        direction: ltr;
    }

    .staff-detail {
        grid-template-columns: 1fr;
    }

    .staff-detail-image {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 30px 0;
        --header-height: 65px;
    }

    .topbar {
        display: none;
    }

    .nav-bar {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .lang-switcher {
        display: none;
    }

    .btn-book {
        display: none;
    }

    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

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

    .staff-profiles {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        gap: 20px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-copyright {
        text-align: center;
    }

    .staff-bio {
        grid-template-columns: 1fr;
    }

    .staff-bio:nth-child(even) {
        direction: ltr;
    }

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

    .process-step {
        gap: 16px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
}

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

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

    .staff-profiles {
        grid-template-columns: 1fr;
    }

    .reviews-badges {
        flex-direction: column;
        gap: 24px;
    }

    .info-bar-contact {
        flex-direction: column;
        gap: 16px;
    }

    .callback-form {
        padding: 24px;
    }
}

/* ---- Admin styles (separate file would be better but inline for simplicity) ---- */
/* Loaded only in admin pages via conditional */
