/* ==========================================================================
   Salon Colombia Design System & CSS Stylesheet
   Theme: Gold & Dark Charcoal Luxury
   Fonts: Playfair Display (Serif) & Plus Jakarta Sans (Sans-serif)
   ========================================================================== */

/* Variables & Design Tokens */
:root {
    /* Color Palette */
    --charcoal: #0a0a0a;
    --charcoal-medium: #121212;
    --charcoal-light: #1a1a1a;
    --charcoal-card: #1f1f1f;
    --charcoal-border: rgba(255, 255, 255, 0.08);
    
    --gold: #d4af37;
    --gold-dark: #b89321;
    --gold-light: #f3e5ab;
    --gold-glow: rgba(212, 175, 55, 0.25);
    
    --cream: #f9f6f0;
    --white: #ffffff;
    --text-primary: #f0f0f0;
    --text-secondary: #b0b0b0;
    --text-muted: #757575;
    
    /* Layout & Utilities */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --box-shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
    --box-shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15);
    --backdrop-blur: blur(12px);
}

/* Reset & Core Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--charcoal);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.text-gold {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--charcoal);
}
::-webkit-scrollbar-thumb {
    background: var(--charcoal-card);
    border: 2px solid var(--charcoal);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Section Header Component */
.section-header {
    margin-bottom: 60px;
}
.section-tagline {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 600;
}
.section-title {
    font-size: 38px;
    font-weight: 600;
}
.header-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto 0;
    position: relative;
}
.header-line::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--charcoal);
    box-shadow: var(--box-shadow-gold);
    border: 1px solid transparent;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
}
.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--charcoal-border);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--gold);
    color: var(--gold);
}

.btn-block {
    width: 100%;
}

/* Floating Navigation Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border-bottom: 1px solid var(--charcoal-border);
    transition: var(--transition-smooth);
}
.main-header.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}
.main-header.scrolled .header-container {
    height: 64px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
}
.logo-img {
    height: 42px;
    width: 42px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: var(--box-shadow-gold);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), height var(--transition-smooth), width var(--transition-smooth);
}
.logo:hover .logo-img {
    transform: rotate(360deg);
}
.main-header.scrolled .logo-img {
    height: 34px;
    width: 34px;
}
.logo-accent {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.nav-menu {
    display: flex;
    gap: 36px;
}
.nav-link {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.03em;
    position: relative;
    padding: 8px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition-fast);
}
.nav-link:hover {
    color: var(--white);
}
.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}
.mobile-menu-toggle .bar {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('images/salon_interior.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.95) 85%);
    z-index: 1;
}
.hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.hero-content {
    max-width: 650px;
    margin-bottom: 60px;
}
.usp-badge {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.usp-icon {
    width: 16px;
    height: 16px;
    animation: flashPower 2s infinite alternate;
}

@keyframes flashPower {
    0% { opacity: 0.5; color: var(--gold); }
    100% { opacity: 1; color: var(--gold-light); }
}

.hero-title {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-quick-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    background: rgba(26, 26, 26, 0.65);
    border: 1px solid var(--charcoal-border);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-premium);
}
.quick-info-item h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 8px;
}
.quick-info-item p {
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
}
.status-badge {
    display: inline-block;
    margin-top: 6px;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}
.status-badge.closed {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Why Choose Us Features */
.features-section {
    padding: 100px 0;
    background: var(--charcoal-medium);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature-card {
    background: var(--charcoal-light);
    border: 1px solid var(--charcoal-border);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--box-shadow-premium);
}
.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}
.feature-card:hover .feature-icon-wrapper {
    background: var(--gold);
    color: var(--charcoal);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.feat-icon {
    width: 24px;
    height: 24px;
}
.feature-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
}
.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Services Styling & Custom Tabs */
.services-section {
    padding: 100px 0;
    background: var(--charcoal);
}

.service-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}
.filter-btn {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    background: var(--charcoal-light);
    border: 1px solid var(--charcoal-border);
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}
.filter-btn:hover {
    color: var(--white);
    border-color: var(--gold);
}
.filter-btn.active {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
    box-shadow: var(--box-shadow-gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--charcoal-light);
    border: 1px solid var(--charcoal-border);
    padding: 24px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}
.service-card:hover {
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.service-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
}
.service-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}
.service-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
    margin-top: auto;
}
.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}
.book-srv-btn {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}
.book-srv-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
    box-shadow: var(--box-shadow-gold);
}

/* Gallery Showcase Grid */
.gallery-section {
    padding: 100px 0;
    background: var(--charcoal-medium);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    aspect-ratio: 4 / 5;
    border: 1px solid var(--charcoal-border);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0) 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}
.gallery-overlay h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 4px;
}
.gallery-overlay p {
    font-size: 12px;
    color: var(--gold);
}

/* Testimonials / Slider */
.testimonials-section {
    padding: 100px 0;
    background: var(--charcoal);
}
.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.testimonial-track {
    display: flex;
    transition: var(--transition-smooth);
}
.testimonial-slide {
    flex: 0 0 100%;
    text-align: center;
    padding: 0 40px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}
.testimonial-slide.active {
    display: block;
    opacity: 1;
}
.stars {
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 24px;
    font-style: italic;
}
.client-name {
    font-size: 16px;
    color: var(--gold);
    font-weight: 600;
}
.client-title {
    font-size: 12px;
    color: var(--text-muted);
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--charcoal-light);
    border: 1px solid var(--charcoal-border);
    cursor: pointer;
    transition: var(--transition-fast);
}
.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* Appointments display */
.appointments-display-section {
    padding: 40px 0;
    background: var(--charcoal-medium);
    border-top: 1px solid var(--charcoal-border);
}
.my-appointments-box {
    background: var(--charcoal-light);
    border: 1px solid var(--gold);
    border-radius: var(--border-radius-md);
    padding: 30px;
}
.my-appointments-box h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 6px;
}
.my-appointments-box p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.appointments-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.apt-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--charcoal-border);
    padding: 20px;
    border-radius: var(--border-radius-md);
    position: relative;
}
.apt-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 600;
}
.apt-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 4px 0;
}
.apt-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    text-transform: uppercase;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
}
.apt-cancel {
    margin-top: 12px;
    font-size: 11px;
    color: #ef4444;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

/* Contact Info & Stylized Leaflet Map */
.contact-section {
    padding: 100px 0;
    background: var(--charcoal-medium);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}
.info-card {
    background: var(--charcoal-light);
    border: 1px solid var(--charcoal-border);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    margin-bottom: 24px;
}
.info-card h3 {
    font-size: 26px;
    color: var(--white);
    margin-bottom: 4px;
}
.salon-owner {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 30px;
    font-style: italic;
}
.info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}
.info-icon {
    font-size: 20px;
    color: var(--gold);
}
.info-text strong {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}
.info-text p {
    font-size: 15px;
    color: var(--white);
    margin-top: 4px;
}
.info-text a:hover {
    color: var(--gold);
}

.social-links-box {
    background: var(--charcoal-light);
    border: 1px solid var(--charcoal-border);
    padding: 24px 30px;
    border-radius: var(--border-radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.social-links-box h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}
.social-icons {
    display: flex;
    gap: 12px;
}
.social-icon-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--charcoal);
    border: 1px solid var(--charcoal-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}
.social-icon-link:hover {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
    box-shadow: var(--box-shadow-gold);
}
.social-icon-link svg {
    width: 18px;
    height: 18px;
}

.contact-map-block {
    height: 100%;
    min-height: 400px;
}
.map-wrapper {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--charcoal-border);
    box-shadow: var(--box-shadow-premium);
}
#salon-map {
    width: 100%;
    height: 100%;
    min-height: 450px;
    background: var(--charcoal-light);
}

/* Customizing Leaflet Map Theme to dark-lux */
.leaflet-container {
    background: #111 !important;
}
.leaflet-tile {
    filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%);
}
.leaflet-popup-content-wrapper {
    background: var(--charcoal-light) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--gold) !important;
    border-radius: var(--border-radius-md) !important;
}
.leaflet-popup-tip {
    background: var(--gold) !important;
}

/* Footer Section */
.main-footer {
    background: var(--charcoal);
    border-top: 1px solid var(--charcoal-border);
    padding: 80px 0 30px;
}
.footer-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.footer-brand {
    max-width: 450px;
}
.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 16px;
    line-height: 1.8;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--charcoal-border);
    padding-top: 30px;
    font-size: 13px;
    color: var(--text-muted);
}
.footer-developer-link {
    color: var(--gold);
    font-weight: 600;
    transition: var(--transition-fast);
}
.footer-developer-link:hover {
    color: var(--gold-light);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}
.footer-meta-links {
    display: flex;
    gap: 24px;
}
.footer-meta-links a:hover {
    color: var(--gold);
}

/* Dynamic Interactive Booking Modal Overlay */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}
.booking-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.booking-modal {
    background: var(--charcoal-light);
    border: 1px solid var(--gold);
    width: 100%;
    max-width: 580px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    padding: 40px;
    transform: scale(0.9);
    transition: var(--transition-smooth);
    max-height: 90vh;
    overflow-y: auto;
}
.booking-modal-overlay.open .booking-modal {
    transform: scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}
.close-modal-btn:hover {
    color: var(--gold);
}

.booking-modal-header {
    margin-bottom: 30px;
}
.booking-modal-header h2 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 6px;
}
.booking-modal-header p {
    font-size: 13px;
    color: var(--text-secondary);
}

.booking-form .form-group {
    margin-bottom: 20px;
}
.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.booking-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin-bottom: 8px;
}
.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px 16px;
    background: var(--charcoal-medium);
    border: 1px solid var(--charcoal-border);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    color: var(--white);
    transition: var(--transition-fast);
}
.booking-form input:focus,
.booking-form select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}
.booking-form select option {
    background: var(--charcoal-light);
    color: var(--white);
}

/* Modal Booking Success Screen */
.booking-success-message {
    text-align: center;
    padding: 20px 0;
    display: none;
}
.booking-success-message.show {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.booking-success-message h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 12px;
}
.booking-success-message p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.success-details-box {
    background: var(--charcoal-medium);
    border: 1px solid var(--charcoal-border);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    text-align: left;
    margin-bottom: 30px;
}
.success-details-box p {
    margin: 6px 0;
    font-size: 13px;
    color: var(--text-primary);
}
.success-details-box strong {
    color: var(--gold);
}

/* Booking Success Modal Action Buttons */
.booking-success-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: stretch;
    margin-top: 30px;
}

.booking-success-actions .btn {
    width: 100%;
    min-height: 50px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #1f9c4f 0%, #128c7e 100%);
    color: var(--white);
    border: 1px solid rgba(37, 211, 102, 0.2);
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.2);
    gap: 10px;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #25d366 0%, #1cbd74 100%);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-whatsapp:active {
    transform: translateY(0) scale(0.98);
}

.whatsapp-btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Custom Checkmark Animation keyframes */
.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}
.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid var(--gold);
}
.success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}
.success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
}
.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: var(--gold);
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}
.success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 19px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}
.success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}
.success-checkmark .check-icon .icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-sizing: content-box;
}
.success-checkmark .check-icon .icon-fix {
    top: 8px;
    left: 28px;
    z-index: 1;
    width: 5px;
    height: 54px;
}

@keyframes icon-line-tip {
    0% { width: 0; left: 1px; top: 19px; }
    54% { width: 0; left: 1px; top: 19px; }
    70% { width: 50px; left: -8px; top: 37px; }
    84% { width: 17px; left: 21px; top: 48px; }
    100% { width: 25px; left: 19px; top: 46px; }
}
@keyframes icon-line-long {
    0% { width: 0; right: 46px; top: 54px; }
    65% { width: 0; right: 46px; top: 54px; }
    84% { width: 55px; right: 0px; top: 35px; }
    100% { width: 47px; right: 8px; top: 38px; }
}

/* Responsive Breakpoints & Mobile Optimization */
@media (max-width: 992px) {
    .hero-title {
        font-size: 46px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-map-block {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 15px 0;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--charcoal-medium);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--charcoal-border);
    }
    .nav-menu.open {
        left: 0;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-menu-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-section {
        padding-top: 120px;
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-quick-info {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }
    .booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .booking-form .form-group {
        margin-bottom: 16px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .btn-book-now {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .booking-modal {
        padding: 24px;
    }
}
