/* BuraPension Premium CSS Style Sheet */

/* Font display swap overrides for FontAwesome CDN */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2') format('woff2');
}
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2') format('woff2');
}

/* --- 1. Design System & Variables --- */
:root {
    /* Color Palette */
    --color-primary: rgb(218, 158, 43);       /* Golden Amber (#DA9E2B) */
    --color-primary-hover: hsl(39, 70%, 42%);
    --color-primary-light: hsl(39, 90%, 96%);
    
    --color-secondary: hsl(20, 50%, 35%);    /* Sunset Terracotta / Muted Orange */
    --color-secondary-hover: hsl(20, 50%, 25%);
    --color-secondary-light: hsl(20, 60%, 96%);
    
    --color-dark: hsl(20, 6%, 15%);          /* Warm Charcoal text */
    --color-light: hsl(0, 0%, 100%);          /* White */
    --color-bg-warm: hsl(39, 100%, 98%);      /* Warm linen background */
    --color-bg-dark: hsl(20, 18%, 12%);       /* Dark warm charcoal-chocolate for footer/about */
    
    /* Semantics */
    --color-success: hsl(142, 70%, 35%);      /* Safe daily food */
    --color-warning: hsl(35, 90%, 50%);       /* Occasional feed */
    --color-danger: hsl(0, 85%, 55%);         /* Toxic / Forbidden */
    
    /* Semantic Light Variants (for tags) */
    --color-success-bg: hsl(142, 70%, 94%);
    --color-warning-bg: hsl(35, 90%, 93%);
    --color-danger-bg: hsl(0, 85%, 95%);
    
    /* Borders & Shadows */
    --border-radius-s: 8px;
    --border-radius-m: 16px;
    --border-radius-l: 24px;
    --border-radius-full: 9999px;
    
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
    
    /* Fonts */
    --font-headings: 'Fredoka', sans-serif;
    --font-body: 'Fredoka', sans-serif;
    --font-brand: 'Fredoka', sans-serif;
    
    /* Max Widths */
    --container-max-width: 1200px;
    --header-height: 80px;
}

/* --- 2. Base & Reset --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-light);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Custom cute elements */
.cute-carrot-list {
    list-style: none;
    padding-left: 0;
}
.cute-carrot-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}
.cute-carrot-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M18.8 5.2c-1.1-1.1-2.9-1.1-4 0L4.5 15.5c-.3.3-.4.7-.4 1.1l-.8 4.6c-.1.5.3.9.8.8l4.6-.8c.4 0 .8-.2 1.1-.4L20.1 10.5c1.1-1.1 1.1-2.9 0-4l-1.3-1.3z' fill='%23DA9E2B'/><path d='M14.5 10.5l-2.5 2.5M11.5 7.5l-2.5 2.5' stroke='%23B5801C' stroke-width='1.5' stroke-linecap='round'/><path d='M20.5 3.5c-.8-.8-2-.8-2.8 0l-2.2 2.2 5 5 2.2-2.2c.8-.8.8-2 0-2.8L20.5 3.5z' fill='%234CAF50'/><path d='M22 2c-.5-.5-1.3-.5-1.8 0L17 5.2M18.8 2c.5-.5.5-1.3 0-1.8s-1.3-.5-1.8 0L15.2 2' stroke='%232E7D32' stroke-width='1.5' stroke-linecap='round'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
}

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

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    width: 100%;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-white { color: var(--color-light); }
.d-none { display: none !important; }

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* --- 3. Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    font-size: 1rem;
    border: none;
}

.btn i {
    font-size: 1.15em;
    line-height: 1;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-light);
    box-shadow: 0 4px 14px rgba(218, 158, 43, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 158, 43, 0.4);
}

.btn-secondary {
    background-color: var(--color-secondary-light);
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

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

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--color-light);
    box-shadow: 0 4px 14px rgba(220, 39, 67, 0.3);
}

.btn-instagram:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
}

@keyframes bunny-hop {
    0%, 100% { transform: translateY(-2px); }
    50% { transform: translateY(-8px); }
}

.btn:hover {
    animation: bunny-hop 0.4s ease-in-out;
}

/* --- 4. Main Header Navigation --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
}

/* Scrolled Header State */
.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-glass);
    height: 70px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

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

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: var(--border-radius-full);
    object-fit: cover;
    border: 2px solid var(--color-primary-light);
    transition: transform 0.3s ease;
}

@keyframes logo-wiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}

.logo-link:hover .logo-img {
    animation: logo-wiggle 0.3s ease-in-out infinite alternate;
}

.logo-text {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-dark);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

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

.instagram-btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--border-radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(218, 158, 43, 0.2);
}

.instagram-btn-nav:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
    box-shadow: 0 4px 10px rgba(218, 158, 43, 0.2);
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-secondary);
    border-radius: var(--border-radius-full);
    transition: all 0.3s ease;
}

/* --- 5. Hero Section --- */
.hero-section {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 80px;
    background: linear-gradient(135deg, hsl(39, 100%, 98%) 0%, hsl(20, 60%, 96%) 100%);
    position: relative;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    max-width: 900px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--border-radius-full);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--color-secondary);
}

.hero-description {
    font-size: 1.05rem;
    color: #4b524e;
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 800px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--border-radius-l);
    overflow: hidden;
    max-width: 380px;
    width: 100%;
}

.hero-main-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.hero-img-wrapper:hover .hero-main-img {
    transform: scale(1.03);
}

.badge-num {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.badge-txt {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.2;
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider .shape-fill {
    fill: var(--color-light);
}

/* Blob Animation */
@keyframes morphingBlob {
    0% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
    100% { border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%; }
}

/* --- 6. Services Section --- */
.services-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.services-grid-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card {
    background-color: var(--color-bg-warm);
    border-radius: var(--border-radius-m);
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(218, 158, 43, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-5px) rotate(-1.5deg);
    background-color: var(--color-light);
    box-shadow: var(--shadow-medium);
    border-color: rgba(218, 158, 43, 0.15);
}

.service-icon-container {
    width: 54px;
    height: 54px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--border-radius-s);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon {
    width: 26px;
    height: 26px;
}

.service-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.service-card-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.services-media-showcase {
    overflow: hidden;
    border-radius: var(--border-radius-l);
    box-shadow: var(--shadow-medium);
}

.services-showcase-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.services-media-showcase:hover .services-showcase-img {
    transform: scale(1.04);
}

/* --- 7. Gallery Carousel Section --- */
.gallery-section {
    padding: 80px 0;
    background-color: var(--color-bg-warm);
    overflow: hidden;
}

.gallery-title-container {
    max-width: var(--container-max-width);
    margin: 0 auto 40px auto;
    padding: 0 24px;
}

.gallery-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.gallery-title {
    font-size: 2.2rem;
    color: var(--color-secondary);
}

.gallery-wrapper {
    position: relative;
    padding: 0 40px;
}

.gallery-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.gallery-item {
    min-width: 320px;
    width: 320px;
    height: 400px;
    border-radius: var(--border-radius-m);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 4px solid var(--color-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.gallery-arrow {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-full);
    background-color: var(--color-light);
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s ease;
}

.gallery-arrow:hover {
    background-color: var(--color-secondary);
    color: var(--color-light);
    box-shadow: var(--shadow-medium);
}

/* --- 8. About Us Section --- */
.about-section {
    padding: 100px 0;
    background-color: var(--color-light);
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-media {
    display: flex;
    justify-content: center;
}

.about-img-frame {
    position: relative;
    max-width: 440px;
    width: 100%;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.about-content {
    color: var(--color-dark);
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 20px;
    color: #4b524e;
}

.about-text strong {
    color: var(--color-secondary);
}

/* --- 9. Diet Explorer Section --- */
.diet-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.diet-explorer-widget {
    background-color: var(--color-bg-warm);
    border-radius: var(--border-radius-l);
    padding: 40px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.diet-tabs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
    margin-bottom: 24px;
    gap: 20px;
    flex-wrap: wrap;
}

.diet-tabs {
    display: flex;
    gap: 8px;
}

.diet-tab {
    background: none;
    border: none;
    padding: 12px 24px;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1.05rem;
    color: #666;
    cursor: pointer;
    border-radius: var(--border-radius-m);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.diet-tab:hover {
    color: var(--color-primary);
    background-color: var(--color-light);
}

.diet-tab.active {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.diet-search-container {
    position: relative;
    width: 360px;
    max-width: 100%;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.diet-search-container .diet-search-input {
    width: 100%;
    padding: 12px 40px 12px 44px;
    border-radius: var(--border-radius-full);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    background-color: var(--color-light);
}

.diet-search-container .diet-search-input:focus,
.diet-rating-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(218, 158, 43, 0.1);
}

.clear-search {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    display: none;
}

.clear-search:hover {
    color: var(--color-primary);
}

/* Vegetable Filter Tags */
.diet-filter-tags-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #666;
}

.filter-tag {
    background-color: var(--color-light);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius-full);
    padding: 6px 16px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.filter-tag:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-tag.active {
    background-color: var(--color-secondary-light);
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: var(--border-radius-full);
    display: inline-block;
}

.indicator.daily { background-color: var(--color-success); }
.indicator.moderate { background-color: var(--color-warning); }
.indicator.danger { background-color: var(--color-danger); }

/* Diet Panels Visibility */
.diet-panel {
    display: none;
}

.diet-panel.active {
    display: block;
}

/* Diet Table Styling */
.diet-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-light);
    border-radius: var(--border-radius-m);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(0, 0, 0, 0.03);
    font-size: 0.88rem; /* Smaller compact text */
}

.diet-table th,
.diet-table td {
    padding: 10px 16px; /* Compact padding */
    text-align: left;
}

.diet-table th {
    background-color: var(--color-secondary-light);
    color: var(--color-secondary);
    font-family: var(--font-headings);
    font-weight: 700;
    border-bottom: 2px solid rgba(0, 0, 0, 0.03);
    font-size: 0.9rem; /* Smaller header text */
}

.diet-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: background-color 0.2s ease;
}

.diet-table tbody tr:hover {
    background-color: rgba(218, 158, 43, 0.02);
}

.food-cell {
    display: flex;
    align-items: center;
    gap: 8px; /* Compact gap */
    font-weight: 700;
    color: var(--color-secondary);
}

.food-emoji {
    font-size: 1.25rem; /* Smaller emoji */
}

/* Food usage tags */
.usage-tag {
    display: inline-block;
    padding: 3px 10px; /* Compact tag padding */
    border-radius: var(--border-radius-full);
    font-size: 0.7rem; /* Smaller tag font size */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.usage-tag.daily {
    background-color: var(--color-success-bg);
    color: var(--color-success);
}

.usage-tag.moderate {
    background-color: var(--color-warning-bg);
    color: var(--color-warning);
}

.usage-tag.danger {
    background-color: var(--color-danger-bg);
    color: var(--color-danger);
}

/* Rating Stars */
.rating-stars {
    display: inline-flex;
    gap: 4px;
    color: #ffb92d;
    font-size: 0.95rem;
}

.rating-stars.zero {
    color: #ccc;
}

/* Plants Grid */
.plants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.plant-card {
    background-color: var(--color-light);
    border-radius: var(--border-radius-m);
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.plant-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(218, 158, 43, 0.1);
}

.plant-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.plant-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.plant-card-description {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 16px;
    flex-grow: 1;
}

.plant-card-precautions {
    font-size: 0.85rem;
    color: #777;
    background-color: #f7f7f7;
    padding: 10px;
    border-radius: var(--border-radius-s);
    border-left: 3px solid var(--color-primary);
}

/* Empty State Message */
.diet-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 16px;
}

.diet-empty-state h3 {
    margin-bottom: 8px;
    color: var(--color-secondary);
}

.diet-empty-state p {
    color: #777;
}

/* --- 10. Reservation & Availability Section --- */
.booking-section {
    padding: 100px 0;
    background-color: var(--color-bg-warm);
    position: relative;
}

.booking-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
}

.booking-info {
    display: flex;
    flex-direction: column;
}

.booking-intro-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 32px;
}

.booking-instructions {
    margin-bottom: 40px;
}

.instruct-heading {
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.instruct-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.instruct-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1rem;
    color: #444;
}

.bullet-num {
    width: 28px;
    height: 28px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-weight: 700;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.booking-alternatives {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 32px;
}

.booking-alternatives p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 16px;
}

/* Booking Form Container */
.booking-form-container {
    background-color: var(--color-light);
    border-radius: var(--border-radius-l);
    padding: 40px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.col {
    flex: 1;
    min-width: 120px;
}

label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-secondary);
}

input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--border-radius-s);
    border: 1px solid rgba(0, 0, 0, 0.15);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    background-color: var(--color-light);
}

/* Step 1 Header & Time Badge */
.step-1-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.step-1-title {
    font-size: 1.15rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.fixed-time-badge {
    font-size: 0.8rem;
    background-color: var(--color-primary-light);
    color: var(--color-secondary);
    padding: 6px 14px;
    border-radius: var(--border-radius-full);
    font-weight: 700;
    border: 1px solid rgba(218, 158, 43, 0.2);
}

/* Date Summary Cards */
.date-summary-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.date-summary-card {
    flex: 1;
    background-color: #faf8f5;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius-s);
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.date-summary-card.active {
    border-color: var(--color-primary);
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(218, 158, 43, 0.12);
}

.summary-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.summary-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.summary-time {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 2px;
}

.date-summary-divider {
    color: #bbb;
    font-size: 0.9rem;
}

/* Bura Range Calendar Picker Component */
.bura-range-picker {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius-m);
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
}

.picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.picker-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-full);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.picker-nav-btn:hover:not(:disabled) {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.picker-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.picker-months-titles {
    display: flex;
    width: 100%;
    justify-content: space-around;
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 700;
    color: #17223b;
}

.month-title-1, .month-title-2 {
    flex: 1;
    text-align: center;
}

.picker-calendar-grid {
    display: flex;
    gap: 36px;
}

.month-view {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.month-name-mobile {
    display: none;
    text-align: center;
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 700;
    color: #17223b;
    margin-bottom: 12px;
}

.weekdays-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #17223b;
    margin-bottom: 14px;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    row-gap: 6px;
}

/* Day cell styling */
button.day-cell {
    border: none;
    background: transparent;
    font-family: inherit;
    padding: 0;
    width: 100%;
}

.day-cell {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: #2b3044;
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: all 0.15s ease;
}

.day-cell.empty {
    cursor: default;
    pointer-events: none;
}

.day-cell:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
    border-radius: 50%;
    z-index: 2;
}

.day-cell.disabled {
    color: #d1d5db;
    cursor: not-allowed;
    pointer-events: none;
}

.day-cell:hover:not(.disabled):not(.empty) {
    background-color: rgba(23, 34, 59, 0.08);
    border-radius: 50%;
}

/* Range highlighting & Badges */
.day-cell.in-range,
.day-cell.hover-range {
    background-color: #edf2f9;
    color: #17223b;
}

.day-cell.start-date {
    background-color: #17223b !important;
    color: #ffffff !important;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    font-weight: 700;
}

.day-cell.end-date {
    background-color: #17223b !important;
    color: #ffffff !important;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    font-weight: 700;
}

.day-cell.start-date.end-date {
    border-radius: 50% !important;
}

.day-cell.today:not(.start-date):not(.end-date) {
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: underline;
}

/* Actions below calendar */
.picker-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    gap: 16px;
    flex-wrap: wrap;
}

.btn-picker-reset {
    background-color: #f3f4f6;
    color: #374151;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius-s);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-picker-reset:hover {
    background-color: #e5e7eb;
    color: #111827;
}

/* Mobile Responsiveness for Picker */
@media (max-width: 767px) {
    .picker-calendar-grid {
        flex-direction: column;
        gap: 24px;
    }
    .month-title-2 {
        display: none;
    }
    #month-view-2 {
        display: none;
    }
    .month-name-mobile {
        display: block;
    }
    .picker-months-titles {
        display: none;
    }
    .picker-header {
        position: relative;
        justify-content: space-between;
    }
    .date-summary-box {
        flex-direction: column;
        gap: 8px;
    }
    .date-summary-divider {
        display: none;
    }
    .picker-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }
    .picker-actions button {
        width: 100%;
        justify-content: center;
    }
}

/* Harmonized Date & Time Combo inputs */
.datetime-combo {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.datetime-combo .date-input {
    flex: 1.6;
    min-width: 135px;
    height: 48px;
    border-radius: var(--border-radius-s);
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 10px 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark);
    background-color: #fff;
    box-sizing: border-box;
}

.datetime-combo .time-select,
.datetime-combo input[type="time"] {
    flex: 1;
    min-width: 90px;
    height: 48px;
    border-radius: var(--border-radius-s);
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 10px 10px 10px 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark);
    background-color: #fff;
    cursor: pointer;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .datetime-combo {
        flex-direction: column;
        gap: 8px;
    }
    .datetime-combo .date-input,
    .datetime-combo .time-select {
        width: 100%;
        flex: none;
    }
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(218, 158, 43, 0.15);
}

textarea {
    resize: vertical;
}

.error-msg {
    color: var(--color-danger);
    font-size: 0.75rem;
    font-weight: 600;
    display: none;
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: var(--color-danger);
    background-color: rgba(219, 58, 58, 0.02);
}

.form-group.invalid .error-msg {
    display: block;
}

.btn-submit {
    background-color: var(--color-primary);
    color: var(--color-light);
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
    box-shadow: 0 4px 14px rgba(218, 158, 43, 0.2);
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(218, 158, 43, 0.3);
}

/* Success Overlay */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 10;
}

.success-message {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-icon {
    font-size: 4rem;
    color: var(--color-success);
}

.success-message h3 {
    font-size: 1.8rem;
    color: var(--color-secondary);
}

.success-message p {
    color: #555;
    max-width: 320px;
    margin-bottom: 12px;
}

@keyframes scaleUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* --- 11. Footer Section --- */
.main-footer {
    background-color: var(--color-bg-warm);
    color: #555;
    padding: 80px 0 20px 0;
    border-top: 1px solid rgba(218, 158, 43, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid rgba(218, 158, 43, 0.2);
}

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

.footer-links h4,
.footer-contact h4 {
    color: var(--color-secondary);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #555;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 0.95rem;
    color: #555;
}

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

.footer-contact a {
    color: inherit;
}

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

.location-details {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
    padding-left: 24px;
    margin-top: -10px;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 30px;
    font-size: 0.85rem;
    color: #777;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}


/* --- 11. Blog Section & Modal --- */
.blog-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.blog-card {
    background-color: var(--color-light);
    border-radius: var(--border-radius-m);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(218, 158, 43, 0.1);
}

.blog-card-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 4px 12px;
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 12px;
}

.blog-card-meta i {
    color: var(--color-primary);
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-secondary);
    line-height: 1.35;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-primary);
}

.blog-card-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.blog-card:hover .blog-card-link {
    color: var(--color-primary-hover);
}

.blog-card-link i {
    transition: transform 0.2s ease;
}

.blog-card:hover .blog-card-link i {
    transform: translateX(4px);
}

/* Modal Article Styling */
.blog-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.blog-modal.open {
    display: flex;
}

.blog-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.blog-modal-container {
    position: relative;
    background-color: var(--color-light);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: var(--border-radius-l);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: scaleUp 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10;
}

.blog-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-secondary);
    z-index: 100;
    box-shadow: var(--shadow-subtle);
    transition: all 0.2s ease;
}

.blog-modal-close:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
    border-color: var(--color-primary);
}

.blog-modal-scroll {
    overflow-y: auto;
    max-height: 85vh;
    padding: 0 0 40px 0;
}

.blog-modal-hero {
    height: 360px;
    position: relative;
}

.blog-modal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-modal-body {
    padding: 40px;
}

.blog-modal-title {
    font-size: 2.2rem;
    color: var(--color-secondary);
    margin-bottom: 16px;
    line-height: 1.25;
}

.blog-modal-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 16px;
}

.blog-modal-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
}

.blog-modal-text h2 {
    font-size: 1.4rem;
    color: var(--color-secondary);
    margin: 32px 0 16px 0;
}

.blog-modal-text p {
    margin-bottom: 20px;
}

.blog-modal-text ul {
    list-style: none;
    margin: 0 0 24px 0;
}

.blog-modal-text li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.blog-modal-text li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M18.8 5.2c-1.1-1.1-2.9-1.1-4 0L4.5 15.5c-.3.3-.4.7-.4 1.1l-.8 4.6c-.1.5.3.9.8.8l4.6-.8c.4 0 .8-.2 1.1-.4L20.1 10.5c1.1-1.1 1.1-2.9 0-4l-1.3-1.3z' fill='%23DA9E2B'/><path d='M14.5 10.5l-2.5 2.5M11.5 7.5l-2.5 2.5' stroke='%23B5801C' stroke-width='1.5' stroke-linecap='round'/><path d='M20.5 3.5c-.8-.8-2-.8-2.8 0l-2.2 2.2 5 5 2.2-2.2c.8-.8.8-2 0-2.8L20.5 3.5z' fill='%234CAF50'/><path d='M22 2c-.5-.5-1.3-.5-1.8 0L17 5.2M18.8 2c.5-.5.5-1.3 0-1.8s-1.3-.5-1.8 0L15.2 2' stroke='%232E7D32' stroke-width='1.5' stroke-linecap='round'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Also target full blog post article body lists */
.post-content-body ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 0 24px 0 !important;
}

.post-content-body li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.post-content-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M18.8 5.2c-1.1-1.1-2.9-1.1-4 0L4.5 15.5c-.3.3-.4.7-.4 1.1l-.8 4.6c-.1.5.3.9.8.8l4.6-.8c.4 0 .8-.2 1.1-.4L20.1 10.5c1.1-1.1 1.1-2.9 0-4l-1.3-1.3z' fill='%23DA9E2B'/><path d='M14.5 10.5l-2.5 2.5M11.5 7.5l-2.5 2.5' stroke='%23B5801C' stroke-width='1.5' stroke-linecap='round'/><path d='M20.5 3.5c-.8-.8-2-.8-2.8 0l-2.2 2.2 5 5 2.2-2.2c.8-.8.8-2 0-2.8L20.5 3.5z' fill='%234CAF50'/><path d='M22 2c-.5-.5-1.3-.5-1.8 0L17 5.2M18.8 2c.5-.5.5-1.3 0-1.8s-1.3-.5-1.8 0L15.2 2' stroke='%232E7D32' stroke-width='1.5' stroke-linecap='round'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
}

.blog-modal-text strong {
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .blog-modal-hero {
        height: 220px;
    }
    
    .blog-modal-body {
        padding: 24px 16px;
    }
    
    .blog-modal-title {
        font-size: 1.6rem;
    }
}

/* --- 12. Sub-Page Layout Support --- */
.sub-page main {
    padding-top: var(--header-height);
}


/* --- 14. Comparison Section & Table --- */
.comparison-table-wrapper {
    margin-top: 40px;
    overflow-x: auto;
    border-radius: var(--border-radius-m);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(218, 158, 43, 0.1);
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-light);
    text-align: left;
}

.comp-table th, 
.comp-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comp-table th {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    color: var(--color-secondary);
    background-color: var(--color-primary-light);
}

.comp-table th:first-child {
    color: var(--color-dark);
}

.comp-table td:first-child {
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--color-secondary);
    width: 25%;
}

.comp-feature-yes {
    background-color: rgba(218, 158, 43, 0.02);
    border-left: 4px solid var(--color-primary);
}

.comp-feature-no {
    background-color: rgba(0, 0, 0, 0.01);
    opacity: 0.8;
}

.icon-yes {
    color: var(--color-primary);
    margin-right: 8px;
    font-size: 1.1rem;
}

.icon-no {
    color: #999;
    margin-right: 8px;
    font-size: 1.1rem;
}

/* --- 15. Testimonials Section --- */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--color-bg-warm);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--color-light);
    border-radius: var(--border-radius-l);
    padding: 32px;
    box-shadow: var(--shadow-subtle);
    border: 2px solid rgba(218, 158, 43, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

/* Cute Bunny Ears poking out of the card */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: -26px;
    left: 32px;
    width: 48px;
    height: 30px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 30'><path d='M 14 30 C 3 20, 1 5, 8 0 C 15 5, 20 20, 17 30 Z M 34 30 C 31 20, 33 5, 40 0 C 47 5, 45 20, 34 30 Z' fill='%23DA9E2B'/><path d='M 14 30 C 6 22, 5 9, 9 5 C 13 9, 17 22, 15 30 Z M 34 30 C 32 22, 31 9, 39 5 C 43 9, 42 22, 34 30 Z' fill='%23fdf1eb'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    transform-origin: bottom center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

/* Subtle Paw Print Watermark inside the card background */
.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 24px;
    right: 70px;
    width: 45px;
    height: 45px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23DA9E2B'><ellipse cx='12' cy='14' rx='4.5' ry='3.5'/><circle cx='7' cy='8' r='1.8'/><circle cx='10.5' cy='5.5' r='1.8'/><circle cx='14' cy='5.5' r='1.8'/><circle cx='17.5' cy='8' r='1.8'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.04;
    pointer-events: none;
    z-index: -1;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-medium);
    border-color: rgba(218, 158, 43, 0.25);
}

.testimonial-card:hover::before {
    transform: translateY(-2px) scale(1.1) rotate(2deg);
}

.testimonial-card:hover::after {
    transform: scale(1.18) rotate(15deg);
    opacity: 0.07;
}

.testimonial-stars {
    color: var(--color-warning);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-dark);
    opacity: 0.9;
    margin-bottom: 24px;
    font-style: italic;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.testimonial-owner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.owner-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.owner-avatar {
    width: 42px;
    height: 42px;
    border-radius: var(--border-radius-full);
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 2px solid rgba(218, 158, 43, 0.15);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card:hover .owner-avatar {
    transform: scale(1.1) rotate(8deg);
    background-color: var(--color-primary);
    color: var(--color-light);
    border-color: var(--color-primary);
}

.owner-name {
    font-family: var(--font-headings);
    font-size: 1.05rem;
    color: var(--color-secondary);
    font-weight: 600;
}

.owner-pet {
    font-size: 0.8rem;
    color: var(--color-dark);
    opacity: 0.6;
}

.instagram-verified-link {
    color: #e1306c;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-full);
    background-color: rgba(225, 48, 108, 0.08);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.instagram-verified-link:hover {
    background-color: #e1306c;
    color: var(--color-light);
}

/* --- 16. FAQ Section --- */
.faq-section {
    padding: 80px 0;
    background-color: var(--color-light);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.faq-item {
    border-radius: var(--border-radius-s);
    background-color: var(--color-bg-warm);
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(218, 158, 43, 0.05);
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-headings);
    font-size: 1.1rem;
    color: var(--color-secondary);
    font-weight: 600;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(218, 158, 43, 0.03);
}

.faq-question:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
    border-radius: var(--border-radius-s);
}

.faq-toggle-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-dark);
    opacity: 0.85;
}

.faq-answer p {
    padding: 8px 24px 20px 24px;
    margin: 0;
}

.faq-item.active {
    border-color: rgba(218, 158, 43, 0.15);
    box-shadow: var(--shadow-subtle);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

/* --- 13. Responsive Breakpoints --- */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .services-grid-wrapper {
        grid-template-columns: 1fr;
    }
    
    .services-media-showcase {
        order: -1;
    }
    
    .services-showcase-img {
        height: 360px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-media {
        order: -1;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    /* Navigation Menu Drawer */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-light);
        transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        padding: 40px 24px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
        overflow-y: auto;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    
    .nav-link {
        font-size: 1.1rem;
        display: block;
        padding: 10px 0;
    }
    
    .instagram-nav-item {
        margin-top: 20px;
    }
    
    .instagram-btn-nav {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 12px;
    }
    
    /* Active hamburger animation */
    .mobile-nav-toggle.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-nav-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    /* Diet Explorer */
    .diet-explorer-widget {
        padding: 24px 16px;
    }
    
    .diet-tabs-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .diet-tabs {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    
    .diet-tab {
        padding: 10px 16px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    .diet-search-container {
        width: 100%;
    }
    
    .diet-table,
    .diet-table thead,
    .diet-table tbody,
    .diet-table tr,
    .diet-table th,
    .diet-table td {
        display: block;
    }
    
    .diet-table thead {
        display: none;
    }
    
    .diet-table tbody tr {
        margin-bottom: 20px;
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: var(--border-radius-m);
        background-color: var(--color-light);
        padding: 16px;
        box-shadow: var(--shadow-subtle);
    }
    
    .diet-table tbody tr:hover {
        background-color: var(--color-light);
    }
    
    .diet-table td {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        text-align: left;
        font-size: 0.9rem;
    }
    
    .diet-table td:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .diet-table td::before {
        content: attr(data-label);
        font-weight: 700;
        font-family: var(--font-headings);
        color: var(--color-secondary);
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        opacity: 0.6;
        display: block;
    }

    .diet-table td.text-center {
        text-align: left;
    }

    .plants-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .plant-card {
        padding: 18px;
    }
    
    .booking-form-container {
        padding: 24px 16px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    /* FAQ & Comparison Table Mobile Responsive Overrides */
    .comp-table th, 
    .comp-table td {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .comp-table td:first-child {
        width: 30%;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 16px 20px;
    }
    
    .faq-answer {
        font-size: 0.9rem;
        padding: 0;
    }
    
    .faq-answer p {
        padding: 8px 20px 16px 20px;
    }
}

/* Decorative Bunny Tracks */
.bunny-tracks {
    position: absolute;
    pointer-events: none;
    opacity: 0.06; /* Very subtle and premium */
    z-index: 1;
}

.paw-print-svg {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
}

/* Individual track placements */
.track-hero-1 { top: 18%; left: 4%; transform: rotate(15deg); }
.track-hero-2 { top: 26%; left: 6%; transform: rotate(35deg); }
.track-hero-3 { top: 34%; left: 5%; transform: rotate(10deg); }

.track-hero-4 { top: 60%; right: 4%; transform: rotate(-25deg); }
.track-hero-5 { top: 68%; right: 5%; transform: rotate(-10deg); }
.track-hero-6 { top: 76%; right: 3%; transform: rotate(-35deg); }

.track-service-1 { top: 15%; left: 3%; transform: rotate(20deg); }
.track-service-2 { top: 23%; left: 5%; transform: rotate(40deg); }
.track-service-3 { top: 31%; left: 4%; transform: rotate(15deg); }

.track-service-4 { top: 55%; right: 3%; transform: rotate(-15deg); }
.track-service-5 { top: 63%; right: 4%; transform: rotate(-35deg); }
.track-service-6 { top: 71%; right: 3%; transform: rotate(-20deg); }

/* Ensure services section is relative for positioning tracks */
.services-section {
    position: relative;
    overflow: hidden;
}

.hero-section {
    overflow: hidden;
}

@media (max-width: 768px) {
    .bunny-tracks {
        display: none;
    }
}
