/* =====================================================
   TANILBA BAY SHOPPING CENTRE - STYLES
   A modern, clean design for a local shopping centre
   ===================================================== */

/* CSS Custom Properties */
:root {
    /* Colors */
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #3b82f6;
    --color-secondary: #0f172a;
    --color-accent: #f59e0b;
    
    /* Neutrals */
    --color-white: #ffffff;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;
    
    /* Semantic */
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray-700);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    z-index: 9999;
    transition: top var(--transition-base);
}

.skip-link:focus {
    top: var(--space-md);
    color: var(--color-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-gray-900);
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

.lead {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--color-gray-700);
    border-color: var(--color-gray-300);
}

.btn-outline:hover {
    background: var(--color-gray-50);
    border-color: var(--color-gray-400);
    color: var(--color-gray-900);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-100);
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--color-gray-900);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
}

.logo-text small {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-gray-500);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-menu a {
    color: var(--color-gray-600);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

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

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gray-700);
    border-radius: 2px;
    position: relative;
    transition: all var(--transition-base);
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    top: -8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--space-xl);
        gap: var(--space-lg);
        background: var(--color-white);
        transform: translateX(100%);
        transition: transform var(--transition-base);
    }
    
    .nav-menu a {
        font-size: 1.125rem;
    }
    
    .nav-toggle:checked ~ .nav-menu {
        transform: translateX(0);
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span {
        background: transparent;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span::before {
        top: 0;
        transform: rotate(45deg);
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span::after {
        top: 0;
        transform: rotate(-45deg);
    }
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.85) 0%,
        rgba(15, 23, 42, 0.7) 50%,
        rgba(37, 99, 235, 0.4) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
    max-width: 800px;
}

.hero h1 {
    margin-bottom: var(--space-lg);
    color: var(--color-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero .highlight {
    color: var(--color-primary-light);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.hero-actions .btn-outline {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl);
}

.badge-rating {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-900);
}

.badge-stars {
    color: var(--color-accent);
    font-size: 1.125rem;
}

.badge-text {
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

.hero-scroll a:hover {
    color: var(--color-white);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* =====================================================
   SECTIONS
   ===================================================== */

.section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header.left {
    text-align: left;
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    color: var(--color-gray-500);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header.left p {
    margin: 0;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */

.about {
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-content p {
    margin-bottom: var(--space-lg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.feature {
    padding: var(--space-lg);
    background: var(--color-gray-50);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    text-align: center;
}

.feature:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-img {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-sm);
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.feature h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    color: var(--color-gray-800);
}

.feature p {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin: 0;
}

.about-image {
    position: relative;
}

.image-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.image-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.image-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   STORES SECTION
   ===================================================== */

.stores {
    background: var(--color-gray-50);
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.store-card {
    position: relative;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.store-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.store-card.featured {
    border: 2px solid var(--color-primary);
}

.store-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    z-index: 1;
}

.store-image {
    margin: calc(var(--space-xl) * -1) calc(var(--space-xl) * -1) var(--space-lg);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
}

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

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

.store-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.store-card h3 {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.store-category {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.store-desc {
    color: var(--color-gray-500);
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
}

.store-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.store-meta .rating {
    color: var(--color-accent);
    font-weight: 600;
}

.store-meta .reviews {
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

.store-phone {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-gray-600);
    font-size: 0.875rem;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.store-phone svg {
    flex-shrink: 0;
}

.store-phone:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Nearby Section */
.nearby-section {
    margin-top: var(--space-3xl);
    padding-top: var(--space-3xl);
    border-top: 1px solid var(--color-gray-200);
}

.nearby-section h3 {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--color-gray-600);
    font-family: var(--font-sans);
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.nearby-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-lg);
}

.nearby-item span {
    font-size: 1.5rem;
}

.nearby-item strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-gray-800);
}

.nearby-item p {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin: 0;
}

/* =====================================================
   GALLERY SECTION
   ===================================================== */

.gallery {
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.gallery-item:hover figcaption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item-large {
        grid-column: span 1;
    }
}

/* =====================================================
   HOURS SECTION
   ===================================================== */

.hours {
    background: var(--color-gray-50);
}

.hours-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.hours-table {
    margin-top: var(--space-xl);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-gray-200);
}

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

.hours-row .day {
    font-weight: 500;
    color: var(--color-gray-700);
}

.hours-row .time {
    color: var(--color-gray-900);
    font-weight: 600;
}

.hours-row.highlight {
    background: rgba(37, 99, 235, 0.05);
    margin: 0 calc(var(--space-md) * -1);
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    border-radius: var(--radius-md);
    position: relative;
}

.hours-row .note {
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 500;
    display: none;
}

@media (min-width: 600px) {
    .hours-row .note {
        display: block;
    }
}

.hours-note {
    margin-top: var(--space-lg);
    font-size: 0.875rem;
    color: var(--color-gray-400);
}

.hours-visual {
    position: relative;
}

.hours-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hours-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 5/4;
    object-fit: cover;
}

.open-now-card {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-lg) var(--space-2xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-xl);
    color: var(--color-white);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.open-now-card .pulse {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 12px;
    height: 12px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.open-now-card .status {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: var(--space-xs);
}

.open-now-card p {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 768px) {
    .hours-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hours-visual {
        order: -1;
    }
}

/* =====================================================
   LOCATION SECTION
   ===================================================== */

.location {
    background: var(--color-white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.address-card,
.directions-card {
    padding: var(--space-xl);
    background: var(--color-gray-50);
    border-radius: var(--radius-xl);
}

.address-card h3,
.directions-card h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.address-card address {
    color: var(--color-gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.directions-card ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.directions-card li {
    position: relative;
    padding-left: var(--space-lg);
    color: var(--color-gray-600);
}

.directions-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.map-container {
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.map-image {
    position: relative;
}

.map-image img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
}

.map-image figcaption {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
}

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

/* =====================================================
   FAQ SECTION
   ===================================================== */

.faq {
    background: var(--color-gray-50);
}

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

.faq-item {
    border-bottom: 1px solid var(--color-gray-200);
    background: var(--color-white);
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    font-weight: 600;
    color: var(--color-gray-800);
    cursor: pointer;
    list-style: none;
    transition: background var(--transition-fast);
}

.faq-item summary:hover {
    background: var(--color-gray-50);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-primary);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--space-md);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */

.contact {
    background: var(--color-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-gray-50);
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

.contact-method:hover {
    background: var(--color-gray-100);
    transform: translateX(4px);
}

.contact-icon {
    font-size: 2rem;
}

.contact-method strong {
    display: block;
    color: var(--color-gray-800);
    margin-bottom: var(--space-xs);
}

.contact-method p {
    margin: 0;
    color: var(--color-gray-500);
    font-size: 0.9375rem;
}

.cta-card {
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-2xl);
    color: var(--color-white);
    text-align: center;
}

.cta-image {
    width: 120px;
    height: 90px;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.cta-card h3 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-card p {
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.cta-card .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.cta-card .btn-primary:hover {
    background: var(--color-gray-100);
    border-color: var(--color-gray-100);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: var(--color-gray-900);
    color: var(--color-gray-400);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.footer-brand .logo-text small {
    color: var(--color-gray-500);
}

.footer-brand p {
    max-width: 300px;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--color-gray-400);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-links address {
    line-height: 1.8;
}

.footer-hours {
    margin-top: var(--space-md);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-hours strong {
    color: var(--color-success);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-gray-800);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--color-gray-400);
}

.footer-bottom a:hover {
    color: var(--color-white);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* =====================================================
   UTILITIES
   ===================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus visible styles */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero-scroll,
    .btn,
    .nav-toggle-label {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: var(--space-xl) 0;
    }
    
    .hero-bg,
    .hero-overlay {
        display: none;
    }
    
    .hero-content {
        position: static;
    }
    
    .hero h1 {
        color: var(--color-gray-900);
    }
    
    .hero-subtitle {
        color: var(--color-gray-600);
    }
    
    .section {
        padding: var(--space-xl) 0;
        page-break-inside: avoid;
    }
    
    .gallery,
    .contact-cta {
        display: none;
    }
}
