:root {
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-dark: #a07830;
    --black: #0d0d0d;
    --dark: #1a1a1a;
    --charcoal: #2a2a2a;
    --beige: #f5ede0;
    --beige-light: #faf5ee;
    --cream: #fffdf8;
    --text-muted: #888;
    --border-gold: rgba(201, 168, 76, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cormorant Garamond', serif;
}

/* ── NAVBAR ── */
.navbar {
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gold);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1050;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-brand img {
    height: 54px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.3));
    transition: filter 0.3s;
}

.navbar-brand img:hover {
    filter: drop-shadow(0 4px 16px rgba(201, 168, 76, 0.55));
}

.navbar-brand span {
    color: #fff;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem !important;
}

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

.navbar-toggler {
    border-color: var(--border-gold);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.btn-book-nav {
    background: var(--gold);
    color: var(--black) !important;
    border-radius: 2px;
    font-weight: 600;
    padding: 0.45rem 1.4rem !important;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    transition: background 0.3s;
}

.btn-book-nav:hover {
    background: var(--gold-light);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1208 40%, #2a1f08 70%, #0d0d0d 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border-gold) 1px, transparent 1px), linear-gradient(90deg, var(--border-gold) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.15;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.hero-eyebrow {
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    flex: 1;
    max-width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    color: #fff;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.4rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 2.4rem;
    font-weight: 300;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 0.85rem 2.2rem;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    border-radius: 2px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.85rem 2.2rem;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    border-radius: 2px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gold);
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-image-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-frame {
    position: relative;
    width: 420px;
    max-width: 100%;
}

.hero-img-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--gold);
    opacity: 0.4;
    z-index: 0;
}

.hero-img-frame img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    display: block;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--black);
    padding: 1.2rem;
    text-align: center;
    z-index: 2;
}

.hero-badge .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.hero-badge .txt {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1rem;
    color: var(--gold);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ── SECTION COMMON ── */
section {
    padding: 6rem 0;
}

.section-label {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--dark);
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.divider-gold {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1.2rem 0 2rem;
}

.divider-gold.center {
    margin-left: auto;
    margin-right: auto;
}

/* ── ABOUT ── */
.about-section {
    background: var(--beige-light);
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--gold);
    opacity: 0.35;
    z-index: -1;
}

.about-tag {
    background: var(--gold);
    color: var(--black);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    font-weight: 300;
}

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

.feature-icon {
    width: 42px;
    height: 42px;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── SERVICES ── */
.services-section {
    background: var(--dark);
}

.services-section .section-title {
    color: #fff;
}

.services-section .section-label {
    color: var(--gold);
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 2rem 1.5rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-4px);
    border-color: var(--border-gold);
}

.service-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.service-card h5 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.87rem;
    font-weight: 300;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.65rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.25rem 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.tab-custom .nav-link {
    border: 1px solid var(--border-gold);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    margin-right: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s;
}

.tab-custom .nav-link.active,
.tab-custom .nav-link:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* ── BRANDS ── */
.brands-section {
    background: var(--beige-light);
}

.brand-card {
    background: #fff;
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.brand-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.15);
    transform: translateY(-4px);
}

.brand-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.brand-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-badge {
    background: var(--gold);
    color: var(--black);
    font-size: 0.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    display: inline-block;
    margin-top: 0.8rem;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1208 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 30rem;
    color: rgba(201, 168, 76, 0.04);
    position: absolute;
    top: -8rem;
    left: -4rem;
    line-height: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    padding: 2.5rem;
    position: relative;
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 46px;
    height: 46px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--black);
    flex-shrink: 0;
}

.author-name {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

.author-role {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ── PACKAGES ── */
.packages-section {
    background: var(--beige-light);
}

.package-card {
    border: 1px solid rgba(201, 168, 76, 0.25);
    background: #fff;
    overflow: hidden;
    transition: all 0.4s;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(201, 168, 76, 0.15);
}

.package-header {
    background: var(--dark);
    padding: 2rem;
    text-align: center;
}

.package-header.gold-bg {
    background: var(--gold);
}

.package-header h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.package-header.gold-bg h4 {
    color: var(--black);
}

.package-tag {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.package-header.gold-bg .package-tag {
    color: rgba(0, 0, 0, 0.7);
}

.package-body {
    padding: 2rem;
}

.package-list {
    list-style: none;
}

.package-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.package-list li i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* ── GALLERY ── */
.gallery-section {
    background: var(--dark);
}

.gallery-section .section-title {
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 6px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
}

.gallery-item:first-child {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201, 168, 76, 0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.gallery-overlay i {
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(13, 13, 13, 0.4);
}

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

/* ── CONTACT ── */
.contact-section {
    background: var(--cream);
}

.contact-info-card {
    background: var(--dark);
    padding: 3rem;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-icon {
    width: 46px;
    height: 46px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-item h6 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.contact-info-item p,
.contact-info-item a {
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    margin: 0;
}

.form-control-gold {
    background: #fff;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 2px;
    padding: 0.85rem 1.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.form-control-gold:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hours-row span:first-child {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.hours-row span:last-child {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    border-top: 1px solid var(--border-gold);
}

.footer-top {
    padding: 5rem 0 3rem;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.87rem;
    line-height: 1.8;
    font-weight: 300;
}

.footer-heading {
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Jost', sans-serif;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.87rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-links a::before {
    content: '→';
    color: var(--gold);
    font-size: 0.75rem;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-right: 0.5rem;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.social-icons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-gold);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    margin: 0;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse-wa 2s infinite;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.1);
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 35px rgba(37, 211, 102, 0.7);
    }
}

.whatsapp-float .tooltip-wa {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: #fff;
    font-size: 0.78rem;
    white-space: nowrap;
    padding: 0.4rem 0.9rem;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.whatsapp-float:hover .tooltip-wa {
    opacity: 1;
}

/* ── BOOKING MODAL ── */
.modal-content {
    border-radius: 0;
    border: 1px solid var(--border-gold);
}

.modal-header {
    background: var(--dark);
    border-bottom: 1px solid var(--border-gold);
}

.modal-title {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--border-gold);
}

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* ── MAP ── */
.map-wrapper {
    border: 2px solid var(--border-gold);
    overflow: hidden;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .hero {
        min-height: auto;
        padding: 6rem 0;
    }

    .hero-image-col {
        display: none;
    }

    .hero-stats {
        gap: 1.5rem;
    }

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

    .gallery-item:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    section {
        padding: 4rem 0;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}