/* ==========================================================================
   Design System - Tina Weinert Ernährungsberatung
   ========================================================================== */

:root {
    /* Colors */
    --color-primary: hsl(105, 38%, 25%);        /* Healthy Leaf Green (Sustainability) */
    --color-primary-light: hsl(105, 32%, 35%);  /* Lively Green */
    --color-secondary: hsl(18, 75%, 50%);      /* Sunny Fire Orange (Warmth, Happiness, Heart) */
    --color-secondary-hover: hsl(18, 75%, 43%);/* Deep Fire Orange */
    --color-accent: hsl(42, 85%, 53%);         /* Warm Sun Gold (Joy & Cohesion) */
    --color-bg-main: hsl(38, 25%, 97%);        /* Warm Cozy Linen/Cream */
    --color-bg-alt: hsl(105, 12%, 93%);        /* Soft Sage-Linen background */
    --color-bg-card: hsl(38, 30%, 99%);        /* Warm Cozy Cream (Harmonized White) */
    --color-text-dark: hsl(20, 20%, 15%);       /* Soft Walnut Black */
    --color-text-light: hsl(20, 10%, 45%);      /* Warm Gray */
    --color-border: hsl(38, 15%, 88%);          /* Soft Sand Border */
    --color-success: hsl(145, 45%, 38%);
    --color-error: hsl(12, 65%, 45%);
    --color-info: hsl(202, 70%, 48%);          /* Flowing Water Blue (Harmony & Flow) */
    
    /* Roles Colors */
    --color-role-admin: hsl(18, 75%, 50%);
    --color-role-manager: hsl(105, 38%, 25%);
    --color-role-viewer: hsl(20, 10%, 45%);

    /* Typography */
    --font-heading: 'Fraunces', serif;
    --font-body: 'Karla', sans-serif;
    
    /* Shadows - Warm clay tone shadow */
    --shadow-sm: 0 2px 4px rgba(45, 30, 20, 0.04);
    --shadow-md: 0 6px 18px rgba(45, 30, 20, 0.06);
    --shadow-lg: 0 10px 30px rgba(45, 30, 20, 0.08);
    --shadow-glass: 0 8px 32px 0 rgba(45, 30, 20, 0.06);
    
    /* Border Radius - More rounded and organic */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base & Reset Styles
   ========================================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, hsl(38, 35%, 97%) 0%, hsl(105, 20%, 95%) 100%);
    background-attachment: fixed;
    color: var(--color-text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: var(--color-primary-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    border-radius: var(--radius-sm);
}

ul, ol {
    margin-bottom: 1.25rem;
    margin-left: 1.5rem;
}

/* ==========================================================================
   Layout Helpers
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-small {
    max-width: 750px;
}

.container-medium {
    max-width: 960px;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--color-bg-alt);
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.25rem;
    text-align: center;
    position: relative;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-secondary) 30%, var(--color-accent) 50%, var(--color-secondary) 70%, transparent);
    margin: 0.75rem auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background-color: var(--color-secondary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-secondary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-secondary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: white;
}

.btn-outline {
    background-color: transparent;
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--color-primary);
}

.btn-danger {
    background-color: var(--color-error);
    color: white;
}

.btn-danger:hover {
    background-color: hsl(0, 75%, 38%);
    color: white;
}

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(252, 253, 251, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-right: 3rem;
    flex-shrink: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    mix-blend-mode: multiply;
}

.main-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.main-nav a:not(.btn) {
    color: var(--color-text-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
}

.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width var(--transition-fast);
}

.main-nav a:not(.btn):hover::after {
    width: 100%;
}

.main-nav a:not(.btn):hover {
    color: var(--color-primary);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    position: relative;
    transition: background var(--transition-fast);
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    left: 0;
    transition: transform var(--transition-fast);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Mobile navigation active states */
.main-nav.active {
    display: flex !important;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(74, 119, 60, 0.92) 0%, rgba(232, 110, 53, 0.88) 100%), 
                url('images/5db616bf-a1fd-4943-bcec-6450a852bf96-1920w.png') center/cover no-repeat;
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-bg-main);
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-tagline {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: hsl(90, 20%, 90%);
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* ==========================================================================
   Hero Highlight Banner
   ========================================================================== */

.hero-highlight-banner-wrapper {
    margin: 0 auto 3.5rem auto;
    max-width: 820px;
    position: relative;
}

.hero-highlight-banner {
    background: rgba(251, 247, 242, 0.98);
    border: 2.5px solid var(--color-secondary, #e86e35);
    border-radius: var(--radius-lg, 16px);
    padding: 1.75rem 2.25rem;
    margin: 0 auto;
    max-width: 740px;
    text-align: left;
    color: var(--color-text-dark, #2b3a24);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    animation: highlightCardPulseGlow 3s infinite ease-in-out;
    transition: transform var(--transition-smooth);
}

.hero-highlight-banner:hover {
    animation-play-state: paused;
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 50px rgba(232, 110, 53, 0.85);
}

@keyframes highlightCardPulseGlow {
    0% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18), 0 0 15px rgba(232, 110, 53, 0.4);
        border-color: var(--color-secondary, #e86e35);
        transform: translateY(0) scale(1);
    }
    50% {
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28), 0 0 45px rgba(232, 110, 53, 0.8), 0 0 25px rgba(243, 156, 18, 0.6);
        border-color: #f39c12;
        transform: translateY(-2px) scale(1.012);
    }
    100% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18), 0 0 15px rgba(232, 110, 53, 0.4);
        border-color: var(--color-secondary, #e86e35);
        transform: translateY(0) scale(1);
    }
}

/* Elegant visual separation line from rest of hero */
.highlight-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.25rem;
    position: relative;
}

.highlight-divider::before,
.highlight-divider::after {
    content: "";
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
    flex: 1;
    max-width: 250px;
}

.highlight-divider-dot {
    width: 10px;
    height: 10px;
    background: var(--color-secondary, #e86e35);
    border-radius: 50%;
    margin: 0 1rem;
    box-shadow: 0 0 12px rgba(232, 110, 53, 0.9), 0 0 20px #f39c12;
}

.highlight-banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-secondary, #e86e35), #f39c12);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 0.95rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(232, 110, 53, 0.45);
}

.highlight-badge-pulse {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    animation: highlightPulse 1.8s infinite ease-in-out;
}

@keyframes highlightPulse {
    0% {
        transform: scale(0.85);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
        box-shadow: 0 0 8px #ffffff;
    }
    100% {
        transform: scale(0.85);
        opacity: 0.7;
    }
}

.highlight-schedule {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.schedule-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background-color: var(--color-bg-alt, #f3ede2);
    color: var(--color-primary, #2a421b);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--color-border, #e5ded2);
}

.schedule-pill.pill-seats {
    background-color: rgba(232, 110, 53, 0.12);
    color: var(--color-secondary, #e86e35);
    border-color: rgba(232, 110, 53, 0.35);
}

.schedule-pill.pill-sold-out {
    background-color: rgba(231, 76, 60, 0.12);
    color: #c0392b;
    border-color: rgba(231, 76, 60, 0.35);
}

.schedule-icon {
    color: var(--color-secondary, #e86e35);
}

.highlight-headline {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-primary, #2a421b);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.highlight-desc {
    font-size: 0.95rem;
    color: var(--color-text-light, #5c6b53);
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.highlight-cta {
    display: flex;
    justify-content: flex-start;
}

.highlight-action-btn {
    box-shadow: 0 4px 14px rgba(232, 110, 53, 0.4);
    font-weight: 600;
    padding: 0.65rem 1.5rem;
}

/* ==========================================================================
   Highlight Calendar Reservation Notice & Form Styles
   ========================================================================== */

.highlight-booking-notice {
    background: linear-gradient(135deg, rgba(232, 110, 53, 0.12), rgba(243, 156, 18, 0.15));
    border: 2px solid var(--color-secondary, #e86e35);
    border-radius: var(--radius-md, 12px);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 6px 20px rgba(232, 110, 53, 0.2);
    animation: highlightNoticeFade 0.4s ease-out;
}

@keyframes highlightNoticeFade {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.highlight-booking-notice .notice-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.highlight-booking-notice .notice-content {
    flex: 1;
}

.highlight-booking-notice .notice-title {
    font-weight: 700;
    color: var(--color-primary, #2a421b);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.highlight-booking-notice .notice-text {
    font-size: 0.9rem;
    color: var(--color-text-dark, #2b3a24);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.highlight-booking-notice .btn-reset-booking {
    background: none;
    border: none;
    color: var(--color-secondary, #e86e35);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.highlight-booking-notice .btn-reset-booking:hover {
    color: #c0392b;
}

.form-wrapper.highlight-reserved {
    border: 2px solid var(--color-secondary, #e86e35);
    box-shadow: 0 0 25px rgba(232, 110, 53, 0.25);
    border-radius: var(--radius-md, 12px);
    background: var(--color-bg-card, #fbf7f2);
    position: relative;
    transition: box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .hero-highlight-banner {
        padding: 1.25rem 1.25rem;
        text-align: center;
    }
    .hero-highlight-banner-wrapper {
        margin-bottom: 2.5rem;
    }
    .highlight-banner-header {
        justify-content: center;
    }
    .highlight-schedule {
        justify-content: center;
    }
    .highlight-headline {
        font-size: 1.3rem;
    }
    .highlight-cta {
        justify-content: center;
    }
}

/* ==========================================================================
   Cards & Grids
   ========================================================================== */

.card {
    background-color: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary-hover);
    margin: 1.5rem 0;
    font-family: var(--font-heading);
}

.service-features {
    list-style: none;
    margin-left: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.service-features-html {
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-features-html ul,
.service-features-html ol {
    list-style: none;
    margin: 0 0 1rem 0;
    padding-left: 0;
}

.service-features-html li {
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    padding-left: 1.5rem;
}

.service-features-html li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.service-features-html p {
    margin: 0.5rem 0;
}

/* ==========================================================================
   Booking Calendar Component
   ========================================================================== */

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    border: 1px solid var(--color-border);
}

/* Calendar Month View */
.calendar-wrapper {
    display: flex;
    flex-direction: column;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-header h3 {
    margin-bottom: 0;
    font-size: 1.35rem;
}

.btn-cal-nav {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    color: var(--color-primary);
    transition: all var(--transition-fast);
}

.btn-cal-nav:hover {
    background-color: var(--color-secondary);
    color: white;
    border-color: var(--color-secondary);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    text-align: center;
}

.calendar-day-header {
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-primary);
    padding: 0.5rem 0;
}

.calendar-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    background-color: hsl(90, 20%, 98%);
    border: 1px solid transparent;
}

.calendar-cell:hover:not(.empty):not(.disabled) {
    background-color: var(--color-secondary);
    color: white;
}

.calendar-cell.empty {
    background: transparent;
    cursor: default;
}

.calendar-cell.disabled {
    color: hsl(0, 0%, 75%);
    cursor: not-allowed;
    background-color: transparent;
}

.calendar-cell.no-slots {
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-cell.has-available-slots {
    background-color: hsl(90, 30%, 96%);
    border: 1px solid rgba(74, 119, 60, 0.25);
    color: var(--color-primary);
    font-weight: 700;
}

.calendar-cell.has-available-slots:hover {
    background-color: var(--color-secondary);
    color: white;
    border-color: var(--color-secondary);
}

.calendar-cell.selected {
    background-color: var(--color-primary);
    color: white;
    font-weight: 700;
}

.calendar-cell.booked-out {
    background-color: hsl(0, 100%, 96%);
    color: var(--color-error);
    border: 1px solid hsl(0, 100%, 90%);
}

.calendar-cell.booked-out:hover {
    background-color: hsl(0, 100%, 94%);
    cursor: not-allowed;
}

/* Time Slot Selection */
.slots-wrapper {
    margin-top: 2rem;
}

.slots-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.75rem;
}

.slot-btn {
    padding: 0.6rem 0.5rem;
    text-align: center;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 700;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

.slot-btn:hover:not(.booked) {
    border-color: var(--color-secondary);
    background-color: hsl(90, 20%, 95%);
    color: var(--color-primary);
}

.slot-btn.selected {
    background-color: var(--color-secondary);
    color: white;
    border-color: var(--color-secondary);
}

.slot-btn.booked {
    background-color: hsl(0, 100%, 97%);
    color: hsl(0, 0%, 70%);
    border-color: hsl(0, 100%, 94%);
    cursor: not-allowed;
    text-decoration: line-through;
}

/* ==========================================================================
   Calendar Highlight Day & Highlight Slot Styling
   ========================================================================== */

.calendar-cell.highlight-cell {
    background: linear-gradient(135deg, rgba(232, 110, 53, 0.18), rgba(243, 156, 18, 0.28)) !important;
    border: 2.5px solid var(--color-secondary, #e86e35) !important;
    color: var(--color-primary, #2a421b) !important;
    font-weight: 800 !important;
    position: relative;
    box-shadow: 0 0 14px rgba(232, 110, 53, 0.5);
    animation: highlightCellPulse 2.5s infinite ease-in-out;
}

@keyframes highlightCellPulse {
    0% {
        box-shadow: 0 0 8px rgba(232, 110, 53, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(232, 110, 53, 0.8), 0 0 10px rgba(243, 156, 18, 0.6);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 8px rgba(232, 110, 53, 0.4);
        transform: scale(1);
    }
}

.calendar-cell.highlight-cell:hover:not(.disabled) {
    background: linear-gradient(135deg, var(--color-secondary, #e86e35), #f39c12) !important;
    color: #ffffff !important;
    transform: scale(1.1) !important;
    animation-play-state: paused;
}

.cell-highlight-badge {
    position: absolute;
    top: 2px;
    right: 4px;
    font-size: 0.75rem;
    color: var(--color-secondary, #e86e35);
    line-height: 1;
    text-shadow: 0 0 4px rgba(232, 110, 53, 0.5);
}

.calendar-cell.highlight-cell:hover .cell-highlight-badge {
    color: #ffffff;
}

.slot-btn.highlight-slot {
    background: linear-gradient(135deg, var(--color-secondary, #e86e35), #f39c12) !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(232, 110, 53, 0.45);
    grid-column: span 2;
}

.slot-btn.highlight-slot:hover {
    box-shadow: 0 6px 20px rgba(232, 110, 53, 0.7) !important;
    transform: translateY(-2px);
}

.slot-btn.highlight-slot.selected {
    box-shadow: 0 0 0 3px var(--color-primary, #2a421b), 0 6px 20px rgba(232, 110, 53, 0.8) !important;
    transform: translateY(-2px);
}

.slot-blocked-highlight-notice {
    grid-column: 1 / -1;
    font-size: 0.85rem;
    color: var(--color-text-dark, #2b3a24);
    background: linear-gradient(135deg, rgba(232, 110, 53, 0.1), rgba(243, 156, 18, 0.12));
    padding: 0.65rem 0.95rem;
    border-radius: 8px;
    border: 1px dashed var(--color-secondary, #e86e35);
    margin-bottom: 0.75rem;
    line-height: 1.45;
}

/* Form Styles */
.form-wrapper h3 {
    margin-bottom: 1.5rem;
    font-size: 1.35rem;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--color-bg-card);
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-secondary);
    background-color: var(--color-bg-card);
    box-shadow: 0 0 0 3px rgba(120, 167, 32, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* ==========================================================================
   About Me & Zinzino
   ========================================================================== */

.about-columns {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-img-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform var(--transition-smooth);
}

.about-img-container:hover img {
    transform: scale(1.05);
}

.partner-box {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, hsl(90, 20%, 94%) 0%, hsl(90, 20%, 90%) 100%);
    border-radius: var(--radius-md);
    border-left: 5px solid var(--color-secondary);
}

.partner-box h4 {
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--color-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition-fast);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.faq-toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--color-secondary);
    transition: transform var(--transition-smooth);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
    background-color: hsl(90, 20%, 99%);
}

.faq-answer-content {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--color-text-dark);
}

.faq-answer-content ul {
    margin-top: 0.5rem;
}

/* ==========================================================================
   General Contact Form
   ========================================================================== */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background-color: var(--color-bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.info-card-icon {
    font-size: 1.75rem;
    color: var(--color-secondary);
    line-height: 1;
}

.info-card-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.info-card-content p {
    margin-bottom: 0;
    color: var(--color-text-light);
}

/* ==========================================================================
   Alerts & Notifications
   ========================================================================== */

.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background-color: hsl(145, 63%, 95%);
    color: var(--color-success);
    border: 1px solid hsl(145, 63%, 90%);
}

.alert-danger {
    background-color: hsl(0, 75%, 97%);
    color: var(--color-error);
    border: 1px solid hsl(0, 75%, 93%);
}

/* ==========================================================================
   Legal & Inner Pages
   ========================================================================== */

.page-content {
    padding: 4rem 0;
    min-height: calc(100vh - 75px - 100px); /* Fill space between header and footer */
}

.page-title {
    font-size: 2.75rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.legal-card {
    line-height: 1.8;
}

.legal-card h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.legal-card h2:first-of-type {
    margin-top: 0;
}

.legal-card ol, .legal-card ul {
    margin-bottom: 1.5rem;
}

.legal-card li {
    margin-bottom: 0.5rem;
}

.last-updated {
    font-style: italic;
    color: var(--color-text-light);
    margin-top: 3rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
}

.back-link {
    margin-top: 2rem;
    text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background-color: var(--color-primary);
    color: white;
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: hsl(90, 20%, 80%);
    font-weight: 600;
}

.footer-links a:hover, .footer-links a.active {
    color: white;
}

/* ==========================================================================
   Backend Dashboard Styles
   ========================================================================== */

/* Login Container */
.login-container {
    max-width: 420px;
    margin: 5rem auto;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header img {
    height: 60px;
    margin-bottom: 1rem;
}

.login-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.login-card {
    padding: 3rem;
}

/* Admin Dashboard Layout */
/* Admin Dashboard Layout */
.admin-layout {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 75px);
}

/* Sidebar renamed to Topbar */
.admin-sidebar {
    background-color: var(--color-primary);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    gap: 1.5rem;
    flex-wrap: wrap;
}

.user-profile-summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.user-info-text {
    line-height: 1.2;
}

.user-info-text .name {
    font-weight: 700;
    font-size: 0.95rem;
    display: block;
}

.user-info-text .role-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.25rem;
    text-transform: uppercase;
}

.role-badge.role-admin { background-color: var(--color-role-admin); color: white; }
.role-badge.role-manager { background-color: var(--color-role-manager); color: white; }
.role-badge.role-viewer { background-color: var(--color-role-viewer); color: white; }

.admin-nav-groups-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-grow: 1;
    justify-content: center;
    align-items: stretch;
}

.admin-nav-group {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 0.4rem 0.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.admin-nav-group-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    color: hsl(90, 25%, 85%);
    margin-bottom: 0.25rem;
    letter-spacing: 0.06em;
    opacity: 0.85;
}

.admin-nav-group-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
}

.admin-nav-menu {
    list-style: none;
    margin-left: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.25rem;
    flex-grow: 1;
    justify-content: center;
}

.admin-nav-item button {
    padding: 0.6rem 1rem;
    background: none;
    border: none;
    color: hsl(90, 20%, 85%);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.admin-nav-item button:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
}

.admin-nav-item.active button {
    background-color: var(--color-secondary);
    color: white;
}

.admin-logout-btn {
    display: flex;
    align-items: center;
}

.admin-logout-btn button {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.admin-logout-btn button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Dashboard Body */
.admin-main {
    padding: 3rem;
    background: linear-gradient(135deg, hsl(38, 25%, 96%) 0%, hsl(105, 15%, 94%) 100%);
    overflow-y: auto;
}

.dashboard-section {
    display: none;
}

.dashboard-section.active {
    display: block !important;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
}

.dashboard-header h2 {
    margin-bottom: 0;
    font-size: 2rem;
}

/* Statistics Widgets */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background-color: var(--color-bg-card);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-info .num {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-heading);
    line-height: 1.1;
}

.stat-info .lbl {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
}

/* Responsive Table */
.table-responsive {
    overflow-x: auto;
    background-color: var(--color-bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.admin-table th, .admin-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.admin-table th {
    background-color: hsl(90, 20%, 97%);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-table tbody tr:hover td {
    background-color: hsl(90, 20%, 99%);
}

.admin-actions {
    display: flex;
    gap: 0.5rem;
}

/* Split Pane for CRUD */
.crud-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Content Editor Fields */
.editor-grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
}

.editor-accordion-stack {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
}

/* Package Accordion Stack */
.package-accordion-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.package-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
    flex-wrap: wrap;
}

.package-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 240px;
    flex: 1;
}

.package-header-icon {
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.package-header-titles {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.package-header-name {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.25;
}

.package-header-meta {
    font-size: 0.8rem;
    color: var(--color-text-light);
    display: flex;
    gap: 0.4rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 0.2rem;
}

.package-header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.editor-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-bg-card);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
    gap: 0.75rem;
}

.editor-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.editor-group {
    background-color: var(--color-bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

details.editor-group {
    padding: 0;
    margin-bottom: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
    width: 100%;
}

details.editor-group[open] {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-sm);
}

details.editor-group summary {
    padding: 0.85rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    cursor: pointer;
    background-color: var(--color-bg-alt);
    user-select: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    transition: background-color var(--transition-fast);
}

details.editor-group summary:hover {
    background-color: rgba(74, 119, 60, 0.08);
}

details.editor-group summary::-webkit-details-marker {
    display: none;
}

details.editor-group summary::after {
    content: '▾';
    font-size: 1.2rem;
    transition: transform var(--transition-fast);
    color: var(--color-text-light);
}

details.editor-group[open] summary::after {
    transform: rotate(180deg);
    color: var(--color-primary);
}

details.editor-group .editor-group-content {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--color-border);
    background-color: #fff;
}

.editor-group h3 {
    font-size: 1.15rem;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 0.4rem;
    margin-bottom: 1.25rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .section {
        padding: 3.5rem 0;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Mobile Header & Nav Toggle */
    .mobile-nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background-color: var(--color-bg-card);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
        padding: 2rem;
        z-index: 100;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .main-nav ul li {
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        width: 100%;
    }
    
    .main-nav .btn {
        text-align: center;
    }
    
    /* Mobile Menu Toggle Animation */
    .mobile-nav-toggle.active .hamburger {
        background: transparent;
    }
    
    .mobile-nav-toggle.active .hamburger::before {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-nav-toggle.active .hamburger::after {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* About columns */
    .about-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-img-container {
        max-width: 450px;
        margin: 0 auto;
    }
    
    /* Footer layout */
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    /* Admin layout */
    .admin-layout {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 1.5rem;
    }
    
    .admin-main {
        padding: 1.5rem;
    }
    
    .crud-layout {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Watermark, Social Links & Motivation Banner Additions
   ========================================================================== */

.watermark {
    display: block;
    text-align: center;
    color: rgba(54, 162, 235, 0.45); /* Light blue, low opacity */
    font-size: 1.15rem;              /* Medium size */
    font-weight: 400;
    margin: 2rem auto 0.5rem auto;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.social-container {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all var(--transition-fast);
}

.social-icon-link:hover {
    background-color: var(--color-secondary);
    color: white;
    transform: translateY(-2px);
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    justify-content: center;
}

.main-nav {
    margin-left: auto;
    margin-right: auto;
}

.header-socials {
    display: flex;
    gap: 0.5rem;
    margin-right: 1.5rem;
}

.header-socials .social-icon-link {
    width: 32px;
    height: 32px;
    background-color: rgba(58, 101, 39, 0.08);
    color: var(--color-primary);
}

.header-socials .social-icon-link:hover {
    background-color: var(--color-secondary);
    color: white;
}

.social-icon-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Motivating Section styling */
.motivation-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-secondary-hover) 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.motivation-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.motivation-banner h3 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.motivation-banner p.banner-intro {
    font-size: 1.25rem;
    color: hsl(38, 20%, 93%);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: var(--color-accent);
    color: var(--color-text-dark);
    font-weight: 800;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.motivation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.motivation-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 2.25rem 1.5rem;
    text-align: center;
    transition: all var(--transition-fast);
}

.motivation-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.motivation-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.motivation-card h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.motivation-card p {
    font-size: 0.95rem;
    color: hsl(38, 10%, 90%);
    margin-bottom: 0;
}
