:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dim: #8A6E2F;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --dark-4: #222222;
    --text: #E8E0D0;
    --text-muted: #9A9080;
    --accent-pink: #D4547A;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: "serif";
    font-weight: 600;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 3px;
}

/* ─── NAVBAR ─── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s ease;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.navbar-brand img {
    height: 80px;
}

.nav-link {
    color: var(--text) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px !important;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s;
}

.nav-link:hover::after {
    left: 16px;
    right: 16px;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.navbar-phone {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── COVERAGE ── */
#coverage {
    padding: 80px 0;
    background: var(--dark);
}

.area-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(201, 168, 76, .2);
    background: rgba(201, 168, 76, .05);
    color: var(--text-muted);
    font-size: .82rem;
    margin: 4px;
    transition: all .3s;
}

.area-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .1);
}

.area-pill i {
    color: var(--gold);
    font-size: .75rem;
}

.btn-book-nav {
    background: var(--gold);
    color: var(--dark) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 3px;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-book-nav:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.navbar-toggler {
    border-color: var(--gold-dim);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201,168,76,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── HERO ─── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A0E05 50%, #0A0A0A 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/banner.webp') center/cover no-repeat;
    opacity: 0.35;
    filter: saturate(0.6);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.4) 60%, rgba(10, 10, 10, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-family: "serif";
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    animation: fadeUp 0.8s ease both;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 8px;
    animation: fadeUp 0.9s 0.1s ease both;
}

.hero-title span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    font-weight: 300;
    max-width: 500px;
    margin-bottom: 40px;
    animation: fadeUp 1s 0.2s ease both;
}

.hero-btns {
    animation: fadeUp 1.1s 0.3s ease both;
}

.btn-primary-gold {
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary-gold:hover {
    background: var(--gold-light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}

.btn-outline-gold {
    background: transparent;
    color: var(--text);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 13px 30px;
    border: 1px solid rgba(201, 168, 76, 0.5);
    border-radius: 3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.hero-stats {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    animation: fadeUp 1.2s 0.4s ease both;
}

.stat-item {
    text-align: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.stat-item:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-3px);
}

.stat-number {
    font-family: "serif";
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

/* ─── SECTION HEADERS ─── */
.section-chip {
    display: inline-block;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--text);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--gold);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto;
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 20px auto;
}

/* ─── ABOUT ─── */
#about {
    padding: 10px 0;
    background: var(--dark-2);
}

.about-img-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    filter: saturate(0.85);
}

.about-badge {
    position: absolute;
    bottom: 24px;
    right: -20px;
    background: var(--gold);
    color: var(--dark);
    padding: 20px 24px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.about-badge .num {
    font-family: "serif";
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge .lbl {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.about-features li i {
    color: var(--gold);
    font-size: 1rem;
}

/* ─── SERVICES ─── */
#services {
    padding: 10px 0;
    background: var(--dark);
}

.service-card {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 10px;
    padding: 36px 28px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold-dim), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.service-tags {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.stag {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--text-muted);
}

/* ─── FEATURES LANDING ─── */
#features {
    padding: 10px 0;
    background: var(--dark-2);
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-img-wrap {
    flex: 0 0 45%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.feature-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: saturate(0.85);
}

.feature-img-wrap:hover img {
    transform: scale(1.04);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 16px;
}

.feature-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ─── GALLERY ─── */
#gallery {
    padding: 10px 0;
    background: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 12px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: saturate(0.8);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: saturate(1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ─── VIDEO TESTIMONIALS ─── */
#videos {
    padding: 10px 0;
    background: var(--dark-2);
}

.video-card {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s;
}

.video-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.video-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: saturate(0.8);
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
    filter: saturate(1);
}

.play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.play-btn span {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.video-card:hover .play-btn span {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.2);
}

.video-info {
    padding: 20px;
}

.video-info h5 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 4px;
}

.video-info small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.stars {
    color: var(--gold);
    font-size: 0.75rem;
}

/* ─── REVIEWS ─── */
#reviews {
    padding: 10px 0;
    background: var(--dark);
}

.rating-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.rating-big {
    font-family: "serif";
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.review-card {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 10px;
    padding: 28px;
    transition: all 0.3s;
    height: 100%;
}

.review-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.reviewer-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ─── FAQ ─── */
#faq {
    padding: 10px 0;
    background: var(--dark-2);
}

.accordion-item {
    background: var(--dark-3) !important;
    border: 1px solid rgba(201, 168, 76, 0.15) !important;
    border-radius: 8px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    background: var(--dark-3) !important;
    color: var(--text) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--gold) !important;
}

.accordion-button::after {
    filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg);
}

.accordion-body {
    background: var(--dark-3);
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ─── PRICING ─── */
#pricing {
    padding: 10px 0;
    background: var(--dark);
}

.pricing-card {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.4s;
    height: 100%;
}

.pricing-card.featured {
    background: linear-gradient(145deg, #1A1204, var(--dark-3));
    border-color: var(--gold-dim);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 100px;
}

.pricing-name {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.pricing-price {
    font-family: "serif";
    font-size: 3rem;
    color: var(--text);
    font-weight: 700;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 12px 0 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.87rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li i {
    color: var(--gold);
    font-size: 0.85rem;
}

/* ─── CONTACT ─── */
#contact {
    padding: 10px 0;
    background: var(--dark-2);
}

.contact-info-card {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.contact-info-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateX(6px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-card h6 {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin: 0;
}

.contact-info-card a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: var(--gold);
}

.contact-form-wrap {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    padding: 40px;
}

.form-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(201, 168, 76, 0.18) !important;
    border-radius: 6px !important;
    color: var(--text) !important;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    padding: 12px 16px;
    transition: border-color 0.3s !important;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(201, 168, 76, 0.6) !important;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1) !important;
    outline: none;
}

.form-control::placeholder {
    color: rgba(154, 144, 128, 0.5);
}

.form-select option {
    background: var(--dark-3);
}

/* ─── MAP ─── */
.map-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.15);
    margin-top: 24px;
}

.map-wrap iframe {
    width: 100%;
    height: 260px;
    display: block;
    filter: grayscale(0.3) invert(0.9) hue-rotate(180deg);
}

/* ─── FOOTER ─── */
footer {
    background: #060606;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 60px 0 30px;
}

footer .footer-logo img {
    height: 52px;
    margin-bottom: 16px;
}

footer .footer-tagline {
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 240px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

footer h6 {
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.87rem;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin: 0;
}

.footer-bottom span {
    color: var(--accent-pink);
}

/* ─── FLOATING BTNS ─── */
.floating-btns {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.float-call {
    background: #25D366;
    color: white;
}

.float-wa {
    background: #128C7E;
    color: white;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── MODAL ─── */
.modal-content {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 12px;
    color: var(--text);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 28px;
}

.modal-title {
    font-family: "serif";
    font-size: 1.6rem;
    color: var(--gold);
}

.btn-close {
    filter: invert(1);
    opacity: 0.6;
}

/* ─── BACK TO TOP ─── */
#backTop {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--gold-dim);
    color: var(--dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    font-size: 1rem;
}

#backTop.visible {
    opacity: 1;
}

#backTop:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .about-badge {
        right: 16px;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 32px;
    }

    .feature-img-wrap {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-row: span 1;
    }

    .contact-form-wrap {
        padding: 24px;
    }

    .about-badge {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }
}





:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dim: #8A6E2F;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --dark-4: #222222;
    --text: #E8E0D0;
    --text-muted: #9A9080;
    --accent-pink: #D4547A;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: "serif";
    font-weight: 600;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 3px;
}

/* ── NAVBAR ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all .4s;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, .96);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, .15);
}

.navbar-brand img {
    height: 80px;
}

.nav-link {
    color: var(--text) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: .9rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 16px !important;
    transition: color .3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 1px;
    background: var(--gold);
    transition: all .3s;
}

.nav-link:hover::after,
.nav-link.active-page::after {
    left: 16px;
    right: 16px;
}

.nav-link:hover,
.nav-link.active-page {
    color: var(--gold) !important;
}

.btn-book-nav {
    background: var(--gold);
    color: var(--dark) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 3px;
    border: none;
    transition: all .3s;
    text-decoration: none;
}

.btn-book-nav:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, .35);
}

.navbar-toggler {
    border-color: var(--gold-dim);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201,168,76,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── PAGE HERO ── */
.page-hero {
    position: relative;
    padding: 160px 0 90px;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0A0A 0%, #150D04 50%, #0A0A0A 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/dhol-player-dance-1280-960.webp') center/cover no-repeat;
    opacity: .18;
    filter: saturate(.5);
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, .6) 0%, rgba(10, 10, 10, .92) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.breadcrumb-nav a {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb-nav span {
    color: var(--text-muted);
}

.page-hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: var(--text);
    margin-bottom: 16px;
}

.page-hero h1 span {
    color: var(--gold);
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ── SHARED ── */
.section-chip {
    display: inline-block;
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .3);
    color: var(--gold);
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--text);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--gold);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto;
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 20px auto;
}

.btn-primary-gold {
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: all .3s;
    cursor: pointer;
}

.btn-primary-gold:hover {
    background: var(--gold-light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, .4);
}

.btn-outline-gold {
    background: transparent;
    color: var(--text);
    font-weight: 500;
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 13px 30px;
    border: 1px solid rgba(201, 168, 76, .5);
    border-radius: 3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
}

.btn-outline-gold:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .08);
}

/* ── STORY ── */
#story {
    padding: 100px 0;
    background: var(--dark-2);
}

.story-img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.story-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter: saturate(.85);
    display: block;
}

.story-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, .9) 0%, transparent 60%);
    padding: 28px;
}

.story-quote {
    font-family: "serif";
    font-style: italic;
    font-size: 1.3rem;
    color: var(--gold);
    line-height: 1.5;
}

.story-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.story-text p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
    font-size: .95rem;
}

.story-text strong {
    color: var(--text);
    font-weight: 500;
}

/* ── STATS BAND ── */
#stats-band {
    padding: 60px 0;
    background: var(--dark);
    border-top: 1px solid rgba(201, 168, 76, .08);
    border-bottom: 1px solid rgba(201, 168, 76, .08);
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(201, 168, 76, .1);
}

.stat-card:last-child {
    border-right: none;
}

.stat-num {
    font-family: "serif";
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-lbl {
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ── VALUES ── */
#values {
    padding: 100px 0;
    background: var(--dark-3);
}

.value-card {
    background: var(--dark-2);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 10px;
    padding: 36px 28px;
    height: 100%;
    transition: all .4s;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold-dim), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.value-card:hover {
    border-color: rgba(201, 168, 76, .3);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.75;
}

/* ── TEAM ── */
#team {
    padding: 100px 0;
    background: var(--dark-2);
}

.team-card {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 12px;
    overflow: hidden;
    transition: all .4s;
}

.team-card:hover {
    border-color: rgba(201, 168, 76, .35);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.team-img {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
    filter: saturate(.8);
}

.team-card:hover .team-img img {
    transform: scale(1.06);
    filter: saturate(1);
}

.team-info {
    padding: 24px;
}

.team-info h5 {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 4px;
}

.team-role {
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.team-bio {
    color: var(--text-muted);
    font-size: .87rem;
    line-height: 1.7;
}

/* ── MILESTONES ── */
#milestones {
    padding: 100px 0;
    background: var(--dark);
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
    transform: translateX(-50%);
}

.tl-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.tl-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.tl-item:nth-child(odd) .tl-content {
    align-items: flex-end;
}

.tl-body {
    flex: 1;
}

.tl-content {
    display: flex;
    flex-direction: column;
}

.tl-year {
    font-family: "serif";
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.tl-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 6px 0;
    font-family: "serif";
}

.tl-desc {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.7;
}

.tl-dot {
    position: absolute;
    left: 50%;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--dark);
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(201, 168, 76, .2);
}

/* ── AWARDS ── */
#awards {
    padding: 80px 0;
    background: var(--dark-3);
}

.award-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--dark-2);
    border: 1px solid rgba(201, 168, 76, .12);
    border-radius: 10px;
    padding: 20px 24px;
    transition: all .3s;
}

.award-item:hover {
    border-color: rgba(201, 168, 76, .35);
    transform: translateX(6px);
}

.award-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.award-item h6 {
    font-family: 'Outfit', sans-serif;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.award-item small {
    color: var(--text-muted);
    font-size: .78rem;
}

/* ── CTA ── */
#about-cta {
    padding: 90px 0;
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
}

#about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/dhol-player-stage-show-1280-560.webp') center/cover no-repeat;
    opacity: .12;
}

#about-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, .92), rgba(21, 13, 4, .92));
}

.cta-content {
    position: relative;
    z-index: 2;
}

/* ── FOOTER ── */
footer {
    background: #060606;
    border-top: 1px solid rgba(201, 168, 76, .15);
    padding: 60px 0 30px;
}

footer .footer-logo img {
    height: 52px;
    margin-bottom: 16px;
}

footer .footer-tagline {
    color: var(--text-muted);
    font-size: .85rem;
    max-width: 240px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all .3s;
    font-size: .9rem;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .08);
}

footer h6 {
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .87rem;
    transition: color .3s;
}

footer ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: .78rem;
    margin: 0;
}

/* ── FLOATING ── */
.floating-btns {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.float-call {
    background: #25D366;
    color: white;
}



#backTop {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--gold-dim);
    color: var(--dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all .3s;
    font-size: 1rem;
}

#backTop.visible {
    opacity: 1;
}

#backTop:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* ── ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-1 {
    animation: fadeUp .8s .0s ease both;
}

.anim-2 {
    animation: fadeUp .8s .1s ease both;
}

.anim-3 {
    animation: fadeUp .8s .2s ease both;
}

.anim-4 {
    animation: fadeUp .8s .3s ease both;
}

@media (max-width:991px) {
    .timeline::before {
        left: 20px;
    }

    .tl-item,
    .tl-item:nth-child(odd) {
        flex-direction: column;
        text-align: left;
        padding-left: 50px;
    }

    .tl-item:nth-child(odd) .tl-content {
        align-items: flex-start;
    }

    .tl-dot {
        left: 20px;
    }
}

@media (max-width:767px) {
    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(201, 168, 76, .1);
    }

    .stat-card:last-child {
        border-bottom: none;
    }
}






:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dim: #8A6E2F;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --dark-4: #222222;
    --text: #E8E0D0;
    --text-muted: #9A9080;
    --accent-pink: #D4547A;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: "serif";
    font-weight: 600;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 3px;
}

/* ── NAVBAR ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all .4s;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, .96);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, .15);
}

.navbar-brand img {
    height: 80px;
}

.nav-link {
    color: var(--text) !important;
    font-size: .9rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 16px !important;
    transition: color .3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 1px;
    background: var(--gold);
    transition: all .3s;
}

.nav-link:hover::after,
.nav-link.active-page::after {
    left: 16px;
    right: 16px;
}

.nav-link:hover,
.nav-link.active-page {
    color: var(--gold) !important;
}

.btn-book-nav {
    background: var(--gold);
    color: var(--dark) !important;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 3px;
    text-decoration: none;
    transition: all .3s;
}

.btn-book-nav:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, .35);
}

.navbar-toggler {
    border-color: var(--gold-dim);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201,168,76,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── PAGE HERO ── */
.page-hero {
    position: relative;
    padding: 160px 0 90px;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0A0A 0%, #150D04 50%, #0A0A0A 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/dhol-player-stage-show-1280-560.webp') center/cover no-repeat;
    opacity: .2;
    filter: saturate(.5);
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, .6) 0%, rgba(10, 10, 10, .94) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.breadcrumb-nav a {
    color: var(--gold);
    text-decoration: none;
}

.page-hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: var(--text);
    margin-bottom: 16px;
}

.page-hero h1 span {
    color: var(--gold);
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ── SHARED ── */
.section-chip {
    display: inline-block;
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .3);
    color: var(--gold);
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--text);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--gold);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 20px auto;
}

.btn-primary-gold {
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: all .3s;
    cursor: pointer;
}

.btn-primary-gold:hover {
    background: var(--gold-light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, .4);
}

.btn-outline-gold {
    background: transparent;
    color: var(--text);
    font-weight: 500;
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 13px 30px;
    border: 1px solid rgba(201, 168, 76, .5);
    border-radius: 3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
}

.btn-outline-gold:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .08);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-1 {
    animation: fadeUp .8s .0s ease both;
}

.anim-2 {
    animation: fadeUp .8s .1s ease both;
}

.anim-3 {
    animation: fadeUp .8s .2s ease both;
}

/* ── SERVICE NAV ── */
#service-nav {
    background: var(--dark-2);
    border-bottom: 1px solid rgba(201, 168, 76, .12);
    position: sticky;
    top: 72px;
    z-index: 100;
}

.service-nav-inner {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    padding: 0 16px;
    scrollbar-width: none;
}

.service-nav-inner::-webkit-scrollbar {
    display: none;
}

.snav-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 14px 18px;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: all .3s;
}

.snav-btn:hover,
.snav-btn.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.snav-btn i {
    font-size: 1rem;
}

/* ── SERVICE DETAIL BLOCKS ── */
.service-block {
    padding: 100px 0;
}

.service-block:nth-child(even) {
    background: var(--dark-2);
}

.service-block:nth-child(odd) {
    background: var(--dark);
}

.svc-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.svc-img-wrap img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    filter: saturate(.85);
    transition: transform .6s;
}

.svc-img-wrap:hover img {
    transform: scale(1.04);
    filter: saturate(1);
}

.svc-number {
    font-family: "serif";
    font-size: 5rem;
    font-weight: 700;
    color: rgba(201, 168, 76, .1);
    line-height: 1;
    margin-bottom: -16px;
}

.svc-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.svc-content p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
    font-size: .95rem;
}

.svc-content strong {
    color: var(--text);
    font-weight: 500;
}

.svc-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
}

.svc-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: .9rem;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.svc-list li:last-child {
    border-bottom: none;
}

.svc-list li i {
    color: var(--gold);
    font-size: .95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.svc-tag {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid rgba(201, 168, 76, .25);
    color: var(--gold);
    background: rgba(201, 168, 76, .06);
}

.svc-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    margin-bottom: 16px;
    font-size: 1.8rem;
}

.info-callout {
    background: rgba(201, 168, 76, .06);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: 10px;
    padding: 20px 24px;
    margin: 24px 0;
}

.info-callout p {
    color: var(--text-muted);
    font-size: .88rem;
    margin: 0;
    line-height: 1.7;
}

/* ── PROCESS ── */
#process {
    padding: 100px 0;
    background: var(--dark-3);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 28px;
    top: 60px;
    bottom: -20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold-dim), transparent);
}

.process-step:last-child::after {
    display: none;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201, 168, 76, .12);
    border: 2px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "serif";
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.step-body {
    padding-bottom: 40px;
}

.step-body h5 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 8px;
    font-family: "serif";
}

.step-body p {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.75;
}

/* ── PRICING ── */
#pricing {
    padding: 100px 0;
    background: var(--dark-2);
}

.pricing-card {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .15);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all .4s;
    height: 100%;
}

.pricing-card.featured {
    background: linear-gradient(145deg, #1A1204, var(--dark-3));
    border-color: var(--gold-dim);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 100px;
}

.pricing-name {
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.pricing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--text);
    font-weight: 700;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-desc {
    color: var(--text-muted);
    font-size: .85rem;
    margin: 12px 0 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: .87rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.pricing-features li i {
    color: var(--gold);
    font-size: .85rem;
}

/* ── COVERAGE ── */
#coverage {
    padding: 80px 0;
    background: var(--dark);
}

.area-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(201, 168, 76, .2);
    background: rgba(201, 168, 76, .05);
    color: var(--text-muted);
    font-size: .82rem;
    margin: 4px;
    transition: all .3s;
}

.area-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .1);
}

.area-pill i {
    color: var(--gold);
    font-size: .75rem;
}

/* ── CTA ── */
#services-cta {
    padding: 90px 0;
    background: var(--dark-3);
    position: relative;
    overflow: hidden;
}

#services-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/banner.webp') center/cover no-repeat;
    opacity: .12;
}

#services-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, .92), rgba(21, 13, 4, .92));
}

.cta-content {
    position: relative;
    z-index: 2;
}

/* ── FOOTER ── */
footer {
    background: #060606;
    border-top: 1px solid rgba(201, 168, 76, .15);
    padding: 60px 0 30px;
}

footer .footer-logo img {
    height: 52px;
    margin-bottom: 16px;
}

footer .footer-tagline {
    color: var(--text-muted);
    font-size: .85rem;
    max-width: 240px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all .3s;
    font-size: .9rem;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .08);
}

footer h6 {
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .87rem;
    transition: color .3s;
}

footer ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: .78rem;
    margin: 0;
}

.floating-btns {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-call {
    background: #25D366;
    color: white;
}



#backTop {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--gold-dim);
    color: var(--dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all .3s;
    font-size: 1rem;
}

#backTop.visible {
    opacity: 1;
}

#backTop:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

@media (max-width:767px) {
    .svc-img-wrap img {
        height: 280px;
    }
}





:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dim: #8A6E2F;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --dark-4: #222222;
    --text: #E8E0D0;
    --text-muted: #9A9080;
    --accent-pink: #D4547A;
    --green: #64b464;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "serif";
    font-weight: 600;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 3px;
}

/* ── NAVBAR ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all .4s;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, .96);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, .15);
}

.navbar-brand img {
    height: 80px;
}

.nav-link {
    color: var(--text) !important;
    font-size: .9rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 16px !important;
    transition: color .3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 1px;
    background: var(--gold);
    transition: all .3s;
}

.nav-link:hover::after,
.nav-link.active-page::after {
    left: 16px;
    right: 16px;
}

.nav-link:hover,
.nav-link.active-page {
    color: var(--gold) !important;
}

.btn-book-nav {
    background: var(--gold);
    color: var(--dark) !important;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 3px;
    text-decoration: none;
    transition: all .3s;
}

.btn-book-nav:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.navbar-toggler {
    border-color: var(--gold-dim);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201,168,76,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── PAGE HERO ── */
.page-hero {
    position: relative;
    padding: 160px 0 90px;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0A0A 0%, #150D04 50%, #0A0A0A 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/dhol-player-dance-02-960-1280.webp') center/cover no-repeat;
    opacity: .18;
    filter: saturate(.5);
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, .6) 0%, rgba(10, 10, 10, .95) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.breadcrumb-nav a {
    color: var(--gold);
    text-decoration: none;
}

.page-hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: var(--text);
    margin-bottom: 16px;
}

.page-hero h1 span {
    color: var(--gold);
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ── SHARED ── */
.section-chip {
    display: inline-block;
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .3);
    color: var(--gold);
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--text);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--gold);
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 20px auto;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-1 {
    animation: fadeUp .8s .0s ease both;
}

.anim-2 {
    animation: fadeUp .8s .1s ease both;
}

.anim-3 {
    animation: fadeUp .8s .2s ease both;
}

.btn-primary-gold {
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: all .3s;
    cursor: pointer;
}

.btn-primary-gold:hover {
    background: var(--gold-light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, .4);
}

.btn-outline-gold {
    background: transparent;
    color: var(--text);
    font-weight: 500;
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 13px 30px;
    border: 1px solid rgba(201, 168, 76, .5);
    border-radius: 3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
}

.btn-outline-gold:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .08);
}

/* ── CONTACT INFO CARDS ── */
#contact-info {
    padding: 80px 0;
    background: var(--dark-2);
}

.info-card {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .12);
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    transition: all .4s;
    height: 100%;
}

.info-card:hover {
    border-color: rgba(201, 168, 76, .35);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.info-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.info-card h5 {
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.info-card p {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.7;
    margin: 0;
}

.info-card a {
    color: var(--gold);
    text-decoration: none;
    transition: color .3s;
}

.info-card a:hover {
    color: var(--gold-light);
}

.info-card .badge-available {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(100, 180, 100, .1);
    border: 1px solid rgba(100, 180, 100, .3);
    color: var(--green);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    margin-top: 8px;
}

.pulse {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(100, 180, 100, .4);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(100, 180, 100, 0);
    }
}

/* ── MAIN FORM ── */
#booking-form {
    padding: 100px 0;
    background: var(--dark);
}

.form-wrap {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .15);
    border-radius: 16px;
    padding: 48px;
}

.form-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 168, 76, .15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title i {
    font-size: 1rem;
}

.form-label {
    color: var(--text-muted);
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.form-label .req {
    color: var(--gold);
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, .04) !important;
    border: 1px solid rgba(201, 168, 76, .18) !important;
    border-radius: 8px !important;
    color: var(--text) !important;
    font-family: 'Outfit', sans-serif;
    font-size: .9rem;
    padding: 12px 16px;
    transition: border-color .3s, box-shadow .3s !important;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(201, 168, 76, .6) !important;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, .1) !important;
    outline: none;
}

.form-control::placeholder {
    color: rgba(154, 144, 128, .45);
}

.form-select option {
    background: var(--dark-3);
    color: var(--text);
}

.char-count {
    font-size: .72rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 4px;
}

.submit-btn-wrap {
    position: relative;
}

#submitBtn {
    width: 100%;
    padding: 16px;
    font-size: .9rem;
    letter-spacing: .15em;
    border-radius: 8px;
}

#submitBtn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none !important;
}

.form-note {
    color: var(--text-muted);
    font-size: .78rem;
    text-align: center;
    margin-top: 12px;
}

.form-note i {
    color: var(--gold);
}

/* ── SUCCESS / ERROR ── */
.alert-success-custom {
    background: rgba(100, 180, 100, .1);
    border: 1px solid rgba(100, 180, 100, .35);
    border-radius: 10px;
    padding: 20px 24px;
    color: var(--green);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.alert-error-custom {
    background: rgba(212, 84, 122, .08);
    border: 1px solid rgba(212, 84, 122, .3);
    border-radius: 10px;
    padding: 20px 24px;
    color: var(--accent-pink);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.alert-success-custom i,
.alert-error-custom i {
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.alert-success-custom h6,
.alert-error-custom h6 {
    font-family: 'Outfit', sans-serif;
    font-size: .92rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.alert-success-custom p,
.alert-error-custom p {
    font-size: .85rem;
    margin: 0;
    opacity: .85;
}

/* ── SIDEBAR SUMMARY ── */
.booking-summary {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .12);
    border-radius: 12px;
    padding: 28px;
    position: sticky;
    top: 100px;
}

.booking-summary h5 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 168, 76, .15);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: .87rem;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item .lbl {
    color: var(--text-muted);
}

.summary-item .val {
    color: var(--text);
    font-weight: 500;
}

.why-choose {
    background: rgba(201, 168, 76, .06);
    border: 1px solid rgba(201, 168, 76, .15);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.why-choose h6 {
    font-family: 'Outfit', sans-serif;
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--text-muted);
    padding: 5px 0;
}

.why-item i {
    color: var(--gold);
    font-size: .8rem;
}

/* ── MAP SECTION ── */
#location {
    padding: 80px 0;
    background: var(--dark-2);
}

.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, .15);
}

.map-wrap iframe {
    width: 100%;
    height: 400px;
    display: block;
    filter: grayscale(.2) invert(.9) hue-rotate(180deg);
}

/* ── QUICK CHANNELS ── */
#quick-channels {
    padding: 60px 0;
    background: var(--dark-3);
}

.channel-card {
    background: var(--dark-2);
    border: 1px solid rgba(201, 168, 76, .12);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    transition: all .4s;
}

.channel-card:hover {
    border-color: rgba(201, 168, 76, .4);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
}

.channel-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.channel-card h6 {
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.channel-card small {
    color: var(--text-muted);
    font-size: .78rem;
}

.channel-card p {
    color: var(--text-muted);
    font-size: .82rem;
    margin: 0;
    margin-top: 4px;
}

/* ── FAQ ── */
#contact-faq {
    padding: 80px 0;
    background: var(--dark);
}

.accordion-item {
    background: var(--dark-3) !important;
    border: 1px solid rgba(201, 168, 76, .15) !important;
    border-radius: 8px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--dark-3) !important;
    color: var(--text) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: .93rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--gold) !important;
}

.accordion-button::after {
    filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg);
}

.accordion-body {
    background: var(--dark-3);
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.8;
}

/* ── FOOTER ── */
footer {
    background: #060606;
    border-top: 1px solid rgba(201, 168, 76, .15);
    padding: 60px 0 30px;
}

footer .footer-logo img {
    height: 52px;
    margin-bottom: 16px;
}

footer .footer-tagline {
    color: var(--text-muted);
    font-size: .85rem;
    max-width: 240px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all .3s;
    font-size: .9rem;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .08);
}

footer h6 {
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .87rem;
    transition: color .3s;
}

footer ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: .78rem;
    margin: 0;
}

.floating-btns {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}

.float-call {
    background: #25D366;
    color: white;
}

.float-wa {
    background: #128C7E;
    color: white;
}

.float-btn:hover {
    transform: scale(1.1);
}

#backTop {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--gold-dim);
    color: var(--dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all .3s;
    font-size: 1rem;
}

#backTop.visible {
    opacity: 1;
}

#backTop:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

@media (max-width:991px) {
    .form-wrap {
        padding: 28px 20px;
    }

    .booking-summary {
        position: static;
        margin-top: 32px;
    }
}



:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dim: #8A6E2F;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --dark-4: #222222;
    --text: #E8E0D0;
    --text-muted: #9A9080;
    --accent-pink: #D4547A;
    --green: #64b464;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "serif";
    font-weight: 600;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 3px;
}

/* ── NAVBAR ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all .4s;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, .96);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, .15);
}

.navbar-brand img {
    height: 80px;
}

.nav-link {
    color: var(--text) !important;
    font-size: .88rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px !important;
    transition: color .3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 1px;
    background: var(--gold);
    transition: all .3s;
}

.nav-link:hover::after {
    left: 14px;
    right: 14px;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.btn-book-nav {
    background: var(--gold);
    color: var(--dark) !important;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 3px;
    text-decoration: none;
    transition: all .3s;
}

.btn-book-nav:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, .35);
}

.navbar-toggler {
    border-color: var(--gold-dim);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201,168,76,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0A0A 0%, #150D04 45%, #0A0A0A 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/dhol-player-dance-1280-960.webp') center/cover no-repeat;
    opacity: .3;
    filter: saturate(.6);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, .88) 0%, rgba(10, 10, 10, .45) 55%, rgba(10, 10, 10, .72) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.location-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .35);
    color: var(--gold);
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 18px;
    animation: fadeUp .7s ease both;
}

.hero-title {
    font-size: clamp(2.6rem, 7vw, 6rem);
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 10px;
    animation: fadeUp .8s .1s ease both;
}

.hero-title .loc {
    color: var(--gold);
    display: block;
}

.hero-subtitle {
    font-size: clamp(.95rem, 1.8vw, 1.18rem);
    color: var(--text-muted);
    font-weight: 300;
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 36px;
    animation: fadeUp .9s .2s ease both;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeUp 1s .3s ease both;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    font-size: .84rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, .4);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    font-weight: 500;
    font-size: .84rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 13px 28px;
    border: 1px solid rgba(201, 168, 76, .45);
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .07);
}

.hero-stats {
    position: relative;
    z-index: 2;
    margin-top: 56px;
    animation: fadeUp 1.1s .4s ease both;
}

.stat-box {
    text-align: center;
    padding: 18px 20px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(201, 168, 76, .14);
    border-radius: 8px;
    transition: all .3s;
}

.stat-box:hover {
    background: rgba(201, 168, 76, .07);
    border-color: rgba(201, 168, 76, .35);
}

.stat-n {
    font-family: "serif";
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-l {
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ── SHARED UTILITIES ── */
.section-chip {
    display: inline-block;
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .3);
    color: var(--gold);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    color: var(--text);
    margin-bottom: 14px;
}

.section-title span {
    color: var(--gold);
}

.section-lead {
    color: var(--text-muted);
    font-size: .97rem;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto;
}

.gold-line {
    width: 54px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 18px auto;
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── INTRO / ABOUT ── */
#intro {
    padding: 96px 0;
    background: var(--dark-2);
}

.intro-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.intro-img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: saturate(.85);
    display: block;
    transition: transform .6s;
}

.intro-img-wrap:hover img {
    transform: scale(1.03);
    filter: saturate(1);
}

.intro-badge {
    position: absolute;
    bottom: 24px;
    right: -16px;
    background: var(--gold);
    color: var(--dark);
    padding: 18px 22px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .55);
}

.intro-badge .num {
    font-family: "serif";
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}

.intro-badge .lbl {
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.prose h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    margin-bottom: 18px;
}

.prose p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 14px;
    font-size: .95rem;
}

.prose strong {
    color: var(--text);
    font-weight: 500;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    color: var(--text-muted);
    font-size: .9rem;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li i {
    color: var(--gold);
    font-size: .9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── WHY HIRE ── */
#why {
    padding: 96px 0;
    background: var(--dark);
}

.why-card {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 12px;
    padding: 34px 26px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .4s;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold-dim), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.why-card:hover {
    border-color: rgba(201, 168, 76, .32);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 18px;
}

.why-card h4 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.75;
}

/* ── SERVICES STRIP ── */
#services {
    padding: 96px 0;
    background: var(--dark-2);
}

.svc-row {
    display: flex;
    align-items: center;
    gap: 56px;
    margin-bottom: 72px;
}

.svc-row:last-child {
    margin-bottom: 0;
}

.svc-row.alt {
    flex-direction: row-reverse;
}

.svc-media {
    flex: 0 0 44%;
    border-radius: 12px;
    overflow: hidden;
}

.svc-media img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: saturate(.82);
    transition: transform .5s, filter .5s;
}

.svc-media:hover img {
    transform: scale(1.05);
    filter: saturate(1);
}

.svc-body {
    flex: 1;
}

.svc-num {
    font-family: "serif";
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(201, 168, 76, .1);
    line-height: 1;
    margin-bottom: -12px;
}

.svc-body h3 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin-bottom: 14px;
}

.svc-body p {
    color: var(--text-muted);
    font-size: .93rem;
    line-height: 1.85;
    margin-bottom: 14px;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 16px 0 22px;
}

.stag {
    font-size: .7rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 4px 13px;
    border-radius: 100px;
    border: 1px solid rgba(201, 168, 76, .24);
    color: var(--gold);
    background: rgba(201, 168, 76, .06);
}

/* ── LOCAL AREAS ── */
#areas {
    padding: 72px 0;
    background: var(--dark);
}

.area-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(201, 168, 76, .2);
    background: rgba(201, 168, 76, .04);
    color: var(--text-muted);
    font-size: .82rem;
    margin: 4px;
    transition: all .3s;
    cursor: default;
}

.area-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .1);
}

.area-pill i {
    color: var(--gold);
    font-size: .72rem;
}

/* ── PROCESS ── */
#process {
    padding: 96px 0;
    background: var(--dark-2);
}

.step-wrap {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.step-wrap::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 60px;
    bottom: -20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold-dim), transparent);
}

.step-wrap:last-child::after {
    display: none;
}

.step-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(201, 168, 76, .1);
    border: 2px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "serif";
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.step-body h5 {
    font-size: 1.08rem;
    color: var(--text);
    margin-bottom: 6px;
    font-family: "serif";
}

.step-body p {
    color: var(--text-muted);
    font-size: .87rem;
    line-height: 1.75;
}

/* ── PRICING ── */
#pricing {
    padding: 96px 0;
    background: var(--dark);
}

.price-card {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .14);
    border-radius: 12px;
    padding: 38px 30px;
    text-align: center;
    position: relative;
    transition: all .4s;
    height: 100%;
}

.price-card.hot {
    background: linear-gradient(150deg, #1A1204, var(--dark-3));
    border-color: var(--gold-dim);
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.pop-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.p-name {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.p-price {
    font-family: "serif";
    font-size: 2.9rem;
    color: var(--text);
    font-weight: 700;
}

.p-price sub {
    font-size: 1rem;
    color: var(--text-muted);
}

.p-desc {
    color: var(--text-muted);
    font-size: .83rem;
    margin: 10px 0 22px;
}

.p-feats {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 26px;
}

.p-feats li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 6px 0;
    font-size: .86rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.p-feats li i {
    color: var(--gold);
    font-size: .83rem;
}

/* ── REVIEWS ── */
#reviews {
    padding: 96px 0;
    background: var(--dark-2);
}

.review-card {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 12px;
    padding: 28px;
    height: 100%;
    transition: all .35s;
}

.review-card:hover {
    border-color: rgba(201, 168, 76, .3);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .4);
}

.rev-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
    color: var(--dark);
    flex-shrink: 0;
}

.rev-name {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text);
}

.rev-meta {
    font-size: .73rem;
    color: var(--text-muted);
}

.stars {
    color: var(--gold);
    font-size: .8rem;
}

.rev-text {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.75;
    margin-top: 14px;
}

.google-lbl {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .7rem;
    color: var(--text-muted);
}

/* ── FAQ ── */
#faq {
    padding: 96px 0;
    background: var(--dark);
}

.accordion-item {
    background: var(--dark-3) !important;
    border: 1px solid rgba(201, 168, 76, .15) !important;
    border-radius: 8px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--dark-3) !important;
    color: var(--text) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: .92rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--gold) !important;
}

.accordion-button::after {
    filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg);
}

.accordion-body {
    background: var(--dark-3);
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.82;
}

/* ── INLINE CTA ── */
.inline-cta {
    background: rgba(201, 168, 76, .06);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: 12px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin: 40px 0;
}

.inline-cta p {
    color: var(--text-muted);
    font-size: .9rem;
    margin: 0;
    max-width: 420px;
}

.inline-cta strong {
    color: var(--text);
}

/* ── SEO TEXT BLOCK ── */
#seo-content {
    padding: 80px 0;
    background: var(--dark-2);
}

.seo-body h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--text);
    margin: 36px 0 14px;
}

.seo-body h2:first-child {
    margin-top: 0;
}

.seo-body p {
    color: var(--text-muted);
    font-size: .93rem;
    line-height: 1.9;
    margin-bottom: 14px;
}

.seo-body strong {
    color: var(--text);
    font-weight: 500;
}

.seo-body ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 20px;
}

.seo-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    color: var(--text-muted);
    font-size: .9rem;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.seo-body ul li:last-child {
    border-bottom: none;
}

.seo-body ul li i {
    color: var(--gold);
    font-size: .85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── FINAL CTA BAND ── */
#final-cta {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: var(--dark-3);
}

#final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/banner.webp') center/cover no-repeat;
    opacity: .13;
}

#final-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, .93), rgba(21, 13, 4, .93));
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-inner h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 14px;
}

.cta-inner p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 34px;
    font-size: .96rem;
}

/* ── FOOTER ── */
footer {
    background: #060606;
    border-top: 1px solid rgba(201, 168, 76, .15);
    padding: 60px 0 30px;
}

footer .footer-logo img {
    height: 52px;
    margin-bottom: 16px;
}

footer .footer-tagline {
    color: var(--text-muted);
    font-size: .84rem;
    max-width: 240px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all .3s;
    font-size: .9rem;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .08);
}

footer h6 {
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: .74rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .86rem;
    transition: color .3s;
}

footer ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: .77rem;
    margin: 0;
}

/* ── FLOATING ── */
.floating-btns {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}

.float-call {
    background: #25D366;
    color: white;
}

.float-wa {
    background: #128C7E;
    color: white;
}

.float-btn:hover {
    transform: scale(1.1);
}

#backTop {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--gold-dim);
    color: var(--dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all .3s;
    font-size: 1rem;
}

#backTop.visible {
    opacity: 1;
}

#backTop:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {

    .svc-row,
    .svc-row.alt {
        flex-direction: column;
        gap: 28px;
    }

    .svc-media {
        width: 100%;
    }

    .svc-media img {
        height: 280px;
    }

    .intro-badge {
        right: 10px;
    }
}

@media (max-width: 767px) {
    .inline-cta {
        flex-direction: column;
        text-align: center;
    }

    .intro-img-wrap img {
        height: 320px;
    }
}







/* ═══════════════════════════════════════
       DESIGN TOKENS
    ═══════════════════════════════════════ */
:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dim: #8A6E2F;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --dark-4: #222222;
    --text: #E8E0D0;
    --text-muted: #9A9080;
    --pink: #D4547A;
    --green: #64b464;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "serif";
    font-weight: 600;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 3px;
}

/* ── NAVBAR ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all .4s ease;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, .96);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, .15);
}

.navbar-brand img {
    height: 80px;
}

.nav-link {
    color: var(--text) !important;
    font-size: .88rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px !important;
    transition: color .3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 1px;
    background: var(--gold);
    transition: all .3s;
}

.nav-link:hover::after {
    left: 14px;
    right: 14px;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.btn-book-nav {
    background: var(--gold);
    color: var(--dark) !important;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 3px;
    text-decoration: none;
    transition: all .3s;
}

.btn-book-nav:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, .35);
}

.navbar-toggler {
    border-color: var(--gold-dim);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201,168,76,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0A0A 0%, #0E0A14 45%, #0A0A0A 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/dhol-player-dance-820-1280.jpg') center/cover no-repeat;
    opacity: .28;
    filter: saturate(.55);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10, 10, 10, .9) 0%, rgba(10, 10, 10, .42) 55%, rgba(10, 10, 10, .75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Location pill */
.loc-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(201, 168, 76, .08);
    border: 1px solid rgba(201, 168, 76, .38);
    color: var(--gold);
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 20px;
    animation: fadeUp .7s ease both;
}

.hero-eyebrow {
    font-family: "serif";
    font-style: italic;
    color: rgba(201, 168, 76, .7);
    font-size: clamp(.95rem, 1.8vw, 1.15rem);
    letter-spacing: .06em;
    margin-bottom: 10px;
    animation: fadeUp .75s .05s ease both;
}

.hero-title {
    font-size: clamp(2.8rem, 7.5vw, 6.2rem);
    line-height: 1.02;
    color: var(--text);
    margin-bottom: 6px;
    animation: fadeUp .8s .1s ease both;
}

.hero-title .hl {
    color: var(--gold);
}

.hero-title .loc-name {
    display: block;
    font-size: clamp(2rem, 5.5vw, 4.8rem);
    color: var(--gold-light);
}

.hero-sub {
    font-size: clamp(.92rem, 1.7vw, 1.12rem);
    color: var(--text-muted);
    font-weight: 300;
    max-width: 520px;
    line-height: 1.82;
    margin-bottom: 38px;
    animation: fadeUp .9s .18s ease both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeUp 1s .26s ease both;
}

/* Buttons */
.btn-gold {
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    font-size: .84rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 168, 76, .42);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    font-weight: 500;
    font-size: .84rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 13px 28px;
    border: 1px solid rgba(201, 168, 76, .45);
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .07);
}

/* Hero stats */
.hero-stats {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    animation: fadeUp 1.1s .34s ease both;
}

.sbox {
    text-align: center;
    padding: 18px 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(201, 168, 76, .13);
    border-radius: 8px;
    transition: all .3s;
}

.sbox:hover {
    background: rgba(201, 168, 76, .07);
    border-color: rgba(201, 168, 76, .32);
}

.sbox-n {
    font-family: "serif";
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.sbox-l {
    font-size: .68rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: .66rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    animation: bounce 2.2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(8px)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ── SHARED UTILITIES ── */
.chip {
    display: inline-block;
    background: rgba(201, 168, 76, .08);
    border: 1px solid rgba(201, 168, 76, .28);
    color: var(--gold);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.sec-title {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    color: var(--text);
    margin-bottom: 14px;
}

.sec-title span {
    color: var(--gold);
}

.sec-lead {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

.g-line {
    width: 52px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 16px auto;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── INTRO ── */
#intro {
    padding: 96px 0;
    background: var(--dark-2);
}

.intro-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.intro-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: saturate(.82);
    display: block;
    transition: transform .6s, filter .6s;
}

.intro-img:hover img {
    transform: scale(1.04);
    filter: saturate(1);
}

.intro-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, .88), transparent 60%);
    padding: 28px;
}

.intro-quote {
    font-family: "serif";
    font-style: italic;
    font-size: 1.25rem;
    color: var(--gold);
    line-height: 1.55;
}

.intro-badge {
    position: absolute;
    top: 24px;
    right: -16px;
    background: var(--gold);
    color: var(--dark);
    padding: 16px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 36px rgba(0, 0, 0, .55);
}

.intro-badge .bn {
    font-family: "serif";
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.intro-badge .bl {
    font-size: .66rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.prose h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    margin-bottom: 16px;
}

.prose p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 14px;
    font-size: .95rem;
}

.prose strong {
    color: var(--text);
    font-weight: 500;
}

.tick-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 26px;
}

.tick-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    color: var(--text-muted);
    font-size: .9rem;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.tick-list li:last-child {
    border-bottom: none;
}

.tick-list li i {
    color: var(--gold);
    font-size: .88rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── WHY CHOOSE ── */
#why {
    padding: 96px 0;
    background: var(--dark);
}

.wcard {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 12px;
    padding: 32px 26px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .4s;
}

.wcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold-dim), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.wcard:hover {
    border-color: rgba(201, 168, 76, .3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
}

.wcard:hover::before {
    transform: scaleX(1);
}

.wcard-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.wcard h4 {
    font-size: 1.18rem;
    color: var(--text);
    margin-bottom: 10px;
}

.wcard p {
    color: var(--text-muted);
    font-size: .87rem;
    line-height: 1.75;
}

/* ── SERVICES ── */
#services {
    padding: 96px 0;
    background: var(--dark-2);
}

.svc-block {
    display: flex;
    align-items: center;
    gap: 56px;
    margin-bottom: 80px;
}

.svc-block:last-child {
    margin-bottom: 0;
}

.svc-block.rev {
    flex-direction: row-reverse;
}

.svc-img {
    flex: 0 0 44%;
    border-radius: 12px;
    overflow: hidden;
}

.svc-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: saturate(.8);
    transition: transform .5s, filter .5s;
}

.svc-img:hover img {
    transform: scale(1.05);
    filter: saturate(1);
}

.svc-txt {
    flex: 1;
}

.svc-n {
    font-family: "serif";
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(201, 168, 76, .1);
    line-height: 1;
    margin-bottom: -10px;
}

.svc-txt h3 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    margin-bottom: 14px;
}

.svc-txt p {
    color: var(--text-muted);
    font-size: .93rem;
    line-height: 1.87;
    margin-bottom: 13px;
}

.stags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 14px 0 20px;
}

.stag {
    font-size: .68rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 4px 13px;
    border-radius: 100px;
    border: 1px solid rgba(201, 168, 76, .22);
    color: var(--gold);
    background: rgba(201, 168, 76, .06);
}

/* ── LIVE VS RECORDED ── */
#live-vs {
    padding: 80px 0;
    background: var(--dark);
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cg-col {
    border-radius: 12px;
    padding: 32px 28px;
}

.cg-live {
    background: linear-gradient(145deg, rgba(201, 168, 76, .1), rgba(201, 168, 76, .04));
    border: 1px solid rgba(201, 168, 76, .25);
}

.cg-rec {
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, .06);
}

.cg-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cg-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.cg-live .cg-icon {
    background: rgba(201, 168, 76, .15);
    color: var(--gold);
}

.cg-rec .cg-icon {
    background: rgba(255, 255, 255, .06);
    color: var(--text-muted);
}

.cg-head h5 {
    font-size: 1rem;
    color: var(--text);
}

.cg-list {
    list-style: none;
    padding: 0;
}

.cg-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: .87rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.cg-list li:last-child {
    border-bottom: none;
}

.cg-live .cg-list li i {
    color: var(--gold);
}

.cg-rec .cg-list li i {
    color: rgba(154, 144, 128, .4);
}

/* ── INLINE CTA ── */
.inline-cta {
    background: rgba(201, 168, 76, .06);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: 12px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin: 40px 0;
}

.inline-cta p {
    color: var(--text-muted);
    font-size: .9rem;
    margin: 0;
    max-width: 420px;
    line-height: 1.7;
}

.inline-cta strong {
    color: var(--text);
}

/* ── HOW TO CHOOSE ── */
#choose {
    padding: 96px 0;
    background: var(--dark-2);
}

.criteria-card {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 12px;
    padding: 28px 24px;
    height: 100%;
    transition: all .4s;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.criteria-card:hover {
    border-color: rgba(201, 168, 76, .3);
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, .4);
}

.crit-num {
    font-family: "serif";
    font-size: 2.4rem;
    font-weight: 700;
    color: rgba(201, 168, 76, .25);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
    text-align: right;
}

.crit-body h5 {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 8px;
}

.crit-body p {
    color: var(--text-muted);
    font-size: .86rem;
    line-height: 1.75;
    margin: 0;
}

/* ── AREAS ── */
#areas {
    padding: 72px 0;
    background: var(--dark);
}

.area-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(201, 168, 76, .18);
    background: rgba(201, 168, 76, .04);
    color: var(--text-muted);
    font-size: .82rem;
    margin: 4px;
    transition: all .3s;
    cursor: default;
}

.area-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .1);
}

.area-pill i {
    color: var(--gold);
    font-size: .72rem;
}

/* ── GROWING DEMAND ── */
#demand {
    padding: 80px 0;
    background: var(--dark-3);
}

.demand-card {
    background: var(--dark-2);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    transition: all .4s;
    height: 100%;
}

.demand-card:hover {
    border-color: rgba(201, 168, 76, .3);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
}

.demand-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

.demand-card h5 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.demand-card p {
    color: var(--text-muted);
    font-size: .85rem;
    line-height: 1.7;
    margin: 0;
}

/* ── PRICING ── */
#pricing {
    padding: 96px 0;
    background: var(--dark-2);
}

.pcard {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .13);
    border-radius: 12px;
    padding: 38px 30px;
    text-align: center;
    position: relative;
    transition: all .4s;
    height: 100%;
}

.pcard.hot {
    background: linear-gradient(150deg, #1A1204, var(--dark-3));
    border-color: var(--gold-dim);
}

.pcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .5);
}

.pop-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.pn {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.pp {
    font-family: "serif";
    font-size: 2.85rem;
    color: var(--text);
    font-weight: 700;
}

.pp sub {
    font-size: .95rem;
    color: var(--text-muted);
}

.pd {
    color: var(--text-muted);
    font-size: .82rem;
    margin: 10px 0 20px;
}

.pf {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 24px;
}

.pf li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: .85rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.pf li i {
    color: var(--gold);
    font-size: .82rem;
}

/* ── REVIEWS ── */
#reviews {
    padding: 96px 0;
    background: var(--dark);
}

.rcard {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 12px;
    padding: 26px;
    height: 100%;
    transition: all .35s;
}

.rcard:hover {
    border-color: rgba(201, 168, 76, .28);
    transform: translateY(-4px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .42);
}

.ravatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .92rem;
    flex-shrink: 0;
}

.rname {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text);
}

.rmeta {
    font-size: .72rem;
    color: var(--text-muted);
}

.stars {
    color: var(--gold);
    font-size: .78rem;
}

.rtext {
    color: var(--text-muted);
    font-size: .87rem;
    line-height: 1.75;
    margin-top: 14px;
}

.glabel {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .69rem;
    color: var(--text-muted);
}

/* ── SEO CONTENT ── */
#seo {
    padding: 80px 0;
    background: var(--dark-2);
}

.seo-wrap h2 {
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    color: var(--text);
    margin: 38px 0 14px;
}

.seo-wrap h2:first-child {
    margin-top: 0;
}

.seo-wrap p {
    color: var(--text-muted);
    font-size: .93rem;
    line-height: 1.9;
    margin-bottom: 14px;
}

.seo-wrap strong {
    color: var(--text);
    font-weight: 500;
}

.seo-wrap ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 20px;
}

.seo-wrap ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    color: var(--text-muted);
    font-size: .9rem;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.seo-wrap ul li:last-child {
    border-bottom: none;
}

.seo-wrap ul li i {
    color: var(--gold);
    font-size: .84rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── FAQ ── */
#faq {
    padding: 96px 0;
    background: var(--dark);
}

.accordion-item {
    background: var(--dark-3) !important;
    border: 1px solid rgba(201, 168, 76, .15) !important;
    border-radius: 8px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--dark-3) !important;
    color: var(--text) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: .92rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--gold) !important;
}

.accordion-button::after {
    filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg);
}

.accordion-body {
    background: var(--dark-3);
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.84;
}

/* ── FINAL CTA ── */
#cta {
    padding: 92px 0;
    position: relative;
    overflow: hidden;
    background: var(--dark-3);
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/banner.webp') center/cover no-repeat;
    opacity: .13;
}

#cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, .93), rgba(14, 10, 20, .93));
}

.cta-box {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-box h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 14px;
}

.cta-box p {
    color: var(--text-muted);
    max-width: 510px;
    margin: 0 auto 34px;
    font-size: .96rem;
}

.cta-contacts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.cta-contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, .2);
    background: rgba(255, 255, 255, .03);
    text-decoration: none;
    transition: all .3s;
}

.cta-contact-pill:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, .07);
}

.cta-contact-pill i {
    font-size: 1.1rem;
}

.cta-contact-pill span {
    display: flex;
    flex-direction: column;
}

.cta-contact-pill .cp-lbl {
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.cta-contact-pill .cp-val {
    font-size: .9rem;
    color: var(--text);
    font-weight: 500;
}

/* ── FOOTER ── */
footer {
    background: #060606;
    border-top: 1px solid rgba(201, 168, 76, .15);
    padding: 60px 0 28px;
}

.f-logo img {
    height: 50px;
    margin-bottom: 14px;
}

.f-tagline {
    color: var(--text-muted);
    font-size: .83rem;
    max-width: 238px;
    line-height: 1.7;
}

.f-social {
    display: flex;
    gap: 9px;
    margin-top: 18px;
}

.f-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all .3s;
    font-size: .88rem;
}

.f-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .08);
}

footer h6 {
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .85rem;
    transition: color .3s;
}

footer ul li a:hover {
    color: var(--gold);
}

.f-bottom {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.f-bottom p {
    color: var(--text-muted);
    font-size: .76rem;
    margin: 0;
}

/* ── FLOATING ── */
.floating-btns {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fbtn {
    width: 48px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}

.fbtn-call {
    background: #25D366;
    color: white;
}

.fbtn-wa {
    background: #128C7E;
    color: white;
}

.fbtn:hover {
    transform: scale(1.1);
}

#btt {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--gold-dim);
    color: var(--dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all .3s;
    font-size: 1rem;
}

#btt.vis {
    opacity: 1;
}

#btt:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* ── RESPONSIVE ── */
@media (max-width:991px) {

    .svc-block,
    .svc-block.rev {
        flex-direction: column;
        gap: 26px;
    }

    .svc-img {
        width: 100%;
    }

    .svc-img img {
        height: 270px;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .intro-badge {
        right: 10px;
    }
}

@media (max-width:767px) {
    .inline-cta {
        flex-direction: column;
        text-align: center;
    }

    .intro-img img {
        height: 310px;
    }
}




/* ═══════════════════════════════
       DESIGN TOKENS
    ═══════════════════════════════ */
:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dim: #8A6E2F;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --text: #E8E0D0;
    --text-muted: #9A9080;
    --pink: #D4547A;
    --green: #64b464;
    --blue: #508CC8;
    --orange: #C87832;
    --purple: #9664C8;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "serif";
    font-weight: 600;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 3px;
}

/* ── NAVBAR ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all .4s;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, .96);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, .15);
}

.navbar-brand img {
    height: 80px;
}

.nav-link {
    color: var(--text) !important;
    font-size: .88rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px !important;
    transition: color .3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 1px;
    background: var(--gold);
    transition: all .3s;
}

.nav-link:hover::after {
    left: 14px;
    right: 14px;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.btn-book-nav {
    background: var(--gold);
    color: var(--dark) !important;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 3px;
    text-decoration: none;
    transition: all .3s;
}

.btn-book-nav:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, .35);
}

.navbar-toggler {
    border-color: var(--gold-dim);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201,168,76,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0A0A 0%, #100A06 50%, #0A0A0A 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/dhol-player-stage-show-1280-560.webp') center/cover no-repeat;
    opacity: .25;
    filter: saturate(.5);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(10, 10, 10, .92) 0%, rgba(10, 10, 10, .44) 55%, rgba(10, 10, 10, .78) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.loc-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(201, 168, 76, .08);
    border: 1px solid rgba(201, 168, 76, .38);
    color: var(--gold);
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 20px;
    animation: fadeUp .7s ease both;
}

.hero-kicker {
    font-family: "serif";
    font-style: italic;
    color: rgba(201, 168, 76, .7);
    font-size: clamp(.95rem, 1.8vw, 1.15rem);
    letter-spacing: .05em;
    margin-bottom: 8px;
    animation: fadeUp .75s .05s ease both;
}

.hero-title {
    font-size: clamp(2.8rem, 7.5vw, 6.2rem);
    line-height: 1.02;
    color: var(--text);
    margin-bottom: 6px;
    animation: fadeUp .8s .1s ease both;
}

.hero-title .hl {
    color: var(--gold);
}

.hero-title .loc {
    display: block;
    font-size: clamp(2rem, 5.5vw, 4.8rem);
    color: var(--gold-light);
}

.hero-sub {
    font-size: clamp(.92rem, 1.7vw, 1.12rem);
    color: var(--text-muted);
    font-weight: 300;
    max-width: 520px;
    line-height: 1.82;
    margin-bottom: 38px;
    animation: fadeUp .9s .18s ease both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeUp 1s .26s ease both;
}

/* Buttons */
.btn-gold {
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    font-size: .84rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 168, 76, .42);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    font-weight: 500;
    font-size: .84rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 13px 28px;
    border: 1px solid rgba(201, 168, 76, .45);
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .07);
}

/* Hero stats */
.hero-stats {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    animation: fadeUp 1.1s .34s ease both;
}

.sbox {
    text-align: center;
    padding: 18px 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(201, 168, 76, .13);
    border-radius: 8px;
    transition: all .3s;
}

.sbox:hover {
    background: rgba(201, 168, 76, .07);
    border-color: rgba(201, 168, 76, .32);
}

.sbox-n {
    font-family: "serif";
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.sbox-l {
    font-size: .68rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: .66rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    animation: bounce 2.2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(8px)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ── SHARED UTILS ── */
.chip {
    display: inline-block;
    background: rgba(201, 168, 76, .08);
    border: 1px solid rgba(201, 168, 76, .28);
    color: var(--gold);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.sec-title {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    color: var(--text);
    margin-bottom: 14px;
}

.sec-title span {
    color: var(--gold);
}

.sec-lead {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

.g-line {
    width: 52px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 16px auto;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── INTRO ── */
#intro {
    padding: 96px 0;
    background: var(--dark-2);
}

.intro-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.intro-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: saturate(.82);
    display: block;
    transition: transform .6s, filter .5s;
}

.intro-img:hover img {
    transform: scale(1.04);
    filter: saturate(1);
}

.intro-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, .88), transparent 55%);
    padding: 28px;
}

.intro-quote {
    font-family: "serif";
    font-style: italic;
    font-size: 1.22rem;
    color: var(--gold);
    line-height: 1.55;
}

.intro-badge {
    position: absolute;
    top: 24px;
    right: -16px;
    background: var(--gold);
    color: var(--dark);
    padding: 16px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 36px rgba(0, 0, 0, .55);
}

.intro-badge .bn {
    font-family: "serif";
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.intro-badge .bl {
    font-size: .66rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.prose h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    margin-bottom: 16px;
}

.prose p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 14px;
    font-size: .95rem;
}

.prose strong {
    color: var(--text);
    font-weight: 500;
}

.tick-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 26px;
}

.tick-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    color: var(--text-muted);
    font-size: .9rem;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.tick-list li:last-child {
    border-bottom: none;
}

.tick-list li i {
    color: var(--gold);
    font-size: .88rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── REASONS GRID ── */
#why {
    padding: 96px 0;
    background: var(--dark);
}

.wcard {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 12px;
    padding: 32px 26px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .4s;
}

.wcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold-dim), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.wcard:hover {
    border-color: rgba(201, 168, 76, .3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
}

.wcard:hover::before {
    transform: scaleX(1);
}

.wcard-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.wcard h4 {
    font-size: 1.18rem;
    color: var(--text);
    margin-bottom: 10px;
}

.wcard p {
    color: var(--text-muted);
    font-size: .87rem;
    line-height: 1.75;
}

/* ── SERVICES ── */
#services {
    padding: 96px 0;
    background: var(--dark-2);
}

.svc-block {
    display: flex;
    align-items: center;
    gap: 56px;
    margin-bottom: 80px;
}

.svc-block:last-child {
    margin-bottom: 0;
}

.svc-block.rev {
    flex-direction: row-reverse;
}

.svc-img {
    flex: 0 0 44%;
    border-radius: 12px;
    overflow: hidden;
}

.svc-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: saturate(.8);
    transition: transform .5s, filter .5s;
}

.svc-img:hover img {
    transform: scale(1.05);
    filter: saturate(1);
}

.svc-txt {
    flex: 1;
}

.svc-n {
    font-family: "serif";
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(201, 168, 76, .1);
    line-height: 1;
    margin-bottom: -10px;
}

.svc-txt h3 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    margin-bottom: 14px;
}

.svc-txt p {
    color: var(--text-muted);
    font-size: .93rem;
    line-height: 1.87;
    margin-bottom: 12px;
}

.stags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 14px 0 20px;
}

.stag {
    font-size: .68rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 4px 13px;
    border-radius: 100px;
    border: 1px solid rgba(201, 168, 76, .22);
    color: var(--gold);
    background: rgba(201, 168, 76, .06);
}

/* ── GROUP PERFORMANCE SPOTLIGHT ── */
#group {
    padding: 80px 0;
    background: var(--dark);
}

.group-card {
    background: linear-gradient(145deg, rgba(201, 168, 76, .1), rgba(201, 168, 76, .03));
    border: 1px solid rgba(201, 168, 76, .25);
    border-radius: 16px;
    padding: 42px 36px;
    position: relative;
    overflow: hidden;
}

.group-card::after {
    content: '🥁';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 7rem;
    opacity: .07;
    line-height: 1;
}

.group-card h3 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 16px;
}

.group-card p {
    color: var(--text-muted);
    font-size: .94rem;
    line-height: 1.88;
    max-width: 640px;
    margin-bottom: 14px;
}

.group-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 26px;
}

.group-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(201, 168, 76, .22);
    color: var(--gold);
    background: rgba(201, 168, 76, .06);
    font-size: .78rem;
}

/* ── INLINE CTA ── */
.inline-cta {
    background: rgba(201, 168, 76, .06);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: 12px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin: 40px 0;
}

.inline-cta p {
    color: var(--text-muted);
    font-size: .9rem;
    margin: 0;
    max-width: 420px;
    line-height: 1.7;
}

.inline-cta strong {
    color: var(--text);
}

/* ── LOCAL KNOWLEDGE ── */
#local {
    padding: 80px 0;
    background: var(--dark-2);
}

.local-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.lg-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px;
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 10px;
    transition: all .3s;
}

.lg-item:hover {
    border-color: rgba(201, 168, 76, .28);
    transform: translateY(-3px);
}

.lg-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.lg-body h5 {
    font-size: .96rem;
    color: var(--text);
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.lg-body p {
    color: var(--text-muted);
    font-size: .84rem;
    line-height: 1.7;
    margin: 0;
}

/* ── AREAS ── */
#areas {
    padding: 72px 0;
    background: var(--dark);
}

.area-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(201, 168, 76, .18);
    background: rgba(201, 168, 76, .04);
    color: var(--text-muted);
    font-size: .82rem;
    margin: 4px;
    transition: all .3s;
    cursor: default;
}

.area-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .1);
}

.area-pill i {
    color: var(--gold);
    font-size: .72rem;
}

/* ── PRICING ── */
#pricing {
    padding: 96px 0;
    background: var(--dark-2);
}

.pcard {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .13);
    border-radius: 12px;
    padding: 38px 30px;
    text-align: center;
    position: relative;
    transition: all .4s;
    height: 100%;
}

.pcard.hot {
    background: linear-gradient(150deg, #1A1204, var(--dark-3));
    border-color: var(--gold-dim);
}

.pcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .5);
}

.pop-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.pn {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.pp {
    font-family: "serif";
    font-size: 2.85rem;
    color: var(--text);
    font-weight: 700;
}

.pp sub {
    font-size: .95rem;
    color: var(--text-muted);
}

.pd {
    color: var(--text-muted);
    font-size: .82rem;
    margin: 10px 0 20px;
}

.pf {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 24px;
}

.pf li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: .85rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.pf li i {
    color: var(--gold);
    font-size: .82rem;
}

/* ── REVIEWS ── */
#reviews {
    padding: 96px 0;
    background: var(--dark);
}

.rcard {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 12px;
    padding: 26px;
    height: 100%;
    transition: all .35s;
}

.rcard:hover {
    border-color: rgba(201, 168, 76, .28);
    transform: translateY(-4px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .42);
}

.ravatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .92rem;
    flex-shrink: 0;
}

.rname {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text);
}

.rmeta {
    font-size: .72rem;
    color: var(--text-muted);
}

.stars {
    color: var(--gold);
    font-size: .78rem;
}

.rtext {
    color: var(--text-muted);
    font-size: .87rem;
    line-height: 1.75;
    margin-top: 14px;
}

.glabel {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .69rem;
    color: var(--text-muted);
}

/* ── SEO CONTENT ── */
#seo {
    padding: 80px 0;
    background: var(--dark-2);
}

.seo-wrap h2 {
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    color: var(--text);
    margin: 38px 0 14px;
}

.seo-wrap h2:first-child {
    margin-top: 0;
}

.seo-wrap p {
    color: var(--text-muted);
    font-size: .93rem;
    line-height: 1.9;
    margin-bottom: 14px;
}

.seo-wrap strong {
    color: var(--text);
    font-weight: 500;
}

.seo-wrap ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 20px;
}

.seo-wrap ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    color: var(--text-muted);
    font-size: .9rem;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.seo-wrap ul li:last-child {
    border-bottom: none;
}

.seo-wrap ul li i {
    color: var(--gold);
    font-size: .84rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── FAQ ── */
#faq {
    padding: 96px 0;
    background: var(--dark);
}

.accordion-item {
    background: var(--dark-3) !important;
    border: 1px solid rgba(201, 168, 76, .15) !important;
    border-radius: 8px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--dark-3) !important;
    color: var(--text) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: .92rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--gold) !important;
}

.accordion-button::after {
    filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg);
}

.accordion-body {
    background: var(--dark-3);
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.84;
}

/* ── FINAL CTA ── */
#cta {
    padding: 92px 0;
    position: relative;
    overflow: hidden;
    background: var(--dark-3);
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/banner.webp') center/cover no-repeat;
    opacity: .13;
}

#cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, .93), rgba(16, 10, 6, .93));
}

.cta-box {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-box h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 14px;
}

.cta-box p {
    color: var(--text-muted);
    max-width: 510px;
    margin: 0 auto 34px;
    font-size: .96rem;
}

.cta-contacts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, .2);
    background: rgba(255, 255, 255, .03);
    text-decoration: none;
    transition: all .3s;
}

.cta-pill:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, .07);
}

.cta-pill i {
    font-size: 1.1rem;
}

.cta-pill span {
    display: flex;
    flex-direction: column;
}

.cta-pill .cp-l {
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.cta-pill .cp-v {
    font-size: .9rem;
    color: var(--text);
    font-weight: 500;
}

/* ── FOOTER ── */
footer {
    background: #060606;
    border-top: 1px solid rgba(201, 168, 76, .15);
    padding: 60px 0 28px;
}

.f-logo img {
    height: 50px;
    margin-bottom: 14px;
}

.f-tagline {
    color: var(--text-muted);
    font-size: .83rem;
    max-width: 238px;
    line-height: 1.7;
}

.f-social {
    display: flex;
    gap: 9px;
    margin-top: 18px;
}

.f-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all .3s;
    font-size: .88rem;
}

.f-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .08);
}

footer h6 {
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .85rem;
    transition: color .3s;
}

footer ul li a:hover {
    color: var(--gold);
}

.f-bottom {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.f-bottom p {
    color: var(--text-muted);
    font-size: .76rem;
    margin: 0;
}

/* ── FLOATING ── */
.floating-btns {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fbtn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}

.fbtn-call {
    background: #25D366;
    color: white;
}

.fbtn-wa {
    background: #128C7E;
    color: white;
}

.fbtn:hover {
    transform: scale(1.1);
}

#btt {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--gold-dim);
    color: var(--dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all .3s;
    font-size: 1rem;
}

#btt.vis {
    opacity: 1;
}

#btt:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* ── RESPONSIVE ── */
@media (max-width:991px) {

    .svc-block,
    .svc-block.rev {
        flex-direction: column;
        gap: 26px;
    }

    .svc-img {
        width: 100%;
    }

    .svc-img img {
        height: 265px;
    }

    .local-grid {
        grid-template-columns: 1fr;
    }

    .intro-badge {
        right: 10px;
    }
}

@media (max-width:767px) {
    .inline-cta {
        flex-direction: column;
        text-align: center;
    }

    .intro-img img {
        height: 300px;
    }

    .group-card::after {
        display: none;
    }
}





:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dim: #8A6E2F;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --text: #E8E0D0;
    --text-muted: #9A9080;
    --pink: #D4547A;
    --green: #64b464;
    --blue: #508CC8;
    --orange: #C87832;
    --purple: #9664C8;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "serif";
    font-weight: 600;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 3px;
}

/* ── NAVBAR ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all .4s;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, .96);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, .15);
}

.navbar-brand img {
    height: 80px;
}

.nav-link {
    color: var(--text) !important;
    font-size: .88rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px !important;
    transition: color .3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 1px;
    background: var(--gold);
    transition: all .3s;
}

.nav-link:hover::after {
    left: 14px;
    right: 14px;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.btn-book-nav {
    background: var(--gold);
    color: var(--dark) !important;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 3px;
    text-decoration: none;
    transition: all .3s;
}

.btn-book-nav:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, .35);
}

.navbar-toggler {
    border-color: var(--gold-dim);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201,168,76,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0A0A 0%, #08100A 50%, #0A0A0A 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/dhol-player-dance-1280-960.webp') center/cover no-repeat;
    opacity: .26;
    filter: saturate(.5);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(10, 10, 10, .93) 0%, rgba(10, 10, 10, .42) 55%, rgba(10, 10, 10, .8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.loc-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(201, 168, 76, .08);
    border: 1px solid rgba(201, 168, 76, .38);
    color: var(--gold);
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 20px;
    animation: fadeUp .7s ease both;
}

.hero-kicker {
    font-family: "serif";
    font-style: italic;
    color: rgba(201, 168, 76, .72);
    font-size: clamp(.95rem, 1.8vw, 1.15rem);
    letter-spacing: .05em;
    margin-bottom: 8px;
    animation: fadeUp .75s .05s ease both;
}

.hero-title {
    font-size: clamp(2.8rem, 7.5vw, 6.2rem);
    line-height: 1.02;
    color: var(--text);
    margin-bottom: 6px;
    animation: fadeUp .8s .1s ease both;
}

.hero-title .hl {
    color: var(--gold);
}

.hero-title .loc {
    display: block;
    font-size: clamp(2rem, 5.5vw, 4.8rem);
    color: var(--gold-light);
}

.hero-sub {
    font-size: clamp(.92rem, 1.7vw, 1.12rem);
    color: var(--text-muted);
    font-weight: 300;
    max-width: 520px;
    line-height: 1.82;
    margin-bottom: 38px;
    animation: fadeUp .9s .18s ease both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeUp 1s .26s ease both;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    font-size: .84rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 168, 76, .42);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    font-weight: 500;
    font-size: .84rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 13px 28px;
    border: 1px solid rgba(201, 168, 76, .45);
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .07);
}

.hero-stats {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    animation: fadeUp 1.1s .34s ease both;
}

.sbox {
    text-align: center;
    padding: 18px 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(201, 168, 76, .13);
    border-radius: 8px;
    transition: all .3s;
}

.sbox:hover {
    background: rgba(201, 168, 76, .07);
    border-color: rgba(201, 168, 76, .32);
}

.sbox-n {
    font-family: "serif";
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.sbox-l {
    font-size: .68rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: .66rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    animation: bounce 2.2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(8px)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ── SHARED UTILS ── */
.chip {
    display: inline-block;
    background: rgba(201, 168, 76, .08);
    border: 1px solid rgba(201, 168, 76, .28);
    color: var(--gold);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.sec-title {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    color: var(--text);
    margin-bottom: 14px;
}

.sec-title span {
    color: var(--gold);
}

.sec-lead {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

.g-line {
    width: 52px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 16px auto;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── INTRO ── */
#intro {
    padding: 96px 0;
    background: var(--dark-2);
}

.intro-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.intro-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: saturate(.82);
    display: block;
    transition: transform .6s, filter .5s;
}

.intro-img:hover img {
    transform: scale(1.04);
    filter: saturate(1);
}

.intro-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, .88), transparent 55%);
    padding: 28px;
}

.intro-quote {
    font-family: "serif";
    font-style: italic;
    font-size: 1.22rem;
    color: var(--gold);
    line-height: 1.55;
}

.intro-badge {
    position: absolute;
    top: 24px;
    right: -16px;
    background: var(--gold);
    color: var(--dark);
    padding: 16px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 36px rgba(0, 0, 0, .55);
}

.intro-badge .bn {
    font-family: "serif";
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.intro-badge .bl {
    font-size: .66rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.prose h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    margin-bottom: 16px;
}

.prose p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 14px;
    font-size: .95rem;
}

.prose strong {
    color: var(--text);
    font-weight: 500;
}

.tick-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 26px;
}

.tick-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    color: var(--text-muted);
    font-size: .9rem;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.tick-list li:last-child {
    border-bottom: none;
}

.tick-list li i {
    color: var(--gold);
    font-size: .88rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── FARMHOUSE FEATURE BANNER ── */
#farmhouse-banner {
    padding: 0;
}

.fb-inner {
    background: linear-gradient(135deg, rgba(201, 168, 76, .12) 0%, rgba(201, 168, 76, .04) 100%);
    border-top: 1px solid rgba(201, 168, 76, .2);
    border-bottom: 1px solid rgba(201, 168, 76, .2);
    padding: 44px 0;
}

.fb-stat {
    text-align: center;
    padding: 16px 10px;
}

.fb-stat-n {
    font-family: "serif";
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.fb-stat-l {
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.fb-divider {
    width: 1px;
    background: rgba(201, 168, 76, .2);
    align-self: stretch;
}

/* ── WHY HIRE ── */
#why {
    padding: 96px 0;
    background: var(--dark);
}

.wcard {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 12px;
    padding: 32px 26px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .4s;
}

.wcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold-dim), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.wcard:hover {
    border-color: rgba(201, 168, 76, .3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
}

.wcard:hover::before {
    transform: scaleX(1);
}

.wcard-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.wcard h4 {
    font-size: 1.18rem;
    color: var(--text);
    margin-bottom: 10px;
}

.wcard p {
    color: var(--text-muted);
    font-size: .87rem;
    line-height: 1.75;
}

/* ── SERVICES ── */
#services {
    padding: 96px 0;
    background: var(--dark-2);
}

.svc-block {
    display: flex;
    align-items: center;
    gap: 56px;
    margin-bottom: 80px;
}

.svc-block:last-child {
    margin-bottom: 0;
}

.svc-block.rev {
    flex-direction: row-reverse;
}

.svc-img {
    flex: 0 0 44%;
    border-radius: 12px;
    overflow: hidden;
}

.svc-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: saturate(.8);
    transition: transform .5s, filter .5s;
}

.svc-img:hover img {
    transform: scale(1.05);
    filter: saturate(1);
}

.svc-txt {
    flex: 1;
}

.svc-n {
    font-family: "serif";
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(201, 168, 76, .1);
    line-height: 1;
    margin-bottom: -10px;
}

.svc-txt h3 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    margin-bottom: 14px;
}

.svc-txt p {
    color: var(--text-muted);
    font-size: .93rem;
    line-height: 1.87;
    margin-bottom: 12px;
}

.stags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 14px 0 20px;
}

.stag {
    font-size: .68rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 4px 13px;
    border-radius: 100px;
    border: 1px solid rgba(201, 168, 76, .22);
    color: var(--gold);
    background: rgba(201, 168, 76, .06);
}

/* ── QUALITIES OF A PRO ── */
#qualities {
    padding: 80px 0;
    background: var(--dark);
}

.q-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 10px;
    transition: all .35s;
    margin-bottom: 14px;
}

.q-row:last-child {
    margin-bottom: 0;
}

.q-row:hover {
    border-color: rgba(201, 168, 76, .28);
    transform: translateX(5px);
}

.q-num {
    font-family: "serif";
    font-size: 2rem;
    font-weight: 700;
    color: rgba(201, 168, 76, .2);
    line-height: 1;
    flex-shrink: 0;
    width: 44px;
    text-align: right;
}

.q-body h5 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.q-body p {
    color: var(--text-muted);
    font-size: .86rem;
    line-height: 1.72;
    margin: 0;
}

/* ── DJ FUSION PANEL ── */
#fusion {
    padding: 80px 0;
    background: var(--dark-2);
}

.fusion-card {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .18);
    border-radius: 16px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.fusion-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, .12) 0%, transparent 70%);
}

.fusion-card::after {
    content: '🎧';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 6rem;
    opacity: .06;
    line-height: 1;
}

.fusion-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.fb-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    background: rgba(201, 168, 76, .05);
    border: 1px solid rgba(201, 168, 76, .12);
    border-radius: 10px;
    transition: all .3s;
}

.fb-item:hover {
    border-color: rgba(201, 168, 76, .28);
    background: rgba(201, 168, 76, .09);
}

.fb-item i {
    font-size: 1.25rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.fb-item-body h6 {
    font-size: .92rem;
    color: var(--text);
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.fb-item-body p {
    color: var(--text-muted);
    font-size: .82rem;
    line-height: 1.65;
    margin: 0;
}

/* ── INLINE CTA ── */
.inline-cta {
    background: rgba(201, 168, 76, .06);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: 12px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin: 40px 0;
}

.inline-cta p {
    color: var(--text-muted);
    font-size: .9rem;
    margin: 0;
    max-width: 430px;
    line-height: 1.7;
}

.inline-cta strong {
    color: var(--text);
}

/* ── AREAS ── */
#areas {
    padding: 72px 0;
    background: var(--dark);
}

.area-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(201, 168, 76, .18);
    background: rgba(201, 168, 76, .04);
    color: var(--text-muted);
    font-size: .82rem;
    margin: 4px;
    transition: all .3s;
    cursor: default;
}

.area-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .1);
}

.area-pill i {
    color: var(--gold);
    font-size: .72rem;
}

/* ── PRICING ── */
#pricing {
    padding: 96px 0;
    background: var(--dark-2);
}

.pcard {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .13);
    border-radius: 12px;
    padding: 38px 30px;
    text-align: center;
    position: relative;
    transition: all .4s;
    height: 100%;
}

.pcard.hot {
    background: linear-gradient(150deg, #1A1204, var(--dark-3));
    border-color: var(--gold-dim);
}

.pcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .5);
}

.pop-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.pn {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.pp {
    font-family: "serif";
    font-size: 2.85rem;
    color: var(--text);
    font-weight: 700;
}

.pp sub {
    font-size: .95rem;
    color: var(--text-muted);
}

.pd {
    color: var(--text-muted);
    font-size: .82rem;
    margin: 10px 0 20px;
}

.pf {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 24px;
}

.pf li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: .85rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.pf li i {
    color: var(--gold);
    font-size: .82rem;
}

/* ── REVIEWS ── */
#reviews {
    padding: 96px 0;
    background: var(--dark);
}

.rcard {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 12px;
    padding: 26px;
    height: 100%;
    transition: all .35s;
}

.rcard:hover {
    border-color: rgba(201, 168, 76, .28);
    transform: translateY(-4px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .42);
}

.ravatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .92rem;
    flex-shrink: 0;
}

.rname {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text);
}

.rmeta {
    font-size: .72rem;
    color: var(--text-muted);
}

.stars {
    color: var(--gold);
    font-size: .78rem;
}

.rtext {
    color: var(--text-muted);
    font-size: .87rem;
    line-height: 1.75;
    margin-top: 14px;
}

.glabel {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .69rem;
    color: var(--text-muted);
}

/* ── SEO CONTENT ── */
#seo {
    padding: 80px 0;
    background: var(--dark-2);
}

.seo-wrap h2 {
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    color: var(--text);
    margin: 38px 0 14px;
}

.seo-wrap h2:first-child {
    margin-top: 0;
}

.seo-wrap p {
    color: var(--text-muted);
    font-size: .93rem;
    line-height: 1.9;
    margin-bottom: 14px;
}

.seo-wrap strong {
    color: var(--text);
    font-weight: 500;
}

.seo-wrap ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 20px;
}

.seo-wrap ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    color: var(--text-muted);
    font-size: .9rem;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.seo-wrap ul li:last-child {
    border-bottom: none;
}

.seo-wrap ul li i {
    color: var(--gold);
    font-size: .84rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── FAQ ── */
#faq {
    padding: 96px 0;
    background: var(--dark);
}

.accordion-item {
    background: var(--dark-3) !important;
    border: 1px solid rgba(201, 168, 76, .15) !important;
    border-radius: 8px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--dark-3) !important;
    color: var(--text) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: .92rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--gold) !important;
}

.accordion-button::after {
    filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg);
}

.accordion-body {
    background: var(--dark-3);
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.84;
}

/* ── FINAL CTA ── */
#cta {
    padding: 92px 0;
    position: relative;
    overflow: hidden;
    background: var(--dark-3);
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/banner.webp') center/cover no-repeat;
    opacity: .13;
}

#cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, .93), rgba(8, 16, 10, .93));
}

.cta-box {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-box h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 14px;
}

.cta-box p {
    color: var(--text-muted);
    max-width: 510px;
    margin: 0 auto 34px;
    font-size: .96rem;
}

.cta-contacts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, .2);
    background: rgba(255, 255, 255, .03);
    text-decoration: none;
    transition: all .3s;
}

.cta-pill:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, .07);
}

.cta-pill i {
    font-size: 1.1rem;
}

.cta-pill span {
    display: flex;
    flex-direction: column;
}

.cta-pill .cp-l {
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.cta-pill .cp-v {
    font-size: .9rem;
    color: var(--text);
    font-weight: 500;
}

/* ── FOOTER ── */
footer {
    background: #060606;
    border-top: 1px solid rgba(201, 168, 76, .15);
    padding: 60px 0 28px;
}

.f-logo img {
    height: 50px;
    margin-bottom: 14px;
}

.f-tagline {
    color: var(--text-muted);
    font-size: .83rem;
    max-width: 238px;
    line-height: 1.7;
}

.f-social {
    display: flex;
    gap: 9px;
    margin-top: 18px;
}

.f-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all .3s;
    font-size: .88rem;
}

.f-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .08);
}

footer h6 {
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .85rem;
    transition: color .3s;
}

footer ul li a:hover {
    color: var(--gold);
}

.f-bottom {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.f-bottom p {
    color: var(--text-muted);
    font-size: .76rem;
    margin: 0;
}

/* ── FLOATING ── */
.floating-btns {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fbtn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}

.fbtn-call {
    background: #25D366;
    color: white;
}

.fbtn-wa {
    background: #128C7E;
    color: white;
}

.fbtn:hover {
    transform: scale(1.1);
}

#btt {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--gold-dim);
    color: var(--dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all .3s;
    font-size: 1rem;
}

#btt.vis {
    opacity: 1;
}

#btt:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* ── RESPONSIVE ── */
@media (max-width:991px) {

    .svc-block,
    .svc-block.rev {
        flex-direction: column;
        gap: 26px;
    }

    .svc-img {
        width: 100%;
    }

    .svc-img img {
        height: 265px;
    }

    .fusion-benefits {
        grid-template-columns: 1fr;
    }

    .intro-badge {
        right: 10px;
    }
}

@media (max-width:767px) {
    .inline-cta {
        flex-direction: column;
        text-align: center;
    }

    .intro-img img {
        height: 300px;
    }

    .fusion-card {
        padding: 30px 22px;
    }

    .fusion-card::after {
        display: none;
    }
}




/* ═══════════════════════════════
       DESIGN TOKENS
    ═══════════════════════════════ */
:root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dim: #8A6E2F;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --text: #E8E0D0;
    --text-muted: #9A9080;
    --pink: #D4547A;
    --green: #64b464;
    --blue: #508CC8;
    --orange: #C87832;
    --purple: #9664C8;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "serif";
    font-weight: 600;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 3px;
}

/* ── NAVBAR ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all .4s;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, .96);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 168, 76, .15);
}

.navbar-brand img {
    height: 80px;
}

.nav-link {
    color: var(--text) !important;
    font-size: .88rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px !important;
    transition: color .3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 1px;
    background: var(--gold);
    transition: all .3s;
}

.nav-link:hover::after {
    left: 14px;
    right: 14px;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.btn-book-nav {
    background: var(--gold);
    color: var(--dark) !important;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 3px;
    text-decoration: none;
    transition: all .3s;
}

.btn-book-nav:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, .35);
}

.navbar-toggler {
    border-color: var(--gold-dim);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201,168,76,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0A0A 0%, #0A0C14 50%, #0A0A0A 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/dhol-player-dance-1280-720.webp') center/cover no-repeat;
    opacity: .25;
    filter: saturate(.5);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(10, 10, 10, .93) 0%, rgba(10, 10, 10, .42) 55%, rgba(10, 10, 10, .8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.loc-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(201, 168, 76, .08);
    border: 1px solid rgba(201, 168, 76, .38);
    color: var(--gold);
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 20px;
    animation: fadeUp .7s ease both;
}

.hero-kicker {
    font-family: "serif";
    font-style: italic;
    color: rgba(201, 168, 76, .72);
    font-size: clamp(.95rem, 1.8vw, 1.15rem);
    letter-spacing: .05em;
    margin-bottom: 8px;
    animation: fadeUp .75s .05s ease both;
}

.hero-title {
    font-size: clamp(2.8rem, 7.5vw, 6.2rem);
    line-height: 1.02;
    color: var(--text);
    margin-bottom: 6px;
    animation: fadeUp .8s .1s ease both;
}

.hero-title .hl {
    color: var(--gold);
}

.hero-title .loc {
    display: block;
    font-size: clamp(2rem, 5.5vw, 4.8rem);
    color: var(--gold-light);
}

.hero-sub {
    font-size: clamp(.92rem, 1.7vw, 1.12rem);
    color: var(--text-muted);
    font-weight: 300;
    max-width: 520px;
    line-height: 1.82;
    margin-bottom: 38px;
    animation: fadeUp .9s .18s ease both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeUp 1s .26s ease both;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    font-size: .84rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 168, 76, .42);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    font-weight: 500;
    font-size: .84rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 13px 28px;
    border: 1px solid rgba(201, 168, 76, .45);
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .3s;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .07);
}

.hero-stats {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    animation: fadeUp 1.1s .34s ease both;
}

.sbox {
    text-align: center;
    padding: 18px 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(201, 168, 76, .13);
    border-radius: 8px;
    transition: all .3s;
}

.sbox:hover {
    background: rgba(201, 168, 76, .07);
    border-color: rgba(201, 168, 76, .32);
}

.sbox-n {
    font-family: "serif";
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.sbox-l {
    font-size: .68rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: .66rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    animation: bounce 2.2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(8px)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ── SHARED UTILS ── */
.chip {
    display: inline-block;
    background: rgba(201, 168, 76, .08);
    border: 1px solid rgba(201, 168, 76, .28);
    color: var(--gold);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.sec-title {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    color: var(--text);
    margin-bottom: 14px;
}

.sec-title span {
    color: var(--gold);
}

.sec-lead {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}

.g-line {
    width: 52px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 16px auto;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── INTRO ── */
#intro {
    padding: 96px 0;
    background: var(--dark-2);
}

.intro-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.intro-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: saturate(.82);
    display: block;
    transition: transform .6s, filter .5s;
}

.intro-img:hover img {
    transform: scale(1.04);
    filter: saturate(1);
}

.intro-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, .88), transparent 55%);
    padding: 28px;
}

.intro-quote {
    font-family: "serif";
    font-style: italic;
    font-size: 1.22rem;
    color: var(--gold);
    line-height: 1.55;
}

.intro-badge {
    position: absolute;
    top: 24px;
    right: -16px;
    background: var(--gold);
    color: var(--dark);
    padding: 16px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 36px rgba(0, 0, 0, .55);
}

.intro-badge .bn {
    font-family: "serif";
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.intro-badge .bl {
    font-size: .66rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.prose h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    margin-bottom: 16px;
}

.prose p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 14px;
    font-size: .95rem;
}

.prose strong {
    color: var(--text);
    font-weight: 500;
}

.tick-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 26px;
}

.tick-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    color: var(--text-muted);
    font-size: .9rem;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.tick-list li:last-child {
    border-bottom: none;
}

.tick-list li i {
    color: var(--gold);
    font-size: .88rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── WHY HIRE ── */
#why {
    padding: 96px 0;
    background: var(--dark);
}

.wcard {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 12px;
    padding: 32px 26px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .4s;
}

.wcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold-dim), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.wcard:hover {
    border-color: rgba(201, 168, 76, .3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
}

.wcard:hover::before {
    transform: scaleX(1);
}

.wcard-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.wcard h4 {
    font-size: 1.18rem;
    color: var(--text);
    margin-bottom: 10px;
}

.wcard p {
    color: var(--text-muted);
    font-size: .87rem;
    line-height: 1.75;
}

/* ── TYPES OF DHOL PLAYERS ── */
#types {
    padding: 96px 0;
    background: var(--dark-2);
}

.type-card {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .12);
    border-radius: 14px;
    padding: 36px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .4s;
    text-align: center;
}

.type-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform .4s;
}

.type-card:hover {
    border-color: rgba(201, 168, 76, .3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
}

.type-card:hover::after {
    transform: scaleX(1);
}

.type-emoji {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 18px;
    line-height: 1;
}

.type-card h4 {
    font-size: 1.22rem;
    color: var(--text);
    margin-bottom: 12px;
}

.type-card p {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.78;
    margin-bottom: 18px;
}

.type-badge {
    display: inline-block;
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .25);
    color: var(--gold);
    font-size: .66rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}

/* ── SERVICES ── */
#services {
    padding: 96px 0;
    background: var(--dark);
}

.svc-block {
    display: flex;
    align-items: center;
    gap: 56px;
    margin-bottom: 80px;
}

.svc-block:last-child {
    margin-bottom: 0;
}

.svc-block.rev {
    flex-direction: row-reverse;
}

.svc-img {
    flex: 0 0 44%;
    border-radius: 12px;
    overflow: hidden;
}

.svc-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: saturate(.8);
    transition: transform .5s, filter .5s;
}

.svc-img:hover img {
    transform: scale(1.05);
    filter: saturate(1);
}

.svc-txt {
    flex: 1;
}

.svc-n {
    font-family: "serif";
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(201, 168, 76, .1);
    line-height: 1;
    margin-bottom: -10px;
}

.svc-txt h3 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    margin-bottom: 14px;
}

.svc-txt p {
    color: var(--text-muted);
    font-size: .93rem;
    line-height: 1.87;
    margin-bottom: 12px;
}

.stags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 14px 0 20px;
}

.stag {
    font-size: .68rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 4px 13px;
    border-radius: 100px;
    border: 1px solid rgba(201, 168, 76, .22);
    color: var(--gold);
    background: rgba(201, 168, 76, .06);
}

/* ── HOW TO IDENTIFY ── */
#identify {
    padding: 80px 0;
    background: var(--dark-2);
}

.id-step {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 26px;
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 12px;
    margin-bottom: 14px;
    transition: all .35s;
    position: relative;
    overflow: hidden;
}

.id-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold-dim), var(--gold));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s;
    border-radius: 3px 0 0 3px;
}

.id-step:hover {
    border-color: rgba(201, 168, 76, .28);
    transform: translateX(6px);
}

.id-step:hover::before {
    transform: scaleY(1);
}

.id-step:last-child {
    margin-bottom: 0;
}

.id-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 168, 76, .1);
    border: 2px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "serif";
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.id-body h5 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.id-body p {
    color: var(--text-muted);
    font-size: .87rem;
    line-height: 1.75;
    margin: 0;
}

/* ── ATTRIBUTES PANEL ── */
#attributes {
    padding: 80px 0;
    background: var(--dark);
}

.attr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.attr-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 10px;
    transition: all .35s;
}

.attr-item:hover {
    border-color: rgba(201, 168, 76, .28);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .38);
}

.attr-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.attr-body h5 {
    font-size: .96rem;
    color: var(--text);
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.attr-body p {
    color: var(--text-muted);
    font-size: .84rem;
    line-height: 1.7;
    margin: 0;
}

/* ── INLINE CTA ── */
.inline-cta {
    background: rgba(201, 168, 76, .06);
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: 12px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin: 40px 0;
}

.inline-cta p {
    color: var(--text-muted);
    font-size: .9rem;
    margin: 0;
    max-width: 430px;
    line-height: 1.7;
}

.inline-cta strong {
    color: var(--text);
}

/* ── AREAS ── */
#areas {
    padding: 72px 0;
    background: var(--dark-2);
}

.area-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(201, 168, 76, .18);
    background: rgba(201, 168, 76, .04);
    color: var(--text-muted);
    font-size: .82rem;
    margin: 4px;
    transition: all .3s;
    cursor: default;
}

.area-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .1);
}

.area-pill i {
    color: var(--gold);
    font-size: .72rem;
}

/* ── PRICING ── */
#pricing {
    padding: 96px 0;
    background: var(--dark);
}

.pcard {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .13);
    border-radius: 12px;
    padding: 38px 30px;
    text-align: center;
    position: relative;
    transition: all .4s;
    height: 100%;
}

.pcard.hot {
    background: linear-gradient(150deg, #1A1204, var(--dark-3));
    border-color: var(--gold-dim);
}

.pcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .5);
}

.pop-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.pn {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.pp {
    font-family: "serif";
    font-size: 2.85rem;
    color: var(--text);
    font-weight: 700;
}

.pp sub {
    font-size: .95rem;
    color: var(--text-muted);
}

.pd {
    color: var(--text-muted);
    font-size: .82rem;
    margin: 10px 0 20px;
}

.pf {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 24px;
}

.pf li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: .85rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.pf li i {
    color: var(--gold);
    font-size: .82rem;
}

/* ── REVIEWS ── */
#reviews {
    padding: 96px 0;
    background: var(--dark-2);
}

.rcard {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 12px;
    padding: 26px;
    height: 100%;
    transition: all .35s;
}

.rcard:hover {
    border-color: rgba(201, 168, 76, .28);
    transform: translateY(-4px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .42);
}

.ravatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .92rem;
    flex-shrink: 0;
}

.rname {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text);
}

.rmeta {
    font-size: .72rem;
    color: var(--text-muted);
}

.stars {
    color: var(--gold);
    font-size: .78rem;
}

.rtext {
    color: var(--text-muted);
    font-size: .87rem;
    line-height: 1.75;
    margin-top: 14px;
}

.glabel {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .69rem;
    color: var(--text-muted);
}

/* ── SEO CONTENT ── */
#seo {
    padding: 80px 0;
    background: var(--dark);
}

.seo-wrap h2 {
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    color: var(--text);
    margin: 38px 0 14px;
}

.seo-wrap h2:first-child {
    margin-top: 0;
}

.seo-wrap p {
    color: var(--text-muted);
    font-size: .93rem;
    line-height: 1.9;
    margin-bottom: 14px;
}

.seo-wrap strong {
    color: var(--text);
    font-weight: 500;
}

.seo-wrap ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 20px;
}

.seo-wrap ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    color: var(--text-muted);
    font-size: .9rem;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.seo-wrap ul li:last-child {
    border-bottom: none;
}

.seo-wrap ul li i {
    color: var(--gold);
    font-size: .84rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── FAQ ── */
#faq {
    padding: 96px 0;
    background: var(--dark-2);
}

.accordion-item {
    background: var(--dark-3) !important;
    border: 1px solid rgba(201, 168, 76, .15) !important;
    border-radius: 8px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--dark-3) !important;
    color: var(--text) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: .92rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--gold) !important;
}

.accordion-button::after {
    filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg);
}

.accordion-body {
    background: var(--dark-3);
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.84;
}

/* ── FINAL CTA ── */
#cta {
    padding: 92px 0;
    position: relative;
    overflow: hidden;
    background: var(--dark-3);
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/banner.webp') center/cover no-repeat;
    opacity: .13;
}

#cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, .93), rgba(10, 12, 20, .93));
}

.cta-box {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-box h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 14px;
}

.cta-box p {
    color: var(--text-muted);
    max-width: 510px;
    margin: 0 auto 34px;
    font-size: .96rem;
}

.cta-contacts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, .2);
    background: rgba(255, 255, 255, .03);
    text-decoration: none;
    transition: all .3s;
}

.cta-pill:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, .07);
}

.cta-pill i {
    font-size: 1.1rem;
}

.cta-pill span {
    display: flex;
    flex-direction: column;
}

.cta-pill .cp-l {
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.cta-pill .cp-v {
    font-size: .9rem;
    color: var(--text);
    font-weight: 500;
}

/* ── FOOTER ── */
footer {
    background: #060606;
    border-top: 1px solid rgba(201, 168, 76, .15);
    padding: 60px 0 28px;
}

.f-logo img {
    height: 50px;
    margin-bottom: 14px;
}

.f-tagline {
    color: var(--text-muted);
    font-size: .83rem;
    max-width: 238px;
    line-height: 1.7;
}

.f-social {
    display: flex;
    gap: 9px;
    margin-top: 18px;
}

.f-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all .3s;
    font-size: .88rem;
}

.f-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .08);
}

footer h6 {
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .85rem;
    transition: color .3s;
}

footer ul li a:hover {
    color: var(--gold);
}

.f-bottom {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.f-bottom p {
    color: var(--text-muted);
    font-size: .76rem;
    margin: 0;
}

/* ── FLOATING ── */
.floating-btns {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fbtn {
    width: 48px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}

.fbtn-call {
    background: #25D366;
    color: white;
}

.fbtn-wa {
    background: #128C7E;
    color: white;
}

.fbtn:hover {
    transform: scale(1.1);
}

#btt {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--gold-dim);
    color: var(--dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all .3s;
    font-size: 1rem;
}

#btt.vis {
    opacity: 1;
}

#btt:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* ── RESPONSIVE ── */
@media (max-width:991px) {

    .svc-block,
    .svc-block.rev {
        flex-direction: column;
        gap: 26px;
    }

    .svc-img {
        width: 100%;
    }

    .svc-img img {
        height: 265px;
    }

    .attr-grid {
        grid-template-columns: 1fr;
    }

    .intro-badge {
        right: 10px;
    }
}

@media (max-width:767px) {
    .inline-cta {
        flex-direction: column;
        text-align: center;
    }

    .intro-img img {
        height: 300px;
    }
}