/* ==================== MODERN REDESIGN ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f172e;
    --secondary-color: #1a2847;
    --tertiary-color: #2a3f5f;
    --accent-gold: #d4af37;
    --accent-light: #e8c547;
    --text-light: #f5f7fa;
    --text-muted: #a8b2c1;
    --text-dark: #0f172e;
    --border-radius: 16px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-light);
    background: linear-gradient(135deg, #0f172e 0%, #1a2847 50%, #15213d 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ==================== TYPOGRAPHY ==================== */
h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

p {
    font-size: 1.01rem;
    color: var(--text-muted);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: var(--accent-gold);
    transition: var(--transition);
    position: relative;
}

a:hover {
    color: var(--accent-light);
}

/* ==================== HEADER & NAVIGATION ==================== */
header {
    background: rgba(15, 23, 46, 0.92);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar {
    width: 100%;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    border: 2px solid var(--accent-gold);
    object-fit: cover;
    display: flex;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.logo-image-link {
    display: flex;
    text-decoration: none;
}

.logo {
    text-decoration: none;
}

.logo h1 {
    font-size: 1.4rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin: 0;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 2px solid var(--accent-gold);
    border-radius: 10px;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-light));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ==================== MAIN CONTENT ==================== */
main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wrapper {
    width: 100%;
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, rgba(26, 40, 71, 0.8) 0%, rgba(42, 63, 95, 0.6) 50%, rgba(26, 40, 71, 0.8) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
    padding: 8rem 4rem;
    text-align: center;
    border-radius: var(--border-radius);
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(212, 175, 55, 0.08);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

/* ==================== CTA BUTTON ==================== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-light));
    color: var(--text-dark);
    padding: 1rem 2.8rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.cta-button:active {
    transform: translateY(-2px);
}

.cta-button-box {
    display: flex;
    width: fit-content;
    justify-content: center;
    align-items: center;
    padding: 0.75rem;
    margin: 1.4rem auto 0;
    border-radius: calc(var(--border-radius) + 2px);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(255, 215, 0, 0.08));
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cta-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 3rem 2rem;
    margin: 4rem auto;
    border-radius: var(--border-radius);
    background: linear-gradient(145deg, rgba(16, 27, 52, 0.92) 0%, rgba(26, 40, 71, 0.9) 55%, rgba(20, 33, 61, 0.92) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -35%;
    left: 50%;
    width: 520px;
    height: 520px;
    transform: translateX(-50%);
    pointer-events: none;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, rgba(212, 175, 55, 0) 70%);
}

.cta-section h2,
.cta-section p,
.cta-section .cta-button-box {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    margin-bottom: 0.85rem;
}

.cta-section p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-muted);
}

.cta-section .cta-button {
    min-width: 220px;
}

.mobile-book-now {
    display: none;
}

.mobile-book-now.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(14px);
}

/* ==================== SECTIONS ==================== */
.section {
    background: linear-gradient(135deg, rgba(26, 40, 71, 0.6) 0%, rgba(42, 63, 95, 0.4) 50%, rgba(26, 40, 71, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: 4rem 3rem;
    margin: 4rem 0;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.section h2 {
    color: var(--text-light);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.swipe-hint {
    display: none;
}

@keyframes swipe-arrow {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(6px);
    }
}

/* ==================== ABOUT SECTION ==================== */
.about {
    background: linear-gradient(135deg, rgba(26, 40, 71, 0.6) 0%, rgba(42, 63, 95, 0.4) 50%, rgba(26, 40, 71, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: 4rem 3rem;
    margin: 4rem 0;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.about .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    text-align: left;
    margin: 0 0 2rem 0;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

.rounded-image {
    width: 100%;
    border-radius: var(--border-radius);
    border: 2px solid var(--accent-gold);
    object-fit: cover;
    max-height: 400px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.rounded-image:hover {
    transform: scale(1.02);
}

/* ==================== GALLERY SECTION ==================== */
.gallery {
    background: linear-gradient(135deg, rgba(26, 40, 71, 0.6) 0%, rgba(42, 63, 95, 0.4) 50%, rgba(26, 40, 71, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: 4rem 3rem;
    margin: 4rem 0;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.gallery-grid,
.gallery-grid-full {
    display: grid;
    gap: 2.5rem;
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-grid-full {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-card1 {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    aspect-ratio: 1;
    background: rgba(26, 40, 71, 0.5);
}

.fgallery-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 300px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    background: rgba(26, 40, 71, 0.5);
}

.gallery-card1:hover {
    transform: translateY(-12px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.fgallery-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.fgallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card1 img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.fgallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: inherit;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 46, 0.9) 0%, rgba(212, 175, 55, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-overlay p {
    color: var(--accent-gold);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.lightbox.open {
    display: flex;
}

.lightbox-image {
    max-width: min(95vw, 1400px);
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: var(--border-radius);
    border: 2px solid var(--accent-gold);
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: var(--text-light);
    text-align: center;
    max-width: 90vw;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    border: 2px solid var(--accent-gold);
    background: rgba(15, 23, 46, 0.8);
    color: var(--text-light);
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid var(--accent-gold);
    background: rgba(26, 40, 71, 0.85);
    color: var(--text-light);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    background: linear-gradient(135deg, rgba(26, 40, 71, 0.6) 0%, rgba(42, 63, 95, 0.4) 50%, rgba(26, 40, 71, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: 4rem 3rem;
    margin: 4rem 0;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

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

.service-card {
    background: linear-gradient(135deg, rgba(42, 63, 95, 0.5) 0%, rgba(26, 40, 71, 0.5) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(42, 63, 95, 0.7) 0%, rgba(26, 40, 71, 0.7) 100%);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
}

.service-card i {
    font-size: 2.8rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover i {
    transform: scale(1.15) rotate(5deg);
}

.service-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== HOURS SECTION ==================== */
.hours {
    background: linear-gradient(135deg, rgba(26, 40, 71, 0.6) 0%, rgba(42, 63, 95, 0.4) 50%, rgba(26, 40, 71, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: 4rem 3rem;
    margin: 4rem 0;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.hours-column {
    background: linear-gradient(135deg, rgba(42, 63, 95, 0.5) 0%, rgba(26, 40, 71, 0.5) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.hours-column h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.hours-table td {
    padding: 0.8rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hours-table td:last-child {
    color: var(--accent-gold);
    font-weight: 600;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: linear-gradient(135deg, rgba(26, 40, 71, 0.6) 0%, rgba(42, 63, 95, 0.4) 50%, rgba(26, 40, 71, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: 4rem 3rem;
    margin: 4rem 0;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

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

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

.info-card {
    background: linear-gradient(135deg, rgba(42, 63, 95, 0.5) 0%, rgba(26, 40, 71, 0.5) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(42, 63, 95, 0.7) 0%, rgba(26, 40, 71, 0.7) 100%);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
}

.info-card i {
    font-size: 2.4rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

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

.info-card a {
    color: var(--accent-gold);
}

.info-card a:hover {
    color: var(--accent-light);
}

/* ==================== FOOTER ==================== */
footer {
    background-color: var(--secondary-color);
    color: var(--text-muted);
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.tag {
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
font-size: 25px;
letter-spacing: 2px;
word-spacing: 2px;
color: var(--text-muted);
font-weight: normal;
text-decoration: none;
font-style: italic;
font-variant: normal;
text-transform: none;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 78px;
        left: 50%;
        right: auto;
        flex-direction: column;
        background: linear-gradient(160deg, rgba(26, 40, 71, 0.96), rgba(18, 30, 54, 0.96));
        backdrop-filter: blur(10px);
        width: min(440px, calc(100% - 1.5rem));
        text-align: center;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate(-50%, -18px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        gap: 0.35rem;
        padding: 0.9rem 0.7rem 1.05rem;
        border: 1px solid rgba(212, 175, 55, 0.22);
        border-top: none;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
        z-index: 99;
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu .nav-a {
        display: block;
        width: 100%;
        padding: 0.72rem 1rem;
        border-radius: 10px;
        letter-spacing: 1.15px;
    }

    .nav-menu .nav-a::after {
        display: none;
    }

    .nav-menu .nav-a:hover,
    .nav-menu .nav-a.active {
        color: var(--accent-light);
        background: rgba(212, 175, 55, 0.12);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero {
        padding: 5rem 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .gallery-grid,
    .gallery-grid-full {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

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

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .mobile-book-now {
        display: inline-block;
        position: fixed;
        bottom: calc(0.9rem + env(safe-area-inset-bottom));
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, var(--accent-gold), var(--accent-light));
        color: var(--text-dark);
        padding: 1rem 1.5rem;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
        text-transform: uppercase;
        letter-spacing: 1px;
        z-index: 150;
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        transition: var(--transition);
    }

    .mobile-book-now:hover {
        transform: translateX(-50%) scale(1.06);
        box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section,
    .about,
    .gallery,
    .services,
    .hours,
    .contact,
    .cta-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.8rem;
    }

    .cta-button-box {
        padding: 0.6rem;
    }

    .lightbox-image {
        max-width: 95vw;
        max-height: 80vh;
    }
}

/* ==================== ANIMATION CLASSES ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-down {
    animation: fadeInDown 0.6s ease-out;
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-light);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}