/* Villa Gaïa - Main CSS */
:root {
    --gold: #C9A961;
    --gold-light: #E5D4A1;
    --gold-dark: #A88B4A;
    --black: #0D0D0D;
    --dark: #1a1a1a;
    --gray-900: #212121;
    --gray-800: #333;
    --gray-700: #555;
    --gray-600: #666;
    --gray-500: #888;
    --gray-400: #aaa;
    --gray-300: #ccc;
    --gray-200: #e5e5e5;
    --gray-100: #f5f5f5;
    --white: #fff;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.7;
}

a { color: var(--gold-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

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

/* Skip Link */
.skip-link {
    position: absolute; top: -100px; left: 0; background: var(--gold); color: var(--black);
    padding: 10px 20px; z-index: 1000; transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border: 2px solid transparent; border-radius: 4px;
    font-family: var(--font-body); font-size: 1rem; font-weight: 600;
    text-decoration: none; cursor: pointer; transition: all 0.3s;
}
.btn-primary { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--black); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.9rem; }
.btn-block { width: 100%; }

/* Header */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(13, 13, 13, 0.95); backdrop-filter: blur(10px);
    transition: all 0.3s;
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo img { height: 50px; width: auto; object-fit: contain; }
.nav-list { display: flex; list-style: none; gap: 30px; }
.nav-list a { color: var(--gray-300); font-weight: 500; transition: color 0.2s; position: relative; }
.nav-list a:hover, .nav-list a.active { color: var(--gold); }
.nav-list a.nav-cta { background: var(--gold); color: var(--black); padding: 10px 20px; border-radius: 4px; font-weight: 600; }
.nav-list a.nav-cta:hover { background: var(--gold-light); color: var(--black); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all 0.3s; }

@media (max-width: 768px) {
    .nav { position: fixed; top: 70px; left: 0; right: 0; background: var(--black); padding: 20px; transform: translateY(-100%); opacity: 0; visibility: hidden; transition: all 0.3s; }
    .nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-list { flex-direction: column; gap: 15px; }
    .nav-toggle { display: block; }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* Hero */
.hero {
    min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative; text-align: center; padding: 100px 20px 60px;
    background: var(--black); overflow: hidden;
}

/* Ken Burns Slideshow */
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide { 
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.5s ease-in-out;
    will-change: transform, opacity;
}
.hero-slide.active { opacity: 1; }

/* Ken Burns Animations - different movements */
.hero-slide.animating[data-direction="zoom-in"] { animation: kb-zoom-in 8s ease-out forwards; }
.hero-slide.animating[data-direction="zoom-out"] { animation: kb-zoom-out 8s ease-out forwards; }
.hero-slide.animating[data-direction="pan-left"] { animation: kb-pan-left 8s ease-out forwards; }
.hero-slide.animating[data-direction="pan-right"] { animation: kb-pan-right 8s ease-out forwards; }
.hero-slide.animating[data-direction="zoom-in-left"] { animation: kb-zoom-left 8s ease-out forwards; }
.hero-slide.animating[data-direction="zoom-in-right"] { animation: kb-zoom-right 8s ease-out forwards; }

@keyframes kb-zoom-in { from { transform: scale(1); } to { transform: scale(1.12); } }
@keyframes kb-zoom-out { from { transform: scale(1.12); } to { transform: scale(1); } }
@keyframes kb-pan-left { from { transform: scale(1.15) translateX(5%); } to { transform: scale(1.15) translateX(-5%); } }
@keyframes kb-pan-right { from { transform: scale(1.15) translateX(-5%); } to { transform: scale(1.15) translateX(5%); } }
@keyframes kb-zoom-left { from { transform: scale(1) translate(3%, 2%); } to { transform: scale(1.1) translate(-3%, -2%); } }
@keyframes kb-zoom-right { from { transform: scale(1) translate(-3%, -2%); } to { transform: scale(1.1) translate(3%, 2%); } }

.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.65) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-logo { height: 120px; width: auto; object-fit: contain; margin-bottom: 30px; animation: fadeInUp 1s; }
.hero-title { font-family: var(--font-heading); font-size: 3rem; font-weight: 600; color: var(--white); margin-bottom: 20px; line-height: 1.2; animation: fadeInUp 1s 0.2s backwards; }
.hero-title strong { color: var(--gold); }
.hero-subtitle { font-size: 1.3rem; color: var(--gray-400); margin-bottom: 30px; animation: fadeInUp 1s 0.4s backwards; }
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 40px; animation: fadeInUp 1s 0.6s backwards; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: rgba(201, 169, 97, 0.15); border: 1px solid var(--gold); border-radius: 30px; color: var(--gold); font-size: 0.9rem; }
.badge svg { flex-shrink: 0; }
.hero-scroll { position: absolute; bottom: 30px; color: var(--gray-400); display: flex; flex-direction: column; align-items: center; gap: 10px; cursor: pointer; text-decoration: none; z-index: 2; }
.hero-scroll span { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; }
.hero-scroll svg { animation: bounce 2s ease-in-out infinite; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(10px); } 60% { transform: translateY(5px); } }

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-logo { height: 70px; }
}

/* Sections */
.section { padding: 80px 0; }
.section-title { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 600; text-align: center; margin-bottom: 20px; color: var(--black); }
.section-subtitle { text-align: center; color: var(--gray-600); margin-bottom: 50px; font-size: 1.1rem; }

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-title { font-size: 2rem; }
}

/* Intro */
.section-intro { background: var(--gray-100); }
.intro-content { max-width: 900px; margin: 0 auto; }
.intro-content h2 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 20px; color: var(--black); }
.intro-content p { margin-bottom: 15px; }
.intro-content a { color: var(--gold-dark); border-bottom: 1px solid var(--gold-light); }
.intro-content a:hover { color: var(--gold); }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.feature-card { background: var(--white); padding: 40px 30px; border-radius: 10px; text-align: center; box-shadow: 0 5px 30px rgba(0,0,0,0.08); transition: all 0.3s; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.feature-icon { width: 80px; height: 80px; margin: 0 auto 25px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light), var(--gold)); display: flex; align-items: center; justify-content: center; color: var(--black); }
.feature-card h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 15px; color: var(--black); }
.feature-card p { color: var(--gray-600); font-size: 0.95rem; }
.feature-card a { color: var(--gold-dark); }

/* Apartment */
.apartment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.apartment-specs { display: flex; gap: 30px; margin-bottom: 30px; }
.spec { text-align: center; padding: 20px; background: var(--gray-100); border-radius: 8px; min-width: 80px; }
.spec-value { display: block; font-size: 2rem; font-weight: 700; color: var(--gold-dark); }
.spec-label { font-size: 0.85rem; color: var(--gray-600); }
.apartment-description p { margin-bottom: 15px; }
.apartment-info h3 { font-family: var(--font-heading); font-size: 1.3rem; margin: 30px 0 15px; color: var(--black); }
.amenities-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.amenities-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; }
.amenities-list svg { color: var(--gold); flex-shrink: 0; }
.gallery-main { border-radius: 10px; overflow: hidden; margin-bottom: 15px; }
.gallery-main img { width: 100%; height: 350px; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 20px; }
.gallery-thumbs img { width: 100%; height: 70px; object-fit: cover; border-radius: 6px; cursor: pointer; opacity: 0.7; transition: opacity 0.2s; }
.gallery-thumbs img:hover, .gallery-thumbs img.active { opacity: 1; }

/* Apartment Slider */
.apartment-slider { position: relative; border-radius: 12px; overflow: hidden; background: var(--gray-100); }
.slider-container { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.slider-track { display: flex; height: 100%; transition: transform 0.5s ease-out; }
.slider-slide { flex: 0 0 100%; height: 100%; }
.slider-slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-btn { 
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.95); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.2s; z-index: 2;
}
.slider-btn:hover { background: var(--white); transform: translateY(-50%) scale(1.1); }
.slider-btn svg { color: var(--black); }
.slider-prev { left: 15px; }
.slider-next { right: 15px; }
.slider-dots { 
    position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 2;
}
.slider-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.5); border: none; cursor: pointer;
    transition: all 0.2s;
}
.slider-dot.active, .slider-dot:hover { background: var(--white); transform: scale(1.2); }

@media (max-width: 900px) {
    .apartment-grid { grid-template-columns: 1fr; }
    .apartment-gallery-preview { order: -1; }
}

/* Location */
.section-location { background: var(--gray-100); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.map-container { border-radius: 10px; overflow: hidden; box-shadow: 0 5px 30px rgba(0,0,0,0.1); }
.map-container iframe { display: block; }
.location-card { background: var(--white); padding: 30px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.location-card h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; color: var(--black); }
.location-card h3 svg { stroke: var(--gold); flex-shrink: 0; }
.location-address { color: var(--gray-600); margin-bottom: 25px; }
.travel-options { display: flex; gap: 10px; margin-bottom: 20px; }
.travel-option {
    flex: 1; padding: 15px; border: 2px solid var(--gray-200); border-radius: 10px;
    background: var(--white); cursor: pointer; text-align: center; transition: all 0.2s;
    display: flex; flex-direction: column; align-items: center;
}
.travel-option:hover { border-color: var(--gold-light); }
.travel-option.active { border-color: var(--gold); background: rgba(201, 169, 97, 0.1); }
.travel-option svg { stroke: var(--gray-500); margin-bottom: 5px; width: 32px; height: 32px; }
.travel-option:hover svg { stroke: var(--gold-light); }
.travel-option.active svg { stroke: var(--gold); }
.travel-time { display: block; font-size: 1.3rem; font-weight: 700; color: var(--black); }
.travel-label { font-size: 0.8rem; color: var(--gray-500); }
.poi-list { margin-top: 30px; }
.poi-list h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 15px; color: var(--black); }
.poi-list ul { list-style: none; }
.poi-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--gray-200); }
.poi-name { color: var(--gray-700); }
.poi-distance { color: var(--gold-dark); font-weight: 500; }

@media (max-width: 900px) {
    .location-grid { grid-template-columns: 1fr; }
    .map-container iframe { height: 300px; }
    .travel-options { flex-wrap: wrap; }
    .travel-option { min-width: calc(33% - 10px); }
}

/* Gallery */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.filter-btn { padding: 10px 25px; border: 2px solid var(--gray-300); border-radius: 30px; background: transparent; cursor: pointer; font-weight: 500; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gallery-item { position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 20px; }
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: var(--white); font-weight: 500; }

/* Booking */
.section-booking { background: var(--black); color: var(--white); }
.section-booking .section-title { color: var(--white); }
.section-booking .section-subtitle { color: var(--gray-400); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.calendar-header { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 25px; }
.calendar-year { font-family: var(--font-heading); font-size: 1.8rem; color: var(--gold); }
.calendar-nav { background: none; border: 2px solid var(--gray-700); color: var(--white); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; transition: all 0.2s; }
.calendar-nav:hover { border-color: var(--gold); color: var(--gold); }
.slots-list { display: flex; flex-direction: column; gap: 10px; max-height: 400px; overflow-y: auto; padding-right: 10px; }
.slot-item { padding: 15px 20px; border: 2px solid var(--gray-700); border-radius: 8px; cursor: pointer; transition: all 0.2s; display: flex; justify-content: space-between; align-items: center; }
.slot-item:hover { border-color: var(--gold); }
.slot-item.selected { background: var(--gold); border-color: var(--gold); color: var(--black); }
.slot-item.booked { opacity: 0.5; cursor: not-allowed; }
.slot-item.booked:hover { border-color: var(--gray-700); }
.slot-dates-label { font-weight: 600; }
.slot-status-label { font-size: 0.85rem; padding: 4px 12px; border-radius: 20px; background: rgba(255,255,255,0.1); }
.slot-item.selected .slot-status-label { background: rgba(0,0,0,0.2); }
.slots-legend { display: flex; justify-content: center; gap: 30px; margin-top: 20px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--gray-400); }
.legend-color { width: 12px; height: 12px; border-radius: 50%; }
.legend-color.available { background: var(--success); }
.legend-color.booked { background: var(--danger); }
.booking-placeholder { text-align: center; color: var(--gray-500); padding: 60px 20px; }
.booking-placeholder svg { margin-bottom: 20px; color: var(--gray-600); }
.booking-form { background: var(--dark); padding: 30px; border-radius: 10px; }
.booking-summary { background: rgba(201, 169, 97, 0.1); border: 1px solid var(--gold); padding: 20px; border-radius: 8px; margin-bottom: 25px; }
.booking-summary h4 { color: var(--gold); margin-bottom: 10px; }
.booking-summary p { color: var(--gray-300); margin: 5px 0; }
.booking-summary strong { color: var(--white); }
.form-group { margin-bottom: 15px; }
.form-group label { display: none; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 18px; border: 2px solid var(--gray-700); border-radius: 6px;
    background: var(--gray-900); color: var(--white); font-size: 1rem; font-family: inherit;
    transition: border-color 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group.submitted input:invalid, .form-group.submitted textarea:invalid { border-color: #dc3545; }
.form-group.submitted input:valid, .form-group.submitted textarea:valid { border-color: #28a745; }
.form-hint { font-size: 0.8rem; color: var(--gray-400); margin-top: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.payment-options { display: flex; gap: 15px; }
.payment-option { flex: 1; }
.payment-option input { display: none; }
.payment-label { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 15px; border: 2px solid var(--gray-700); border-radius: 8px; cursor: pointer; transition: all 0.2s; color: var(--gray-400); }
.payment-option input:checked + .payment-label { border-color: var(--gold); color: var(--gold); background: rgba(201, 169, 97, 0.1); }
.booking-timer { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 15px; background: rgba(245, 158, 11, 0.1); border: 1px solid var(--warning); border-radius: 8px; margin-bottom: 20px; color: var(--warning); }
.booking-info { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; }
.info-card { background: var(--dark); padding: 30px; border-radius: 10px; }
.info-card h4 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--gold); margin-bottom: 15px; }
.price-main { font-size: 2rem; font-weight: 700; color: var(--white); }
.price-main small { font-size: 1rem; font-weight: 400; color: var(--gray-500); }
.price-detail { color: var(--gray-400); margin-top: 5px; }
.info-card ul { list-style: none; color: var(--gray-300); }
.info-card li { padding: 8px 0; border-bottom: 1px solid var(--gray-800); }

@media (max-width: 900px) {
    .booking-grid { grid-template-columns: 1fr; }
    .booking-info { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .payment-options { flex-direction: column; }
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 15px; color: var(--black); }
.contact-info > p { color: var(--gray-600); margin-bottom: 30px; }
.contact-list { list-style: none; margin-bottom: 30px; }
.contact-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.contact-list svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.contact-list a, .contact-list span { color: var(--gray-700); }
.social-link { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-dark); font-weight: 500; }
.social-link:hover { color: var(--gold); }
.contact-form { background: var(--gray-100); padding: 40px; border-radius: 10px; }
.contact-form .form-group label { display: none; }
.contact-form .form-group input, .contact-form .form-group textarea {
    background: var(--white); border: 2px solid var(--gray-200); color: var(--gray-800);
}
.contact-form .form-group input::placeholder, .contact-form .form-group textarea::placeholder { color: var(--gray-500); }
.contact-form .form-group input:focus, .contact-form .form-group textarea:focus { border-color: var(--gold); }
.contact-form .form-group.submitted input:invalid, .contact-form .form-group.submitted textarea:invalid { border-color: #dc3545; }
.contact-form .form-group.submitted input:valid, .contact-form .form-group.submitted textarea:valid { border-color: #28a745; }

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

/* SEO Links */
.section-seo-links { background: var(--gray-100); padding: 40px 0; }
.section-seo-links h2 { font-family: var(--font-heading); font-size: 1.3rem; text-align: center; margin-bottom: 20px; color: var(--black); }
.seo-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.seo-links a { padding: 10px 20px; background: var(--white); border-radius: 30px; color: var(--gray-700); font-size: 0.9rem; transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.seo-links a:hover { background: var(--gold); color: var(--black); }

/* Footer */
.footer { background: var(--black); color: var(--gray-400); padding: 60px 0 30px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 50px; width: auto; object-fit: contain; margin-bottom: 15px; }
.footer-brand p { color: var(--gray-500); font-size: 0.95rem; }
.footer-brand a { color: var(--gold); }
.footer-links h4, .footer-contact h4 { color: var(--gold); font-size: 1rem; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--gray-400); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { margin-bottom: 10px; }
.footer-contact .social-link { color: var(--gray-400); }
.footer-contact .social-link:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid var(--gray-800); color: var(--gray-500); font-size: 0.9rem; }
.footer-bottom a { color: var(--gray-400); }

@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}

/* Phone Float */
.phone-float {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background: var(--gold); border-radius: 50%; display: none; align-items: center; justify-content: center;
    color: var(--black); box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4); z-index: 90; transition: transform 0.3s;
}
.phone-float:hover { transform: scale(1.1); color: var(--black); }
@media (max-width: 768px) { .phone-float { display: flex; } }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 200;
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-close { position: absolute; top: 20px; right: 30px; background: none; border: none; color: var(--white); font-size: 2.5rem; cursor: pointer; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; padding: 20px; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-content { max-width: 90%; max-height: 90%; text-align: center; }
.lightbox-content img { max-width: 100%; max-height: 80vh; border-radius: 5px; }
.lightbox-caption { color: var(--gray-400); margin-top: 15px; }

/* Toast */
.toast {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px);
    background: var(--gray-900); color: var(--white); padding: 15px 30px; border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3); opacity: 0; transition: all 0.3s; z-index: 300;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }

/* Page Content (SEO pages) */
.page-content { padding-top: 70px; }
.page-hero { background: var(--black); color: var(--white); padding: 60px 0; }
.page-hero h1 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--white); }
.page-hero h1 a { color: var(--gold); }
.breadcrumb { margin-bottom: 20px; font-size: 0.9rem; }
.breadcrumb a { color: var(--gray-400); }
.breadcrumb span { color: var(--gold); }
.content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 50px; padding: 60px 0; }
.content-main section { margin-bottom: 40px; }
.content-main h2 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 15px; color: var(--black); }
.content-main h3 { font-family: var(--font-heading); font-size: 1.2rem; margin: 25px 0 10px; color: var(--black); }
.content-main p { margin-bottom: 15px; }
.content-main a { color: var(--gold-dark); border-bottom: 1px solid var(--gold-light); }
.content-main ol, .content-main ul { margin: 15px 0 15px 25px; }
.content-main li { margin-bottom: 8px; }
.check-list { list-style: none; margin-left: 0 !important; }
.check-list li { padding-left: 30px; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: bold; }
.cta-box { background: var(--gold); padding: 30px; border-radius: 10px; text-align: center; margin-top: 40px; }
.cta-box h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 10px; color: var(--black); }
.cta-box p { margin-bottom: 20px; color: var(--gray-800); }
.cta-box .btn-primary { background: var(--black); color: var(--white); border-color: var(--black); }
.cta-box .btn-primary:hover { background: var(--gray-900); }
.sidebar-card { background: var(--gray-100); padding: 25px; border-radius: 10px; margin-bottom: 20px; }
.sidebar-card h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 20px; color: var(--black); }
.sidebar-features { list-style: none; margin-bottom: 20px; }
.sidebar-features li { padding: 8px 0; border-bottom: 1px solid var(--gray-200); color: var(--gray-700); }
.sidebar-nav { display: flex; flex-direction: column; gap: 10px; }
.sidebar-nav a { color: var(--gray-700); padding: 10px 15px; background: var(--white); border-radius: 6px; transition: all 0.2s; }
.sidebar-nav a:hover { background: var(--gold); color: var(--black); }
.distance-info { background: var(--gray-100); padding: 25px; border-radius: 10px; margin: 20px 0; }
.distance-list { list-style: none; display: flex; gap: 20px; flex-wrap: wrap; margin-top: 10px; }
.distance-list li { display: flex; align-items: center; gap: 10px; }
.distance-list .mode { font-size: 1.5rem; }
.distance-list .time { font-weight: 600; color: var(--gold-dark); }
.equipment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 20px 0; }
.equipment-category { background: var(--gray-100); padding: 20px; border-radius: 8px; }
.equipment-category h3 { font-size: 1rem; margin-bottom: 10px; }
.equipment-category ul { list-style: none; margin: 0; }
.equipment-category li { padding: 5px 0; font-size: 0.95rem; }

@media (max-width: 900px) {
    .content-grid { grid-template-columns: 1fr; }
    .content-sidebar { order: -1; }
    .page-hero h1 { font-size: 1.8rem; }
}

/* Page Gallery (SEO pages) */
.page-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; margin-bottom: 30px; }
.page-gallery img { width: 100%; height: 150px; object-fit: cover; border-radius: 8px; cursor: pointer; transition: transform 0.3s; }
.page-gallery img:hover { transform: scale(1.05); }
.page-gallery:empty { display: none; }

/* FAQ Section */
.section-faq { background: var(--gray-100); }
.faq-grid { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.faq-question {
    width: 100%; padding: 20px 25px; display: flex; justify-content: space-between; align-items: center;
    background: none; border: none; cursor: pointer; text-align: left;
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--black);
    transition: background 0.2s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question svg { flex-shrink: 0; color: var(--gold); transition: transform 0.3s; }
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s; }
.faq-answer.open { max-height: 500px; }
.faq-answer p { padding: 0 25px 20px; color: var(--gray-600); line-height: 1.7; margin: 0; }
.faq-answer p:first-child { padding-top: 5px; }

/* reCAPTCHA notice */
.recaptcha-notice { font-size: 0.8rem; color: var(--gray-500); margin: 15px 0; }
.recaptcha-notice a { color: var(--gray-600); }

/* Email protected (no mailto) */
.email-protected { cursor: default; color: inherit; }

/* Page content enhanced styles */
.page-hero-subtitle { color: rgba(255,255,255,0.9); font-size: 1.2rem; margin-top: 15px; }

/* City intro with logo */
.city-intro { display: flex; gap: 30px; align-items: flex-start; margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid var(--gray-200); }
.city-logo { flex-shrink: 0; width: 150px; }
.city-logo img { width: 100%; height: auto; }
.city-intro-text h2 { margin-top: 0; }
@media (max-width: 600px) {
    .city-intro { flex-direction: column; align-items: center; text-align: center; }
    .city-logo { width: 120px; }
}

/* Content images */
.content-image { margin: 25px 0; }
.content-image img { width: 100%; height: auto; border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.content-image figcaption { font-size: 0.9rem; color: var(--gray-600); margin-top: 10px; text-align: center; font-style: italic; }
.content-image-large img { max-height: 400px; object-fit: cover; }

/* Image gallery inline (2 images side by side) */
.image-gallery-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 25px 0; }
.image-gallery-inline figure { margin: 0; }
.image-gallery-inline img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; }
.image-gallery-inline figcaption { font-size: 0.85rem; color: var(--gray-600); margin-top: 8px; text-align: center; }
@media (max-width: 600px) { .image-gallery-inline { grid-template-columns: 1fr; } }

/* Highlight section */
.highlight-section { background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%); padding: 30px; border-radius: 12px; border-left: 4px solid var(--gold); margin: 30px 0; }
.highlight-section h2 { color: var(--gold-dark); margin-top: 0; }

/* Info box */
.info-box { background: var(--gray-100); padding: 20px; border-radius: 8px; margin: 20px 0; }
.info-box h4 { margin: 0 0 10px 0; color: var(--gold-dark); }
.info-box p { margin: 0; }
.info-box a { color: var(--gold-dark); font-weight: 600; }

/* Sidebar city card */
.sidebar-city { text-align: center; padding: 25px 20px; }
.sidebar-city-logo { max-width: 120px; height: auto; margin: 0 auto 10px; }
.sidebar-city-tagline { margin: 0; color: var(--gray-600); font-style: italic; }

/* Sidebar highlight */
.sidebar-highlight { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--white); }
.sidebar-highlight h3 { color: var(--white); }
.sidebar-highlight p { margin: 0; opacity: 0.95; }

/* Sidebar distances */
.sidebar-distances li { display: flex; justify-content: space-between; }

/* ===== NEW CALENDAR STYLES (Dark Background) ===== */
.booking-calendar { background: var(--dark); border-radius: 12px; padding: 25px; position: relative; }
.calendar-title { font-size: 1.3rem; font-weight: 600; color: var(--white); min-width: 180px; text-align: center; }
.calendar-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 5px; }
.calendar-weekdays span { text-align: center; font-size: 0.85rem; font-weight: 600; color: var(--gray-400); padding: 8px 0; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.calendar-day { 
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center; 
    font-size: 0.9rem; border-radius: 4px; background: var(--gray-800); color: var(--gray-400);
    cursor: default; transition: all 0.2s; position: relative; 
}
.calendar-day.empty { background: transparent; }
.calendar-day.available { background: #2d5a3d; color: #90EE90; cursor: pointer; }
.calendar-day.available:hover { background: #3d7a5d; transform: scale(1.05); z-index: 2; }
.calendar-day.booked { background: #5a2d2d; color: #ffb3b3; }
.calendar-day.selected { background: var(--gold) !important; color: var(--black) !important; font-weight: 600; }
.calendar-day.slot-start { border-radius: 4px 0 0 4px; }
.calendar-day.slot-end { border-radius: 0 4px 4px 0; }
.calendar-day.slot-middle { border-radius: 0; }
.calendar-day.past { opacity: 0.3; }
.calendar-day.highlight { box-shadow: 0 0 0 2px var(--gold); z-index: 3; }

/* Slot Tooltip */
.slot-tooltip { 
    position: absolute; background: var(--white); border-radius: 10px; padding: 15px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); z-index: 100; min-width: 200px;
    pointer-events: none; transform: translateY(-10px); opacity: 0; transition: all 0.2s;
}
.slot-tooltip.visible { transform: translateY(0); opacity: 1; }
.tooltip-dates { font-weight: 600; color: var(--black); margin-bottom: 8px; font-size: 0.95rem; }
.tooltip-status { font-size: 0.85rem; margin-bottom: 5px; }
.tooltip-status.available { color: #28a745; }
.tooltip-status.booked { color: #dc3545; }
.tooltip-price { font-size: 0.9rem; color: var(--gray-600); }

/* Slot Preview Panel */
.slot-preview { background: var(--dark); border: 2px solid var(--gold); border-radius: 12px; padding: 25px; }
.slot-preview h3 { color: var(--gold); font-size: 1.2rem; margin-bottom: 20px; text-align: center; }
.preview-dates { background: rgba(201,169,97,0.1); border-radius: 8px; padding: 15px; text-align: center; margin-bottom: 20px; }
.preview-dates { color: var(--white); font-size: 1.1rem; font-weight: 500; }
.preview-details { margin-bottom: 20px; }
.preview-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--gray-700); }
.preview-row:last-child { border-bottom: none; }
.preview-row span { color: var(--gray-400); }
.preview-row strong { color: var(--white); }

/* Legend for dark background */
.slots-legend { display: flex; gap: 20px; margin-top: 20px; justify-content: center; }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--gray-400); }
.legend-color { width: 16px; height: 16px; border-radius: 4px; }
.legend-color.available { background: #2d5a3d; }
.legend-color.booked { background: #5a2d2d; }
.legend-color.selected { background: var(--gold); }

/* Calendar responsive */
@media (max-width: 768px) {
    .booking-calendar { padding: 15px; }
    .calendar-day { font-size: 0.8rem; }
    .calendar-weekdays span { font-size: 0.75rem; padding: 5px 0; }
    .calendar-title { font-size: 1.1rem; }
    .slots-legend { flex-wrap: wrap; gap: 10px; }
    .slot-tooltip { display: none !important; }
    .slot-preview { padding: 20px; }
    .preview-dates { font-size: 0.95rem; }
}

/* Booking Timer - always visible in form */
.booking-timer { background: rgba(255,193,7,0.15); border: 1px solid var(--gold); border-radius: 8px; padding: 12px 15px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.booking-timer svg { color: var(--gold); flex-shrink: 0; }
.booking-timer span { color: var(--gold); }
#timerCount { font-family: monospace; font-size: 1.1rem; }

/* Payment CB disabled */
.payment-cb { position: relative; }
.payment-cb input:disabled + .payment-label { opacity: 0.6; cursor: not-allowed; }
.coming-soon { display: block; font-size: 0.75rem; color: var(--gold-dark); font-weight: 600; margin-top: 2px; }

/* Booking Confirmation */
.booking-confirmation { text-align: center; padding: 20px 0; }
.confirmation-header { margin-bottom: 30px; }
.confirmation-header svg { margin-bottom: 15px; }
.confirmation-header h3 { font-size: 1.5rem; color: #90EE90; margin-bottom: 10px; }
.confirmation-header p { color: var(--gray-300); }

.confirmation-rib { background: var(--gray-800); border-radius: 12px; padding: 25px; margin: 25px 0; text-align: left; }
.confirmation-rib h4 { margin: 0 0 15px 0; color: var(--white); }
.rib-details { background: var(--dark); border-radius: 8px; padding: 15px; margin-bottom: 15px; }
.rib-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--gray-700); color: var(--white); }
.rib-row:last-child { border-bottom: none; }
.rib-label { font-weight: 500; color: var(--gray-400); }
.rib-warning { background: rgba(255,193,7,0.15); border: 1px solid var(--gold); border-radius: 8px; padding: 15px; color: var(--gold); font-size: 0.9rem; }

.confirmation-summary { background: var(--gray-800); border: 1px solid var(--gray-700); border-radius: 8px; padding: 20px; margin: 20px 0; text-align: left; color: var(--white); }
.confirmation-email { color: var(--gray-400); font-size: 0.9rem; margin: 20px 0; }

/* Booking placeholder */
.booking-placeholder { text-align: center; color: var(--gray-400); padding: 60px 20px; }
.booking-placeholder svg { margin-bottom: 20px; color: var(--gray-500); }

/* Footer Reassurance Bar */
.footer-reassurance { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 15px; padding: 35px 0; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); max-width: 950px; margin-left: auto; margin-right: auto; }
.reassurance-item { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; min-width: 100px; }
.reassurance-item svg { stroke: var(--gold); }
.reassurance-item span { font-size: 0.85rem; color: var(--gray-300); }

/* Footer Legal */
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { font-size: 0.8rem; color: var(--gray-400); margin: 0; }
.footer-bottom strong { color: var(--gold); }
.footer-bottom a { color: var(--gray-300); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 768px) {
    .footer-reassurance { gap: 25px 15px; justify-content: center; padding: 25px 0; }
    .reassurance-item { flex: 0 0 calc(33.33% - 15px); min-width: 90px; }
    .reassurance-item svg { width: 28px; height: 28px; }
    .reassurance-item span { font-size: 0.75rem; }
    .footer-bottom p { font-size: 0.7rem; line-height: 1.5; }
    
    .calendar-day { font-size: 0.8rem; }
    .calendar-weekdays span { font-size: 0.75rem; }
}


