@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1e3a8a;
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #b8860b;
    --bg-color: #f8fafc;
    --surface: #ffffff;
    --text-color: #0f172a;
    --text-light: #475569;
    --text-lighter: #94a3b8;

    --card-bg: rgba(255, 255, 255, 0.88);
    --border-color: rgba(226, 232, 240, 0.8);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.12);

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ========== GLASS EFFECTS ========== */
.glass-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    line-height: 1.2;
    font-weight: 700;
}

p { margin-bottom: 1rem; color: var(--text-light); }

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

.section { padding: 80px 0; position: relative; }

.bg-light { background: var(--surface); }
.bg-dark { background: #0f172a; color: #f8fafc; }
.bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark p, .bg-dark label { color: #f8fafc; }
.bg-dark .text-light { color: #94a3b8; }
.bg-dark .glass-card { background: rgba(30, 41, 59, 0.6); border-color: rgba(255,255,255,0.08); }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 6px 20px -6px var(--primary);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.15), rgba(255,255,255,0));
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 25px -8px var(--primary); color: #ffffff; }
.btn-primary:hover::after { left: 200%; }

.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #ffffff; box-shadow: 0 6px 20px -6px var(--primary); }

.btn-block { width: 100%; }

/* ========== HEADER NAV ========== */
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.brand-icon {
    font-size: 1.75rem;
    color: var(--gold);
}

.brand-text { display: flex; flex-direction: column; }
.brand-text strong { font-family: var(--font-heading); font-size: 1.15rem; color: var(--text-color); letter-spacing: -0.01em; }
.brand-text small { font-family: var(--font-body); color: var(--text-lighter); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }

.desktop-nav { display: flex; gap: 24px; align-items: center; }

.desktop-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

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

.desktop-nav a:hover { color: var(--primary); }
.desktop-nav a:hover::after { width: 100%; }

.btn-book-nav { padding: 10px 24px; font-size: 0.85rem; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px;
}

.mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.mobile-nav.active { max-height: 500px; padding: 0.5rem 0; }

.mobile-nav a {
    padding: 1rem 24px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { background: var(--bg-color); color: var(--primary); }

/* ========== HERO ========== */
.hero {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -15%; right: -8%;
    width: 50vw; height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
}

.hero-inner { display: flex; align-items: center; gap: 60px; }

.hero-content { flex: 1.2; z-index: 2; }

.hero-content h1 {
    font-size: clamp(2.25rem, 5vw, 4.25rem);
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-color);
}

.hero-content h1 span { color: var(--primary); font-style: italic; font-weight: 400; }

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    max-width: 90%;
    color: var(--text-light);
}

.hero-actions { display: flex; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    flex-wrap: wrap;
}

.stat-item { display: flex; align-items: center; gap: 10px; }
.stat-icon { font-size: 1.5rem; }
.stat-item span { font-size: 0.9rem; font-weight: 600; color: var(--text-color); }

.hero-image-wrap { flex: 0.8; position: relative; }

.hero-image-wrap::after {
    content: '';
    position: absolute;
    bottom: -15px; right: -15px;
    width: 80%; height: 80%;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.hero-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
}

/* ========== SECTIONS ========== */
.section-header { text-align: center; margin-bottom: 3.5rem; position: relative; }

.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 0.75rem; }

.section-header p { font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.section-header::after {
    content: '';
    display: block;
    width: 50px; height: 3px;
    background: var(--gold);
    margin: 1.25rem auto 0;
}

/* ========== SERVICES ========== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

.service-card {
    padding: 2.5rem 2rem;
    text-align: left;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon { font-size: 2.25rem; color: var(--gold); margin-bottom: 1.25rem; display: inline-block; }

.service-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; font-family: var(--font-body); font-weight: 600; }

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.read-more::after { content: '→'; margin-left: 6px; transition: transform 0.3s; }
.read-more:hover::after { transform: translateX(5px); }

/* ========== ABOUT ========== */
.about-inner { display: flex; align-items: center; gap: 50px; }

.about-image { flex: 1; position: relative; }
.about-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-content { flex: 1.2; }
.about-content h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1.25rem; }
.about-content p { font-size: 1.05rem; margin-bottom: 1.5rem; }

.about-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.detail-box small { display: block; font-size: 0.75rem; color: var(--text-lighter); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.detail-box strong { font-size: 1rem; color: var(--text-color); }

.approach-list { list-style: none; padding: 0; }
.approach-list li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; color: var(--text-light); }
.approach-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ========== GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
}

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

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

/* ========== BOOKING ========== */
.booking-wrapper { max-width: 880px; margin: 0 auto; padding: 3rem; }

.booking-info h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 0.5rem; }
.booking-info p { margin-bottom: 2rem; font-size: 1.05rem; }

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

label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.bg-dark label { color: #cbd5e1; }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.bg-dark input, .bg-dark textarea { background: rgba(15, 23, 42, 0.8); border-color: rgba(255,255,255,0.1); color: #fff; }
input:focus, textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }

/* ========== CALENDAR ========== */
.custom-booking-ui {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.bg-dark .custom-booking-ui { background: rgba(15, 23, 42, 0.5); border-color: rgba(255,255,255,0.1); }

.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }

#cal-month-year { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--text-color); }
.bg-dark #cal-month-year { color: #fff; }

.cal-nav-btn {
    background: none;
    border: 1px solid var(--border-color);
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1.15rem;
    color: var(--text-color);
    transition: var(--transition);
}

.bg-dark .cal-nav-btn { color: #fff; border-color: rgba(255,255,255,0.15); }
.cal-nav-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-lighter);
    margin-bottom: 0.4rem;
}

.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }

.cal-day {
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
}

.bg-dark .cal-day { color: #fff; }
.cal-day:hover:not(.disabled) { background: rgba(37, 99, 235, 0.1); color: var(--primary); }
.cal-day.disabled { color: var(--text-lighter); cursor: not-allowed; opacity: 0.4; }
.cal-day.today { border: 1px solid var(--primary); color: var(--primary); }
.cal-day.selected { background: var(--primary); color: #fff; box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25); }

/* ========== TIME SLOTS ========== */
.time-section { border-left: 1px solid var(--border-color); padding-left: 1.5rem; }
.time-section h4 { font-family: var(--font-body); font-size: 0.95rem; margin-bottom: 1.25rem; font-weight: 600; }

.time-group { margin-bottom: 1.25rem; }
.time-group-header { font-size: 0.75rem; font-weight: 600; color: var(--text-lighter); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.4rem; }

.time-pills-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }

.time-pill {
    padding: 9px 0;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    background: var(--surface);
    color: var(--text-color);
}

.bg-dark .time-pill { background: rgba(15, 23, 42, 0.8); color: #fff; border-color: rgba(255,255,255,0.1); }
.time-pill:hover { border-color: var(--primary); color: var(--primary); }
.time-pill.selected { background: var(--primary); border-color: var(--primary); color: #fff; }

.tz-info { font-size: 0.75rem; color: var(--text-lighter); margin-top: 1.25rem; margin-bottom: 0; }

.empty-msg {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; height: 100%;
    color: var(--text-lighter); font-size: 0.85rem; padding: 2rem 0;
}

/* ========== FORM MESSAGES ========== */
.form-msg { margin-top: 1rem; padding: 1rem; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; display: none; }
.form-msg.success { background: #d1fae5; color: #065f46; display: block; border: 1px solid #10b981; }
.form-msg.error { background: #fee2e2; color: #991b1b; display: block; border: 1px solid #ef4444; }

/* ========== CONTACT ========== */
.contact-inner { display: flex; gap: 50px; }

.contact-info { flex: 1; }
.contact-info h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2.5rem; font-size: 1.05rem; }

.method-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }

.method-icon {
    font-size: 1.3rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-dark);
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.method-item strong { font-family: var(--font-heading); font-size: 1.15rem; display: block; margin-bottom: 0.15rem; }
.method-item p { margin-bottom: 0; font-size: 0.95rem; }

.contact-form-wrap { flex: 1; padding: 2.5rem; }
.contact-form-wrap h3 { font-size: 1.5rem; margin-bottom: 1.25rem; font-family: var(--font-body); }

/* ========== FOOTER ========== */
.footer {
    background: #0f172a;
    color: var(--text-lighter);
    text-align: center;
    padding: 2.5rem 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

/* ========== MODAL ========== */
.modal-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    display: none; align-items: center; justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}
.modal-overlay.active { display: flex; opacity: 1; }

.modal-content {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

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

.modal-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.modal-content h2 { font-family: var(--font-heading); font-size: 1.75rem; margin-bottom: 0.75rem; }
.modal-text { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.75rem; text-align: left; max-height: 180px; overflow-y: auto; padding-right: 8px; line-height: 1.7; }
.modal-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.error-msg { color: #dc2626; font-size: 0.82rem; margin-bottom: 0.75rem; font-weight: 500; }

/* ========== RESPONSIVE — TABLET ========== */
@media (max-width: 992px) {
    .section { padding: 60px 0; }
    .hero { min-height: auto; padding: 40px 0; }
    .hero-inner { flex-direction: column; gap: 40px; text-align: center; }
    .hero-content p { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image-wrap { width: 65%; margin: 0 auto; }
    .hero-image-wrap::after { bottom: -10px; right: -10px; }
    .about-inner { flex-direction: column; gap: 40px; }
    .about-image { order: -1; width: 70%; margin: 0 auto; }
    .contact-inner { flex-direction: column; gap: 40px; }
    .booking-wrapper { padding: 2rem 1.5rem; }
}

/* ========== RESPONSIVE — MOBILE ========== */
@media (max-width: 768px) {
    .desktop-nav, .btn-book-nav { display: none; }
    .mobile-menu-btn { display: block; }

    .header-inner { height: 64px; }
    .mobile-nav { top: 64px; }

    .section { padding: 50px 0; }

    .hero-content h1 { font-size: 2rem; }
    .hero-image-wrap { width: 80%; }
    .hero-stats { flex-direction: column; gap: 1rem; align-items: center; }

    .section-header h2 { font-size: 1.75rem; }
    .section-header { margin-bottom: 2.5rem; }

    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .service-card { padding: 2rem 1.5rem; }

    .about-image { width: 90%; }
    .about-details { grid-template-columns: 1fr; gap: 1rem; }
    .about-content h2 { font-size: 1.75rem; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

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

    .custom-booking-ui {
        grid-template-columns: 1fr;
        padding: 1.25rem;
        gap: 1.25rem;
    }
    .time-section {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-color);
        padding-top: 1.25rem;
    }

    .contact-form-wrap { padding: 1.75rem; }

    .modal-content { padding: 2rem 1.5rem; }
    .modal-actions { flex-direction: column; }
    .modal-actions .btn { width: 100%; }

    .btn { padding: 12px 24px; font-size: 0.9rem; }
}

/* ========== RESPONSIVE — SMALL MOBILE ========== */
@media (max-width: 400px) {
    .container { padding: 0 16px; }
    .hero-content h1 { font-size: 1.65rem; }
    .hero-image-wrap { width: 90%; }
    .gallery-grid { grid-template-columns: 1fr; }
    .booking-wrapper { padding: 1.5rem 1rem; }
    .custom-booking-ui { padding: 1rem; }
    .time-pills-grid { grid-template-columns: 1fr; }
    .stat-item span { font-size: 0.82rem; }
}
