/* ===== CSS VARIABLES ===== */
:root {
    --primary-gold: #D4A017;
    --light-gold: #F0C030;
    --dark-bg: #FDF6E3;
    --darker-bg: #FAF0CC;
    --card-bg: #FFF8E7;
    --text-primary: #2C1A00;
    --text-secondary: #5C3D00;
    --text-muted: #8A6200;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 13px 30px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: var(--primary-gold);
    color: #1a1a1a;
}

.btn-gold:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.4);
}

.btn-outline-gold {
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: #1a1a1a;
}

/* ===== SITE HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Top Bar */
.top-bar {
    background: rgba(253, 246, 227, 0.98);
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
    padding: 4px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--text-secondary);
    font-size: 12px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--primary-gold);
}

.top-cta {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--primary-gold);
}

/* Main Nav Bar */
.main-header {
    background: rgba(253, 246, 227, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
    background: rgba(253, 246, 227, 0.99);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.main-header.scrolled .logo-img {
    height: 55px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 20px;
}

.logo-area {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: height 0.3s ease;
}

.footer-logo-img {
    height: 220px;
    filter: brightness(0) invert(1);
}

/* Navigation Links */
.main-nav ul {
    display: flex;
    gap: 38px;
    align-items: center;
}

.main-nav a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold) !important;
    padding: 4px 0;
    position: relative;
    transition: color 0.3s;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

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

.main-nav a:hover,
.main-nav a.active {
    color: var(--light-gold) !important;
}

/* Header CTA + Hamburger */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #0d0d0d url('10329.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.35) 50%,
            rgba(0, 0, 0, 0.65) 100%) !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 20px;
    padding-top: 0 !important;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary-gold);
    border: 1px solid rgba(212, 160, 23, 0.55);
    padding: 9px 24px;
    margin-bottom: 28px;
    border-radius: 1px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(52px, 9vw, 88px);
    font-weight: 400;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 22px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 160, 23, 0.5) !important;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #F0C030;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important;
}

.hero-address {
    font-family: var(--font-heading);
    font-size: 15px;
    font-style: italic;
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 20px 0;
}

.divider-line {
    display: block;
    width: 80px;
    height: 1px;
    background: rgba(212, 160, 23, 0.45);
}

.divider-icon {
    color: var(--primary-gold);
    font-size: 16px;
}

/* ===== FEATURE / OUR STORY SECTION ===== */
.feature-section {
    padding: 90px 0;
    background: var(--dark-bg);
}

.feature-container {
    display: flex;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
}

.feature-text {
    flex: 1;
    min-width: 300px;
}

.feature-subtitle {
    display: block;
    color: var(--primary-gold);
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.feature-heading {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 22px;
}

.feature-paragraph {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 32px;
}

.feature-btn {
    margin-bottom: 28px;
    display: inline-block;
}

.feature-footer {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
}

.feature-footer-line {
    display: block;
    flex: 1;
    height: 1px;
    background: rgba(212, 160, 23, 0.3);
}

.feature-address {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--text-muted);
    white-space: nowrap;
    text-transform: uppercase;
}

.feature-images {
    flex: 1;
    min-width: 300px;
}

/* ===== ABOUT SLIDER ===== */
.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    padding: 0 12px;
    pointer-events: none;
}

.nav-btn {
    pointer-events: all;
    background: rgba(0, 0, 0, 0.6);
    color: var(--primary-gold);
    border: 1px solid rgba(212, 160, 23, 0.4);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--primary-gold);
    color: #1a1a1a;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: rgba(0, 0, 0, 0.25);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.3);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    padding: 0;
}

.dot.active {
    background: var(--primary-gold);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: #000000;
    padding: 80px 0 0;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.services-label {
    display: block;
    color: var(--primary-gold);
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.services-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 400;
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-text-card {
    background: #0f0f0f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    min-height: 260px;
    border: 1px solid rgba(212, 160, 23, 0.12);
}

.service-name {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.service-menu-btn {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
    border: 1px solid rgba(212, 160, 23, 0.4);
    padding: 9px 22px;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.service-menu-btn:hover {
    background: var(--primary-gold);
    color: #1a1a1a;
    border-color: var(--primary-gold);
}

.service-photo-card {
    min-height: 260px;
}

.service-photo-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.service-span-2 {
    grid-column: span 2;
}

.service-photo-card {
    background-color: #0f0f0f;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.78)), url('98C1E4A3-A0D4-432B-AB7C-7BB1D1BB7FCD.JPG') center/cover no-repeat;
    border-top: 1px solid rgba(212, 160, 23, 0.3);
    border-bottom: 1px solid rgba(212, 160, 23, 0.3);
    padding: 100px 20px;
    text-align: center;
}

.cta-inner {
    max-width: 650px;
    margin: 0 auto;
}

.cta-subtitle {
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--primary-gold) !important;
    margin-bottom: 18px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 400;
    color: #ffffff !important;
    margin-bottom: 14px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
}

.cta-address {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 16px;
    color: #fdf6e3 !important;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.cta-phone {
    display: block;
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-gold) !important;
    margin-bottom: 34px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    transition: opacity 0.3s;
}

.cta-phone:hover {
    opacity: 0.8;
}

.cta-btn {
    display: inline-block;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark-bg);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 320px;
}

.footer-map-container {
    flex: 1;
    min-width: 300px;
    min-height: 320px;
}

.footer-info-container {
    flex: 1;
    padding: 28px 40px;
    background-color: var(--card-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(212, 160, 23, 0.2);
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ===== SECTION LABEL ===== */
.section-label {
    display: block;
    color: var(--primary-gold);
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* ===== GALLERY ===== */
.gallery-section {
    padding: 70px 40px 50px;
    background: var(--darker-bg);
}

.gal-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
    height: 240px;
}

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

.gal-item:hover img {
    transform: scale(1.07);
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(212, 160, 23, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gal-item:hover .gal-overlay {
    opacity: 1;
}

/* ===== REVIEW CARDS ===== */
.review-card {
    background-color: var(--card-bg);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(212, 160, 23, 0.25);
    text-align: left;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

/* ===== FLOATING SOCIAL (LEFT) ===== */
.floating-social {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.social-tab {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253, 246, 227, 0.95);
    border: 1px solid rgba(212, 160, 23, 0.4);
    border-left: none;
    color: var(--primary-gold);
    transition: all 0.3s ease;
    border-radius: 0 6px 6px 0;
}

.social-tab:hover {
    background: var(--primary-gold);
    color: #111;
    width: 54px;
}

.social-tab svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ===== FLOATING BOOK NOW (RIGHT) ===== */
.floating-book {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.float-book-btn {
    background: var(--primary-gold);
    color: #1a1a1a;
    padding: 18px 10px;
    border-radius: 8px 0 0 8px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: -4px 0 20px rgba(212, 160, 23, 0.5);
    transition: padding 0.2s ease, box-shadow 0.2s ease;
}

.float-book-btn:hover {
    box-shadow: -6px 0 30px rgba(212, 160, 23, 0.75);
    padding-right: 4px;
}

.float-book-btn span {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    color: #1a1a1a;
}

.float-book-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: #1a1a1a;
}

.float-call-btn {
    background: var(--darker-bg);
    border: 1px solid rgba(212, 160, 23, 0.4);
    border-right: none;
    color: var(--primary-gold);
    padding: 14px 10px;
    border-radius: 8px 0 0 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    transition: background 0.2s ease;
}

.float-call-btn:hover {
    background: rgba(212, 160, 23, 0.15);
}

.float-call-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ===== LIGHTBOX ===== */
#lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    object-fit: contain;
    cursor: default;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--primary-gold);
    padding: 20px 0;
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: italic;
}

.close-lightbox {
    position: fixed;
    top: 15px;
    right: 35px;
    color: var(--primary-gold);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.close-lightbox:hover {
    color: #fff;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        inset: 0;
        background: rgba(253, 246, 227, 0.99);
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .main-nav a {
        font-size: 14px;
        letter-spacing: 4px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-actions .btn-gold {
        display: none;
    }

    .feature-container {
        flex-direction: column;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-map-container {
        min-height: 250px;
    }

    .gallery-section {
        padding: 50px 16px 40px;
    }

    .floating-social {
        display: none;
    }
}

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

    .hero-title {
        font-size: 26px;
    }

    .top-cta {
        display: none;
    }
}