/*
===================================================================
AMAGER MASSAGE OG ZONETERAPI - PREMIUM DESIGN SYSTEM
Modern, Elegant, responsive stylesheet for Massage & Therapy Clinic
Colors: Plum (#753365), Lilac (#d090c7), Cream/Lavender backgrounds
Fonts: Playfair Display (Serif), Inter (Sans-serif)
===================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --color-primary: #753365;       /* Rich Plum */
    --color-primary-dark: #58214b;  /* Deep Plum */
    --color-primary-light: #f7eff5; /* Soft Plum tint */
    --color-accent: #d090c7;        /* Lilac */
    --color-accent-dark: #b875ad;   /* Darker Lilac */
    --color-text-dark: #2d202b;     /* Dark purple-grey text */
    --color-text-light: #6b5c69;    /* Medium purple-grey text */
    --color-bg-main: #fdfbfd;       /* Off-white, soft pink-tinted */
    --color-bg-card: #ffffff;
    --color-bg-dark: #1f141d;       /* Deep dark backing for footer */
    --color-border: #f0e4ee;
    
    /* Layout Tokens */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --box-shadow-soft: 0 10px 30px rgba(117, 51, 101, 0.04);
    --box-shadow-medium: 0 15px 40px rgba(117, 51, 101, 0.08);
    --box-shadow-hover: 0 20px 50px rgba(117, 51, 101, 0.15);
    
    /* Transitions */
    --transition-fast: 0s !important;
    --transition-smooth: 0s !important;
}

/* ===================================================================
   1. Base & Reset Styles
   =================================================================== */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

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

body {
    background-color: var(--color-bg-main);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.011em;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.25;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Elegant leaf-line separator under h2 headings */
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.section-title.left h2::after {
    left: 0;
    transform: none;
}

h3 {
    font-size: 1.5rem;
    margin-top: 1rem;
}

p {
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

strong {
    color: var(--color-primary);
    font-weight: 600;
}

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

a:hover {
    color: var(--color-accent-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-md);
}

/* ===================================================================
   2. Layout & Utility Classes
   =================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.section {
    padding: 5rem 0;
}

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

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

.section-title {
    margin-bottom: 3.5rem;
}

.section-title p {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0.75rem auto 0;
}

/* Glassmorphism backing */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Buttons and CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.85rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: none !important;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(117, 51, 101, 0.1);
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: #ffffff;
    transform: none !important;
    box-shadow: 0 8px 25px rgba(117, 51, 101, 0.25);
}

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

.btn-accent:hover {
    background-color: var(--color-accent-dark);
    color: #ffffff;
    transform: none !important;
    box-shadow: 0 8px 25px rgba(208, 144, 199, 0.35);
}

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

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

/* ===================================================================
   3. Header & Navigation (Glassmorphism & Sticky)
   =================================================================== */
header.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(117, 51, 101, 0.03);
    transition: none !important;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-link {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
}

.logo-slogan {
    font-size: 0.75rem;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Navigation items */
nav.site-nav ul {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

nav.site-nav a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    padding: 0.5rem 0.25rem;
    position: relative;
    white-space: nowrap;
}

nav.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
    transition: none !important;
}

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

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

/* Language switch toggler - Modern Segmented Control */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-primary-light);
    border-radius: 30px;
    padding: 3px;
    gap: 2px;
    border: 1px solid var(--color-border);
    margin-left: 0.75rem;
}

.lang-btn {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-light);
    padding: 4px 10px;
    border-radius: 20px;
    background: transparent;
    display: inline-block;
}

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

/* Mobile navigation hamburger menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    margin-bottom: 5px;
    transition: none !important;
}

.menu-toggle span:last-child {
    margin-bottom: 0;
}

/* ===================================================================
   4. Hero Section & Main Components
   =================================================================== */
.hero-section {
    position: relative;
    padding: 6.5rem 0;
    background: radial-gradient(circle at 80% 20%, #fef3fc 0%, var(--color-bg-main) 70%);
    overflow: hidden;
}

/* Beautiful organic floating shapes in background */
.hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.shape-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background-color: rgba(208, 144, 199, 0.08);
    border-radius: 50%;
    filter: blur(80px);
}

.shape-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background-color: rgba(117, 51, 101, 0.04);
    border-radius: 50%;
    filter: blur(100px);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 2.25rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-media {
    position: relative;
}

/* Premium frame with elegant lilac border for clinical images */
.image-frame {
    position: relative;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-medium);
    overflow: hidden;
    background-color: #fff;
    padding: 10px;
    border: 2px solid var(--color-border);
    transition: none !important;
}

.image-frame:hover {
    transform: none !important;
    box-shadow: var(--box-shadow-hover);
    border-color: var(--color-accent);
}

.image-frame img {
    border-radius: calc(var(--border-radius-lg) - 10px);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badge floating next to media */
.experience-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-medium);
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
}

/* ===================================================================
   5. Content Cards & Features
   =================================================================== */
.card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--color-border);
    box-shadow: var(--box-shadow-soft);
    transition: none !important;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: none !important;
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(208, 144, 199, 0.4);
}

/* Icon backdrop styling */
.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-md);
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: none !important;
}

.card:hover .card-icon {
    background-color: var(--color-primary);
    color: #ffffff;
}

.card h3 {
    margin-bottom: 0.75rem;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* ===================================================================
   6. Testimonials & Quote Block
   =================================================================== */
.testimonial-section {
    position: relative;
    background-color: var(--color-primary);
    color: #ffffff;
    overflow: hidden;
}

.testimonial-section .section-title h2,
.testimonial-section .section-title p,
.testimonial-section p {
    color: #ffffff;
}

.testimonial-section h2::after {
    background-color: #ffffff !important;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-size: 5rem;
    line-height: 1;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: -1.5rem;
}

blockquote {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.quote-author {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-accent);
}

/* ===================================================================
   7. Treatments & Detail Pages
   =================================================================== */
/* Filters for treatment lists */
.treatment-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.filter-btn {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: none !important;
}

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

/* Split content layouts */
.content-sidebar-layout {
    display: grid;
    grid-template-columns: 2.8fr 1.2fr;
    gap: 3rem;
}

.treatment-main-content h1 {
    margin-bottom: 1.5rem;
}

.treatment-main-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

/* List with checkmarks */
.benefit-list {
    list-style: none;
    margin-top: 1rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.benefit-list li {
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Sticky Sidebar Wrapper Column */
.sidebar-sticky {
    position: sticky;
    top: 100px;
    align-self: start;
}

/* Sidebar booking widget */
.sidebar-widget {
    background-color: var(--color-primary-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--color-border);
}

.sidebar-widget h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.sidebar-widget ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.sidebar-widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(117, 51, 101, 0.1);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
}

.sidebar-widget li:last-child {
    border-bottom: none;
}

/* ===================================================================
   8. Pricing Tables
   =================================================================== */
.price-box {
    background-color: #ffffff;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--box-shadow-soft);
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.price-box-header {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 1.5rem 2rem;
}

.price-box-header h3 {
    color: #ffffff;
    margin: 0;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th, .price-table td {
    padding: 1.25rem 2rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.price-table th {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    background-color: #fbf9fa;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table td.duration {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.price-table td.price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: right;
}

.price-table td.booking {
    text-align: right;
}

.price-table .btn-book-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

/* ===================================================================
   9. Opening Hours Schedule
   =================================================================== */
.schedule-list {
    list-style: none;
    background-color: #ffffff;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    padding: 2rem;
    box-shadow: var(--box-shadow-soft);
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

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

.schedule-day {
    font-weight: 600;
    color: var(--color-primary);
}

.schedule-time {
    color: var(--color-text-light);
}

/* ===================================================================
   10. About Us (Therapists Cards)
   =================================================================== */
.staff-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    background-color: #ffffff;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    box-shadow: var(--box-shadow-soft);
    margin-bottom: 2.5rem;
    align-items: center;
    transition: none !important;
}

.staff-card:hover {
    transform: none !important;
    box-shadow: var(--box-shadow-medium);
}

.staff-img {
    height: 100%;
}

.staff-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 320px;
    border-radius: var(--border-radius-md);
}

.staff-info h3 {
    margin-bottom: 0.25rem;
}

.staff-role {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-accent-dark);
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.staff-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===================================================================
   11. Contact Forms & Interactive Elements
   =================================================================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    background-color: #ffffff;
    transition: none !important;
}

.form-input:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(117, 51, 101, 0.08);
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

/* Map frame */
.map-frame {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 2px solid var(--color-border);
    box-shadow: var(--box-shadow-soft);
    line-height: 0;
}

.map-frame iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===================================================================
   12. Footer Section
   =================================================================== */
footer.site-footer {
    background-color: var(--color-bg-dark);
    color: #ffffff;
    padding: 5rem 0 2rem;
    border-top: 4px solid var(--color-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.25rem;
}

.footer-logo .logo-title {
    color: #ffffff;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

/* Badge list at footer */
.footer-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
}

.footer-badges img {
    background-color: #ffffff;
    padding: 4px;
    border-radius: 4px;
    height: 40px;
    width: auto;
}

/* Sub-footer detailing copyright & policies */
.sub-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.sub-footer-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.sub-footer-links {
    display: flex;
    gap: 1.5rem;
}

.sub-footer-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

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

/* ===================================================================
   13. Responsive Styles (Breakpoints)
   =================================================================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-media {
        max-width: 550px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .content-sidebar-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar-widget {
        position: static;
    }
}

@media (max-width: 768px) {
    header.site-header {
        padding: 0.5rem 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Navigation drawer overlay for mobile - centered and visual */
    nav.site-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-bg-card);
        padding: 3rem 2rem;
        box-shadow: -10px 10px 30px rgba(0,0,0,0.05);
        transition: none !important;
        overflow-y: auto;
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    nav.site-nav.open {
        right: 0;
    }
    
    nav.site-nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        width: 100%;
        text-align: center;
    }
    
    nav.site-nav li {
        width: 100%;
        text-align: center;
    }
    
    nav.site-nav a {
        font-family: var(--font-heading);
        font-size: 1.45rem;
        font-weight: 600;
        color: var(--color-primary);
        display: inline-block;
        padding: 0.5rem 0;
    }
    
    .lang-switcher {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        gap: 2rem;
        width: 100%;
    }

    .lang-switcher a {
        font-family: var(--font-body) !important;
        font-size: 1.1rem !important;
    }
    
    /* Force 1-column stack on grids for mobile & tablets */
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Force inline-styled custom layout grids to stack vertically */
    .content-sidebar-layout,
    .card[style*="display: grid"],
    .card[style*="display:grid"],
    .card[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 2rem !important;
    }
    
    /* Center custom grid decorators at top */
    .card[style*="display: grid"] > div:first-child,
    .card[style*="display:grid"] > div:first-child {
        text-align: center !important;
        margin: 0 auto 1rem !important;
    }
    
    .staff-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.75rem;
    }
    
    .staff-img img {
        max-height: 250px;
        width: 100%;
    }
    
    .benefit-list {
        grid-template-columns: 1fr;
    }
    
    .price-table th, .price-table td {
        padding: 1rem;
    }
    
    .price-table th:last-child, .price-table td:last-child {
        display: none; /* Hide booking column on small screens */
    }
    
    /* Spacing between buttons/CTAs when stacked */
    .hero-ctas, .btn-group, .cta-group {
        flex-direction: column !important;
        width: 100%;
        gap: 1rem !important;
    }
    
    .hero-ctas .btn, .btn-group .btn, .cta-group .btn {
        width: 100% !important;
        margin: 0 !important;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 2.5rem 0 !important;
    }
    
    .container {
        padding: 0 1.25rem !important; /* Safety padding so text doesn't touch the screen edge */
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sub-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
