/* ===== CSS VARIABLES ===== */
:root {
    --primary-gold: #800020;
    --light-gold: #a0162e;
    --dark-bg: #fdf5d8;
    --darker-bg: #f7ebbb;
    --card-bg: #fffaea;
    --text-primary: #2a1010;
    --text-secondary: #4a2028;
    --text-muted: #7a4455;
    --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(128,0,32,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: #000000;
    border-bottom: 1px solid rgba(197,160,89,0.2);
    padding: 7px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.phone-link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.phone-link:hover { color: #C5A059; }
.top-cta {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #C5A059;
}

/* Main Nav Bar */
.main-header {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197,160,89,0.15);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.main-header.scrolled {
    background: #000000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.8);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}
.logo-area { flex-shrink: 0; }
.logo { display: flex; align-items: center; }
.logo-image {
    height: 54px;
    width: auto;
    object-fit: contain;
}
.logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    display: block;
}
.footer-logo-img {
    height: 70px;
}

/* 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: #ffffff !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: #C5A059;
    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: #C5A059 !important; }

/* Dropdown Menu Styles */
.main-nav li {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 4px;
    padding: 10px 0;
    min-width: 160px;
    display: none;
    flex-direction: column;
    gap: 0 !important;
    z-index: 1001;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.main-nav li:hover .dropdown-menu {
    display: flex;
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}
.dropdown-menu a {
    font-size: 10px !important;
    letter-spacing: 2px !important;
    padding: 10px 20px !important;
    display: block;
    color: #ffffff !important;
    text-align: center;
    white-space: nowrap;
    transition: background-color 0.3s, color 0.3s;
}
.dropdown-menu a:hover {
    background-color: rgba(197, 160, 89, 0.15);
    color: #C5A059 !important;
}
.dropdown-menu a::after {
    display: none !important;
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        display: flex !important;
        opacity: 1 !important;
        padding: 5px 0 0 0 !important;
        align-items: center;
    }
    .dropdown-menu a {
        padding: 6px 15px !important;
        font-size: 12px !important;
        color: #C5A059 !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: #C5A059;
    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: 100vh;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
}
.hero-bg-slide.active { opacity: 1; }
.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: 20px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-gold);
    border: 1px solid rgba(128,0,32,0.55);
    padding: 12px 32px;
    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(128,0,32,0.4) !important;
}
.hero-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    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(128,0,32,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(128,0,32,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(128,0,32,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(128,0,32,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(128,0,32,0.08);
}
.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(128,0,32,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 {
    background: var(--dark-bg);
    border-top: 1px solid rgba(128,0,32,0.2);
    border-bottom: 1px solid rgba(128,0,32,0.2);
    padding: 80px 20px;
    text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-subtitle {
    font-size: 10px;
    letter-spacing: 5px;
    color: var(--text-muted);
    margin-bottom: 18px;
}
.cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 400;
    margin-bottom: 14px;
}
.cta-address {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 15px;
    margin-bottom: 10px;
}
.cta-phone {
    display: block;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 34px;
    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(128,0,32,0.12);
    font-size: 12px;
    color: #cccccc;
    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(128,0,32,0.3);
    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(128,0,32,0.2);
    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, 245, 216, 0.92);
    border: 1px solid rgba(128,0,32,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(128,0,32,0.45);
    transition: padding 0.2s ease, box-shadow 0.2s ease;
}
.float-book-btn:hover {
    box-shadow: -6px 0 30px rgba(128,0,32,0.7);
    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(128,0,32,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(128,0,32,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; }

/* ===== SERVICE SHORTCUTS ===== */
.shortcuts-section {
    padding: 90px 20px;
    background-color: var(--dark-bg);
    text-align: center;
}
.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}
.shortcut-card {
    background: var(--card-bg);
    border: 1px solid rgba(128,0,32,0.12);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.shortcut-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.18);
    border-color: var(--primary-gold);
}
.shortcut-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.shortcut-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.shortcut-card:hover .shortcut-img-wrapper img {
    transform: scale(1.08);
}
.shortcut-info {
    padding: 26px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.shortcut-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.shortcut-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 22px;
}
.shortcut-btn {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    border-bottom: 1px dashed var(--primary-gold);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}
.shortcut-card:hover .shortcut-btn {
    color: var(--light-gold);
    border-color: var(--light-gold);
    letter-spacing: 3px;
}

/* ===== 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(0, 0, 0, 0.98);
        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: 40px; }
    .top-cta { display: none; }
}
