/* ==========================================================================
   MAKAS BARBERS - LUXURY MODERN STYLING
   Theme: Slate Charcoal Dark & Solid Gold (Clean Square Aesthetics)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & ROOT VARIABLES
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette derived from logo & barbershop atmosphere */
    --bg-dark: #0f151c;
    --bg-surface-1: #161f2a;
    --bg-surface-2: #1e2a39;
    --bg-card: #1c2734;
    --bg-card-hover: #243243;
    
    --gold-primary: #d4af37;
    --gold-light: #ebd69a;
    --gold-dark: #b59228;
    --champagne: #f0e6d2;
    --champagne-muted: #c4b9a5;
    
    --slate-border: rgba(226, 215, 190, 0.15);
    --slate-border-glow: rgba(212, 175, 55, 0.4);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    --font-accent: 'Playfair Display', serif;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.35);
    
    /* Clean Square Shape with Small Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-full: 6px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* --------------------------------------------------------------------------
   3. UTILITY CLASSES & CONTAINER
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5.5rem 0;
}

.text-gold {
    color: var(--gold-primary);
}

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

.w-100 {
    width: 100%;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
}

/* SOLID BUTTON SYSTEM - NO GRADIENTS, NO SHADOW GRADIENTS, SQUARE WITH SMALL RADIUS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 0.925rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    white-space: nowrap;
    box-shadow: none !important;
}

.btn-gold {
    background: var(--gold-primary);
    color: #0f151c;
    border-color: var(--gold-primary);
    font-weight: 700;
}

.btn-gold:hover {
    background: #e5c148;
    border-color: #e5c148;
    color: #0f151c;
    transform: translateY(-2px);
}

.btn-primary {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    border-color: rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
    background: var(--gold-primary);
    color: #0f151c;
    border-color: var(--gold-primary);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--slate-border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--gold-primary);
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.08);
}

.btn-outline-gold {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-light);
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: #0f151c;
    border-color: var(--gold-primary);
}

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

.btn-social {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--slate-border);
    color: var(--text-main);
    border-radius: var(--radius-md);
}

.btn-social:hover {
    background: #e1306c;
    border-color: #e1306c;
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   4. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition-normal);
}

.site-header.scrolled {
    background: rgba(15, 21, 28, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-border);
    padding: 0.8rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-img {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 2px solid var(--gold-primary);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--champagne);
    line-height: 1;
}

.brand-tagline {
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-top: 2px;
    font-weight: 600;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.4rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 90vh;
    padding-top: 8.5rem;
    padding-bottom: 5rem;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-light);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
    max-width: 540px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-highlights {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--slate-border);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.highlight-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.highlight-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
}

.highlight-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.highlight-divider {
    width: 1px;
    height: 35px;
    background: var(--slate-border);
}

/* HERO VISUAL STACK */
.hero-card-main {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--slate-border);
}

.hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 21, 28, 0.85) 0%, transparent 50%);
}

.hero-floating-badge {
    position: absolute;
    background: var(--bg-surface-1);
    border: 1px solid var(--slate-border);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 3;
}

.hero-floating-badge.top-right {
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--gold-light);
}

.hero-floating-badge.bottom-left {
    bottom: 1.5rem;
    left: 1.5rem;
}

.badge-avatar img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 2px solid var(--gold-primary);
}

.badge-meta strong {
    display: block;
    font-size: 0.95rem;
    color: var(--champagne);
}

.badge-meta span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. INFO RIBBON
   -------------------------------------------------------------------------- */
.info-ribbon {
    background: var(--bg-surface-1);
    padding: 1.5rem 0;
    border-top: 1px solid var(--slate-border);
    border-bottom: 1px solid var(--slate-border);
}

.ribbon-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ribbon-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ribbon-box i {
    font-size: 1.8rem;
    color: var(--gold-primary);
}

.ribbon-box strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
}

.ribbon-box span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-frame {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.owner-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.owner-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(15, 21, 28, 0.95);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    text-align: center;
}

.owner-badge .years {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}

.owner-badge .text {
    font-size: 0.75rem;
    color: var(--champagne-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--champagne);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.body-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: var(--bg-surface-1);
    border: 1px solid var(--slate-border);
    padding: 1.2rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.feature-card:hover {
    border-color: var(--gold-primary);
    transform: translateX(4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-card h4 {
    color: var(--text-main);
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.about-cta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   8. SERVICES SECTION - WITH IMAGE FOR EACH SERVICE (NO PRICING)
   -------------------------------------------------------------------------- */
.services-section {
    background: var(--bg-surface-1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--slate-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
}

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

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold-primary);
    color: #0f151c;
    font-size: 0.725rem;
    font-weight: 800;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
    letter-spacing: 1px;
    z-index: 5;
}

.service-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid var(--slate-border);
}

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

.service-card:hover .service-img {
    transform: scale(1.06);
}

.service-card-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.925rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-perks {
    border-top: 1px solid var(--slate-border);
    padding-top: 1.2rem;
    margin-bottom: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-perks li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--champagne-muted);
}

.service-perks li i {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

.service-btn {
    width: 100%;
}

/* --------------------------------------------------------------------------
   9. GALLERY SECTION
   -------------------------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    border: 1px solid var(--slate-border);
}

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

.gallery-hover {
    position: absolute;
    inset: 0;
    background: rgba(15, 21, 28, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    opacity: 0;
    transition: var(--transition-normal);
    color: var(--champagne);
    font-weight: 600;
}

.gallery-hover i {
    font-size: 2rem;
    color: var(--gold-primary);
}

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

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   10. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.reviews-section {
    background: var(--bg-surface-1);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--slate-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.review-stars {
    color: var(--gold-primary);
    display: flex;
    gap: 0.3rem;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--slate-border);
    padding-top: 1rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--gold-primary);
    color: #0f151c;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.review-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--champagne);
}

.review-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. CONTACT & LOCATION SECTION
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.info-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: var(--champagne);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.info-item p, .info-item a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-item a:hover {
    color: var(--gold-primary);
}

.social-connect strong {
    display: block;
    color: var(--champagne);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--bg-surface-1);
    border: 1px solid var(--slate-border);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--gold-primary);
    color: #0f151c;
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.contact-map-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-container {
    height: 420px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--slate-border);
}

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background: #090d12;
    border-top: 1px solid var(--slate-border);
    padding-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.925rem;
    margin-top: 1.2rem;
    max-width: 320px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    color: var(--champagne);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-services a,
.footer-contact p a {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-services a:hover,
.footer-contact p a:hover {
    color: var(--gold-primary);
    padding-left: 4px;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--slate-border);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.footer-socials a:hover {
    background: var(--gold-primary);
    color: #0f151c;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.crafted-by a {
    color: var(--gold-primary);
    font-weight: 600;
    transition: var(--transition-fast);
}

.crafted-by a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   13. MODALS (BOOKING & LIGHTBOX)
   -------------------------------------------------------------------------- */
/* BOOKING MODAL */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 20, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: var(--bg-surface-1);
    border: 1px solid var(--slate-border-glow);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    width: 100%;
    max-width: 520px;
    z-index: 2;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.booking-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--slate-border);
    color: var(--text-main);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: #e11d48;
    color: #ffffff;
    border-color: #e11d48;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--champagne);
    margin-bottom: 0.4rem;
}

.modal-header p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* FORM ELEMENTS */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--champagne-muted);
}

.form-group input,
.form-group select {
    background: var(--bg-dark);
    border: 1px solid var(--slate-border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: var(--text-main);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold-primary);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    pointer-events: none;
    font-size: 0.8rem;
}

.btn-block {
    width: 100%;
    margin-top: 0.5rem;
}

/* LIGHTBOX MODAL */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 12, 0.95);
}

.lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-border);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-caption {
    margin-top: 1rem;
    color: var(--champagne);
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

/* --------------------------------------------------------------------------
   14. FLOATING ACTION BUTTONS
   -------------------------------------------------------------------------- */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition-normal);
    position: relative;
}

.float-whatsapp {
    background: #25d366;
}

.float-whatsapp:hover {
    transform: scale(1.08);
}

.float-phone {
    background: var(--gold-primary);
    color: #0f151c;
}

.float-phone:hover {
    transform: scale(1.08);
}

.float-tooltip {
    position: absolute;
    right: 60px;
    background: rgba(15, 21, 28, 0.95);
    color: var(--champagne);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    border: 1px solid var(--slate-border);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.float-btn:hover .float-tooltip {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   15. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 2rem auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-highlights {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-surface-1);
        border-left: 1px solid var(--slate-border);
        padding: 6rem 2rem 2rem 2rem;
        transition: var(--transition-normal);
        z-index: 1001;
    }

    .main-nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .mobile-toggle {
        display: block;
        z-index: 1002;
    }

    .header-btn {
        display: none;
    }

    .ribbon-wrapper {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .hero-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .highlight-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .modal-content {
        padding: 1.8rem 1.2rem;
    }
}
