/* ==========================================================================
   Design System & Color Variables
   ========================================================================== */
:root {
    /* Theme Colors (Medical, Modern, Trustworthy) */
    --primary: #1e4f66;        /* Deep Medical Teal */
    --primary-light: #2c6e8f;  /* Lighter Teal for hovers */
    --primary-dark: #123444;   /* Dark Navy Slate for contrast */
    --secondary: #0d9488;      /* Vibrant Mint Cyan */
    --secondary-light: #14b8a6;/* Bright Cyan for highlights */
    --accent: #0284c7;         /* Clear Sky Blue */
    
    /* Neutrals */
    --bg-main: #f4f8fa;        /* Soft ice blue background */
    --bg-card: #ffffff;        /* Pure white cards */
    --text-main: #1e293b;      /* Slate 800 - high contrast, readable */
    --text-muted: #64748b;     /* Slate 500 for secondary text */
    --border-color: #e2e8f0;   /* Light gray borders */
    
    /* Status Colors */
    --open-bg: #dcfce7;        /* Soft green */
    --open-text: #15803d;      /* Dark green text */
    --open-dot: #22c55e;       /* Bright green dot */
    --closed-bg: #fee2e2;      /* Soft red */
    --closed-text: #b91c1c;     /* Dark red text */
    --closed-dot: #ef4444;     /* Bright red dot */
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing (Fluid using clamp) */
    --space-xs: clamp(0.5rem, 1vw, 0.75rem);
    --space-sm: clamp(0.875rem, 1.5vw, 1.25rem);
    --space-md: clamp(1.5rem, 3vw, 2.5rem);
    --space-lg: clamp(2.5rem, 5vw, 4rem);
    --space-xl: clamp(4rem, 8vw, 6rem);
    
    /* Layout Constants */
    --container-width: 1200px;
    --header-height: 85px;
    
    /* Decoration & Transitions */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.0625rem; /* ~17px for excellent readability */
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.025em;
    margin-bottom: var(--space-sm);
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    margin-bottom: var(--space-sm);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    margin-bottom: var(--space-xs);
}

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

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

button {
    font-family: inherit;
}

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

/* ==========================================================================
   Reusable Utilities & Containers
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
}

.section-padding {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
}

/* Accent Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--secondary);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--secondary-light);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--primary-light);
    color: #ffffff;
    transform: translateY(-2px);
}

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

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

/* Accent Links */
.accent-link {
    color: var(--secondary);
    font-weight: 600;
    border-bottom: 2px solid transparent;
}
.accent-link:hover {
    color: var(--secondary-light);
    border-bottom-color: var(--secondary-light);
}

/* Cards style */
.card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.header-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Brand */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Desktop navigation links */
.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: clamp(1rem, 2vw, 2rem);
}

.desktop-nav a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 6px 0;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--secondary);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* ==========================================================================
   Real-Time Opening Hours Status Badge
   ========================================================================== */
.live-status-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.status-badge-open {
    background-color: var(--open-bg);
    color: var(--open-text);
}

.status-badge-closed {
    background-color: var(--closed-bg);
    color: var(--closed-text);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.status-badge-open .status-dot {
    background-color: var(--open-dot);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse-green 2s infinite;
}

.status-badge-closed .status-dot {
    background-color: var(--closed-dot);
}

.status-subtext {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 500;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* ==========================================================================
   Language Selector
   ========================================================================== */
.lang-switcher {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
}

.lang-btn {
    color: var(--text-muted);
    padding: 4px 6px;
    border-radius: 4px;
}

.lang-btn.active {
    color: var(--primary);
    background-color: rgba(30, 79, 102, 0.1);
}

.lang-separator {
    color: var(--border-color);
    margin: 0 2px;
}

/* ==========================================================================
   Mobile Drawer Navigation Toggler
   ========================================================================== */
.mobile-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Drawer CSS */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-card);
    z-index: 99;
    box-shadow: var(--shadow-lg);
    padding: 100px var(--space-sm) var(--space-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav a {
    color: var(--text-main);
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 8px 12px;
    display: block;
    border-radius: var(--radius-sm);
}

.mobile-nav a.active,
.mobile-nav a:hover {
    background-color: rgba(13, 148, 136, 0.1);
    color: var(--secondary);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

body.drawer-open {
    overflow: hidden;
}

/* ==========================================================================
   Main Content Layout
   ========================================================================== */
.main-content {
    flex: 1 0 auto;
}

/* ==========================================================================
   Homepage / Index Styling
   ========================================================================== */

/* Hero Banner */
.hero-section {
    position: relative;
    height: clamp(400px, 60vh, 580px);
    background-image: url('../images/ophthalmologist-amager.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-bottom: var(--space-md);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 79, 102, 0.9) 20%, rgba(13, 148, 136, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-content h1 {
    color: #ffffff;
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.625rem);
    color: var(--secondary-light);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: var(--space-sm);
}

.hero-ctas .btn {
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

/* Welcome Intro text section */
.intro-section {
    text-align: center;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
}

.intro-text-1 {
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    color: var(--primary);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: var(--space-sm);
    font-family: var(--font-heading);
}

.intro-text-2 {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* Homepage Spots Grid */
.spots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.spot-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
}

.spot-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-light);
}

.spot-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(30, 79, 102, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.spot-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.spot-card h3 {
    color: var(--primary-dark);
    margin-bottom: var(--space-xs);
    font-size: 1.35rem;
}

.spot-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.spot-card strong {
    color: var(--text-main);
}

.spot-phone-link {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 700;
}

.spot-phone-link:hover {
    color: var(--secondary);
}

.spot-hours-list {
    list-style: none;
    margin-top: 8px;
    font-size: 0.95rem;
}

.spot-directions-links {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* ==========================================================================
   Doctor Page Styling
   ========================================================================== */
.doctor-profile-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--space-md);
    align-items: start;
    margin-bottom: var(--space-lg);
}

.doctor-image-card {
    background-color: var(--bg-card);
    padding: 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.doctor-img {
    width: 100%;
    border-radius: var(--radius-sm);
    display: block;
}

.doctor-info-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.doctor-info-card h2 {
    color: var(--primary);
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    margin-bottom: var(--space-xs);
    border-bottom: 2px solid rgba(13, 148, 136, 0.1);
    padding-bottom: 12px;
}

.qualification-list {
    list-style: none;
    margin-bottom: var(--space-sm);
}

.qualification-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.qualification-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

.membership-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.membership-list li {
    position: relative;
    padding-left: 24px;
    font-weight: 500;
}

.membership-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary-light);
}

/* ==========================================================================
   Treatments Page Styling
   ========================================================================== */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.treatments-column-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.treatments-column-card h2 {
    font-size: 1.45rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(30, 79, 102, 0.1);
    padding-bottom: 10px;
}

.treatment-items-list {
    list-style: none;
}

.treatment-items-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-weight: 500;
}

.treatment-items-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.treatment-note-box {
    background-color: rgba(30, 79, 102, 0.06);
    border-left: 5px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
    margin-top: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.treatment-note-box h4 {
    color: var(--primary-dark);
    margin-bottom: 4px;
    font-size: 1.15rem;
}

/* ==========================================================================
   Practical Info Page Styling
   ========================================================================== */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.info-detail-card h3 {
    color: var(--primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.info-detail-card p {
    font-size: 0.95rem;
    color: var(--text-main);
}

.accreditation-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.accreditation-image {
    max-width: 250px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    margin-top: 12px;
    border: 1px solid var(--border-color);
}

.healthcard-reminder {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
    text-align: center;
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
}

.healthcard-reminder h2 {
    color: #ffffff;
    margin-bottom: 6px;
}

.healthcard-reminder p {
    font-size: 1.15rem;
    font-weight: 500;
}

/* ==========================================================================
   Location & Transport Page Styling
   ========================================================================== */
.location-overview {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-sm);
    font-size: 1.1rem;
    color: var(--text-muted);
}

.maps-container {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-sm);
}

.map-wrapper {
    position: relative;
    padding-bottom: 50%; /* 2:1 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-actions {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-md);
}

/* Bus Lines transport section */
.transport-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-lg);
}

.transport-card h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.transport-card p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.bus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: var(--space-sm);
}

.bus-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
    background-color: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-fast);
}

.bus-item:hover {
    border-color: var(--secondary);
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.bus-badge {
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

.bus-badge.badge-5c {
    background-color: #e11d48; /* Red 5C theme */
}

.bus-badge.badge-250s {
    background-color: #2563eb; /* Blue 250S theme */
}

/* ==========================================================================
   Footer Styling
   ========================================================================== */
.site-footer {
    background-color: var(--primary-dark);
    color: #ffffff;
    padding-top: var(--space-md);
    padding-bottom: 24px;
    margin-top: auto;
}

.footer-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 14px;
}

.footer-section h3 {
    font-size: 1.4rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 6px;
    display: inline-block;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.industry-tag {
    font-size: 0.85rem !important;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-block !important;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 15px !important;
}

.footer-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1); /* make icons white */
}

.footer-phone {
    font-size: 1.25rem;
    color: var(--secondary-light) !important;
    font-weight: 700;
}

.footer-phone:hover {
    color: #ffffff !important;
}

.footer-email a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-email a:hover {
    color: #ffffff;
}

.footer-hours-note {
    font-size: 0.8rem !important;
    font-style: italic;
    opacity: 0.8;
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: var(--secondary-light);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ==========================================================================
   Responsive Media Queries (Responsive & Mobile-first Optimization)
   ========================================================================== */

@media (max-width: 992px) {
    .spots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .doctor-profile-grid {
        grid-template-columns: 1fr;
    }
    
    .doctor-image-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
}

@media (max-width: 768px) {
    /* Header layout changes */
    .desktop-nav {
        display: none; /* Hide desktop menu */
    }
    
    .mobile-toggle {
        display: flex; /* Show hamburger */
    }
    
    .live-status-container {
        display: none; /* Hide live badge in header on small mobile screens to save space */
    }
    
    /* Hero layout */
    .hero-section {
        height: 400px;
    }
    
    .spots-grid {
        grid-template-columns: 1fr;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        padding-bottom: 75%; /* More square aspect ratio on mobile maps */
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-subtitle {
        display: none; /* Hide "Kastrup på Amager" text on small mobile screens to save space */
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%; /* Full-width CTAs on small devices */
    }
}
