:root {
    --black: #050505;
    --black-soft: #111111;
    --gold: #d4af37;
    --gold-light: #ffe082;
    --gold-deep: #9f7b16;
    --white: #ffffff;
    --muted: #bdbdbd;
    --border: rgba(212, 175, 55, 0.28);
    --glass: rgba(255, 255, 255, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: 0.3s ease;
    cursor: pointer;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
    color: #080808;
    box-shadow: 0 18px 45px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(212, 175, 55, 0.38);
}

.btn-outline {
    border-color: var(--border);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
    background: var(--gold);
    color: #080808;
    transform: translateY(-3px);
}

.section {
    padding: 105px 0;
    position: relative;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.section-kicker {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 12px;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    margin-bottom: 16px;
}

.section-text {
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: 0.3s ease;
    background: rgba(5, 5, 5, 0.58);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(5, 5, 5, 0.9);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
}

.brand-text strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    line-height: 1;
    color: var(--gold-light);
}

.brand-text span {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
}

.nav-menu a {
    color: #e8e8e8;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s ease;
}

.nav-menu a:hover {
    color: var(--gold-light);
}

.nav-menu .nav-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffe082, #d4af37, #9f7b16);
    color: #050505 !important;
    font-weight: 800;
    border: 1px solid rgba(212, 175, 55, 0.75);
    box-shadow: 0 14px 34px rgba(212, 175, 55, 0.22);
}

.nav-menu .nav-book-btn:hover {
    color: #050505 !important;
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(212, 175, 55, 0.35);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold-light);
    font-size: 24px;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: radial-gradient(circle at 75% 25%, rgba(212, 175, 55, 0.2), transparent 34%),
        radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.12), transparent 30%),
        linear-gradient(135deg, #050505 0%, #111 48%, #050505 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(212, 175, 55, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent);
    pointer-events: none;
    animation: heroGridDrift 22s linear infinite;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 68% 28%, rgba(212, 175, 55, 0.10), transparent 30%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(212, 175, 55, 0.04), rgba(0, 0, 0, 0.20));
    opacity: 0.72;
    animation: heroLightSweep 10s ease-in-out infinite;
}

.hero-wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 54px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d4af37;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.75);
    animation: heroBadgePulse 1.9s ease-out infinite;
}

.hero-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 224, 130, 0.22), transparent);
    transform: translateX(-120%);
    animation: heroBadgeShine 4.4s ease-in-out infinite;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.98;
    margin-bottom: 22px;
}

.hero h1 .gold-text {
    background-size: 220% 220%;
    animation: goldTextFlow 4.8s ease-in-out infinite;
}

.hero p {
    color: #d3d3d3;
    line-height: 1.85;
    font-size: 17px;
    max-width: 640px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.hero-actions .btn-primary {
    position: relative;
    overflow: hidden;
}

.hero-actions .btn-primary::after {
    content: "";
    position: absolute;
    inset: -20%;
    background: linear-gradient(120deg, transparent 34%, rgba(255, 255, 255, 0.55), transparent 66%);
    transform: translateX(-130%);
    animation: heroButtonShine 4.2s ease-in-out infinite 1.2s;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 620px;
}

.hero-stat {
    padding: 18px;
    border-radius: 22px;
    background: var(--glass);
    border: 1px solid rgba(212, 175, 55, 0.16);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hero-stat::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 224, 130, 0.8), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}

.hero-stat:hover {
    transform: translateY(-7px);
    border-color: rgba(212, 175, 55, 0.48);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.hero-stat:hover::after {
    transform: scaleX(1);
}

.hero-stat strong {
    display: block;
    color: var(--gold-light);
    font-size: 26px;
    margin-bottom: 4px;
}

.hero-stat span {
    color: var(--muted);
    font-size: 13px;
}

.hero-card {
    position: relative;
    min-height: 570px;
    border-radius: 40px;
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.24), rgba(255, 255, 255, 0.04)),
        url("https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=1100&q=80") center/cover;
    border: 1px solid var(--border);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.65);
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 2;
    border-radius: 30px;
    border: 1px solid rgba(255, 224, 130, 0.18);
    pointer-events: none;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18));
}

.hero-wrap > div:first-child .hero-badge,
.hero-wrap > div:first-child h1,
.hero-wrap > div:first-child > p,
.hero-wrap > div:first-child .hero-actions,
.hero-wrap > div:first-child .hero-stats,
.hero-card {
    opacity: 0;
    transform: translateY(26px);
}

.hero.hero-ready .hero-badge {
    animation: heroRevealUp 700ms ease forwards 120ms;
}

.hero.hero-ready h1 {
    animation: heroRevealUp 820ms cubic-bezier(0.18, 0.84, 0.34, 1) forwards 260ms;
}

.hero.hero-ready .hero-wrap > div:first-child > p {
    animation: heroRevealUp 760ms ease forwards 420ms;
}

.hero.hero-ready .hero-actions {
    animation: heroRevealUp 760ms ease forwards 580ms;
}

.hero.hero-ready .hero-stats {
    animation: heroRevealUp 760ms ease forwards 740ms;
}

.hero.hero-ready .hero-card {
    animation: heroRevealCard 950ms cubic-bezier(0.18, 0.84, 0.34, 1) forwards 360ms, heroCardFloat 6s ease-in-out infinite 1.45s;
}

.floating-logo {
    position: absolute;
    left: 28px;
    bottom: 28px;
    right: 28px;
    z-index: 3;
    padding: 24px;
    border-radius: 28px;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.22);
    display: flex;
    align-items: center;
    gap: 18px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
}

.floating-logo img {
    width: 94px;
    height: 94px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
}

.floating-logo h3 {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    color: var(--gold-light);
    margin-bottom: 5px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
}

.floating-logo p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
}

.about-wrap {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: center;
}

.about-image.about-carousel {
    position: relative;
    min-height: 520px;
    border-radius: 38px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    background: #050505;
}

.about-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 900ms ease, transform 3500ms ease;
}

.about-slide.active {
    opacity: 1;
    transform: scale(1);
}

.about-carousel-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent),
        linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(0, 0, 0, 0.08));
    pointer-events: none;
}

.about-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 3;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 9px;
}

.about-carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.75);
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    padding: 0;
    transition: 0.3s ease;
}

.about-carousel-dots button.active {
    width: 28px;
    background: linear-gradient(135deg, #ffe082, #d4af37, #9f7b16);
    border-color: #d4af37;
}

.about-content .section-heading {
    text-align: left;
    margin: 0 0 28px;
}

.feature-list {
    display: grid;
    gap: 15px;
    margin-top: 28px;
}

.feature-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.feature-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #080808;
    font-weight: 900;
}

.feature-item h4 {
    color: var(--gold-light);
    margin-bottom: 4px;
}

.feature-item p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

.services {
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.14), transparent 28%), #080808;
}

.service-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.tab-btn {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #080808;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    padding: 26px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
    border: 1px solid rgba(212, 175, 55, 0.18);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
}

.service-card:hover::before {
    transform: scale(1.4);
}

.service-card h3 {
    color: var(--gold-light);
    font-size: 21px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.price {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.22);
    color: var(--gold-light);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.packages {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent), var(--black);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}

.package-card {
    padding: 34px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.package-card.featured {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.18), rgba(255, 255, 255, 0.06));
    border-color: rgba(212, 175, 55, 0.58);
    transform: scale(1.04);
    box-shadow: 0 30px 90px rgba(212, 175, 55, 0.14);
}

.package-card:hover {
    transform: translateY(-8px);
}

.package-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
}

.package-label {
    display: inline-flex;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.28);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.package-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--gold-light);
}

.package-price {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 20px;
}

.package-price span {
    font-size: 15px;
    color: var(--muted);
    font-weight: 500;
}

.package-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.package-list li {
    color: #d8d8d8;
    line-height: 1.6;
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.package-list li::before {
    content: "✓";
    color: var(--gold-light);
    font-weight: 900;
}

.gallery {
    background: #080808;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    grid-auto-rows: 240px;
    gap: 18px;
}

.gallery-item {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.18);
    background-position: center;
    background-size: cover;
    transition: 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.025);
    border-color: rgba(212, 175, 55, 0.55);
}

.gallery-item:nth-child(1) {
    grid-row: span 2;
    background-image: url("https://images.unsplash.com/photo-1562322140-8baeececf3df?auto=format&fit=crop&w=1000&q=80");
}

.gallery-item:nth-child(2) {
    background-image: url("https://images.unsplash.com/photo-1599351431202-1e0f0137899a?auto=format&fit=crop&w=1000&q=80");
}

.gallery-item:nth-child(3) {
    grid-row: span 2;
    background-image: url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1000&q=80");
}

.gallery-item:nth-child(4) {
    background-image: url("https://images.unsplash.com/photo-1516975080664-ed2fc6a32937?auto=format&fit=crop&w=1000&q=80");
}

.gallery-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 22px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.86), transparent);
}

.gallery-overlay h4 {
    color: var(--gold-light);
    font-size: 20px;
}

.why-wrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.why-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(212, 175, 55, 0.16);
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-7px);
    background: rgba(212, 175, 55, 0.08);
}

.why-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #080808;
    font-size: 26px;
    font-weight: 900;
}

.why-card h3 {
    color: var(--gold-light);
    margin-bottom: 10px;
}

.why-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

.contact {
    background: radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.14), transparent 28%), #080808;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
}

.contact-card,
.booking-card {
    border-radius: 34px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-card h3,
.booking-card h3 {
    font-family: "Playfair Display", serif;
    color: var(--gold-light);
    font-size: 34px;
    margin-bottom: 18px;
}

.contact-info {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.contact-line {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(212, 175, 55, 0.13);
}

.contact-line strong {
    display: block;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.contact-line span,
.contact-line a {
    color: #d6d6d6;
    line-height: 1.6;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group.full {
    grid-column: 1/-1;
}

.form-group label {
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 700;
}

.form-control {
    width: 100%;
    border: 1px solid rgba(212, 175, 55, 0.18);
    background: rgba(0, 0, 0, 0.38);
    color: var(--white);
    border-radius: 16px;
    min-height: 50px;
    padding: 12px 15px;
    outline: none;
    font-family: inherit;
    transition: 0.25s ease;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.form-message {
    margin-top: 16px;
    color: var(--gold-light);
    font-weight: 700;
    display: none;
}

.map-section {
    position: relative;
    padding: 105px 0;
    background: radial-gradient(circle at 80% 0%, rgba(212, 175, 55, 0.16), transparent 32%),
        linear-gradient(180deg, #080808, #030303);
}

.map-wrap {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.map-info-card {
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(212, 175, 55, 0.22);
    padding: 30px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.map-info-card img {
    width: 112px;
    height: 112px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    margin-bottom: 18px;
}

.map-info-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.map-info-card p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.google-map {
    min-height: 450px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
    background: #000;
    position: relative;
}

.google-map::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(0, 0, 0, 0.08));
    mix-blend-mode: color;
}

.google-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
    display: block;
}

.dark-gold-map iframe {
    filter: grayscale(1) invert(0.92) sepia(1) saturate(2.1) hue-rotate(350deg) brightness(0.76) contrast(1.18);
}

.footer {
    padding: 42px 0;
    background: #030303;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
}

.footer-brand strong {
    display: block;
    color: var(--gold-light);
    font-family: "Playfair Display", serif;
    font-size: 22px;
}

.footer-brand span,
.footer-copy {
    color: var(--muted);
    font-size: 14px;
}

.back-top {
    position: fixed;
    right: 20px;
    left: auto;
    bottom: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #080808;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.28);
}

.whatsapp-chat {
    position: fixed;
    left: 20px;
    right: auto;
    bottom: 20px;
    z-index: 998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: none;
    place-items: center;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 45px rgba(37, 211, 102, 0.28);
    transition: 0.3s ease;
}

.whatsapp-chat:hover {
    transform: translateY(-4px) scale(1.04);
    color: #ffffff;
    box-shadow: 0 24px 60px rgba(37, 211, 102, 0.38);
}

.whatsapp-chat svg {
    width: 28px;
    height: 28px;
}

/* Calendar */
.flatpickr-calendar {
    background: #0a0a0a !important;
    border: 1px solid rgba(212, 175, 55, 0.45) !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    color: #ffffff !important;
}

.flatpickr-months {
    background: #0a0a0a !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.flatpickr-current-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: #d4af37 !important;
    fill: #d4af37 !important;
    font-weight: 700 !important;
}

.flatpickr-monthDropdown-months option {
    background: #111111 !important;
    color: #d4af37 !important;
}

.flatpickr-weekdays {
    background: #111111 !important;
}

span.flatpickr-weekday {
    background: #111111 !important;
    color: #d4af37 !important;
    font-weight: 700 !important;
}

.flatpickr-days {
    background: #0a0a0a !important;
}

.flatpickr-day {
    color: #ffffff !important;
    border: 1px solid transparent !important;
    border-radius: 12px !important;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
    background: rgba(212, 175, 55, 0.14) !important;
    border-color: rgba(212, 175, 55, 0.45) !important;
    color: #ffffff !important;
}

.flatpickr-day.today {
    border-color: #d4af37 !important;
    color: #d4af37 !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: linear-gradient(135deg, #ffe082, #d4af37, #9f7b16) !important;
    border-color: #d4af37 !important;
    color: #050505 !important;
    font-weight: 800 !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: rgba(255, 255, 255, 0.25) !important;
}

.flatpickr-time {
    background: #0a0a0a !important;
    border-top: 1px solid rgba(212, 175, 55, 0.18) !important;
}

.flatpickr-time input,
.flatpickr-time .flatpickr-am-pm {
    color: #d4af37 !important;
    background: #0a0a0a !important;
    font-weight: 600 !important;
}

.flatpickr-time input:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time .flatpickr-am-pm:focus {
    background: rgba(212, 175, 55, 0.10) !important;
}

.flatpickr-time .numInputWrapper span.arrowUp::after {
    border-bottom-color: #d4af37 !important;
}

.flatpickr-time .numInputWrapper span.arrowDown::after {
    border-top-color: #d4af37 !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: #d4af37 !important;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
    fill: #ffe082 !important;
}

/* Select Option */
select.form-control option {
    background-color: #050505;
    color: #d4af37;
}

select.form-control option:hover,
select.form-control option:checked {
    background-color: #d4af37 !important;
    color: #050505;
}

.service-select.is-placeholder {
    color: #8f8f8f !important;
}

.service-select.has-value {
    color: #ffffff !important;
}

.service-select option {
    background: #ffffff !important;
    color: #050505 !important;
}

.service-select option:disabled {
    color: #8f8f8f !important;
}

@keyframes heroRevealUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroRevealCard {
    from {
        opacity: 0;
        transform: translateY(34px) scale(0.96) rotateY(-5deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateY(0deg);
    }
}

@keyframes heroCardFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(0.6deg);
    }
}

@keyframes heroGridDrift {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 64px 64px;
    }
}

@keyframes heroLightSweep {
    0%, 58% {
        opacity: 0.55;
        transform: translateX(-2%);
    }
    74% {
        opacity: 1;
    }
    100% {
        opacity: 0.55;
        transform: translateX(2%);
    }
}

@keyframes heroBadgePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.75);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes heroBadgeShine {
    0%, 55% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(120%);
    }
}

@keyframes goldTextFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes heroButtonShine {
    0%, 58% {
        transform: translateX(-130%);
    }
    100% {
        transform: translateX(130%);
    }
}

@media (max-width: 980px) {
    .mobile-toggle {
        display: grid;
        place-items: center;
    }

    .nav-menu {
        position: absolute;
        top: 82px;
        left: 18px;
        right: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        border-radius: 24px;
        background: rgba(5, 5, 5, 0.96);
        border: 1px solid var(--border);
        box-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
        display: none;
    }

    .nav-menu li a {
        display: block;
        padding: 14px;
        border-radius: 14px;
    }

    .nav-menu li a:hover {
        background: rgba(212, 175, 55, 0.1);
    }

    .nav-menu .nav-book-btn {
        width: 100%;
        margin-top: 8px;
    }

    .hero-wrap,
    .about-wrap,
    .contact-wrap,
    .map-wrap {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: 460px;
    }

    .service-grid,
    .package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .package-card.featured {
        transform: none;
    }

    .package-card.featured:hover {
        transform: translateY(-8px);
    }

    .why-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .map-info-card {
        order: 2;
    }

    .google-map {
        order: 1;
    }
}

@media (max-width: 640px) {
    .section,
    .map-section {
        padding: 78px 0;
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .brand-text strong {
        font-size: 20px;
    }

    .hero {
        overflow: hidden;
        min-height: auto;
        padding-top: 125px;
        padding-bottom: 70px;
    }

    .hero::before,
    .hero::after,
    .hero-badge::before,
    .hero-badge::after,
    .hero h1 .gold-text,
    .hero-actions .btn-primary::after {
        animation: none !important;
    }

    .hero-wrap,
    .hero-wrap > div:first-child,
    .hero-wrap > div:first-child .hero-badge,
    .hero-wrap > div:first-child h1,
    .hero-wrap > div:first-child > p,
    .hero-wrap > div:first-child .hero-actions,
    .hero-wrap > div:first-child .hero-stats,
    .hero-card,
    .floating-logo,
    .floating-logo h3,
    .floating-logo p {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        animation: none !important;
        -webkit-animation: none !important;
    }

    .hero-wrap > div:first-child > p,
    .floating-logo p {
        display: block !important;
        position: relative !important;
        z-index: 5 !important;
    }

    .hero-wrap {
        overflow: visible !important;
    }

    .hero-stats,
    .service-grid,
    .package-grid,
    .why-wrap,
    .form-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(3) {
        grid-row: auto;
        min-height: 260px;
    }

    .floating-logo {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .about-image.about-carousel {
        min-height: 360px;
        border-radius: 28px;
    }

    .google-map,
    .google-map iframe {
        min-height: 360px;
    }

    .whatsapp-chat {
        left: 16px;
        right: auto;
        bottom: 20px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-chat svg {
        width: 26px;
        height: 26px;
    }

    .back-top {
        right: 16px;
        left: auto;
        bottom: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after,
    .hero-badge::before,
    .hero-badge::after,
    .hero h1 .gold-text,
    .hero-actions .btn-primary::after,
    .hero.hero-ready .hero-card {
        animation: none !important;
    }

    .hero-wrap > div:first-child .hero-badge,
    .hero-wrap > div:first-child h1,
    .hero-wrap > div:first-child > p,
    .hero-wrap > div:first-child .hero-actions,
    .hero-wrap > div:first-child .hero-stats,
    .hero-card,
    .floating-logo,
    .floating-logo h3,
    .floating-logo p {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}
