:root {
    --bg: #070607;
    --card: #0f0f10;
    --muted: #9b9b9b;
    --accent: #c59f55;
    /* gold */
    --radius: 14px;
    --maxw: 1200px;
    --sans: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
    --serif: 'Playfair Display', serif;
}

/* Base */
* {
    box-sizing: border-box
}


html,
body {
    height: 100% !important;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #040405, var(--bg));
    color: #eee;
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.45;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    /* padding: 20px */
}

.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 0 20px */
}

/* Buttons */
.btn {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: transparent;
    color: var(--muted);
    font-weight: 600;
    cursor: pointer
}

.btn.primary {
    background: linear-gradient(90deg, rgba(197, 159, 85, 0.12), rgba(197, 159, 85, 0.06));
    border: 1px solid rgba(197, 159, 85, 0.22);
    color: var(--accent)
}

.btn.ghost {
    background: transparent
}

.btn.link-btn {
    background: transparent;
    border: 0;
    color: var(--accent);
    font-weight: 700;
    cursor: pointer
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%
}

.hero-bg {
    position: absolute;
    inset: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #000000 10%, rgb(0 0 0 / 92%) 30%, rgb(7 6 7 / 0%));
}

.hero-overlay-2 {
    position: relative;
    inset: 0;
}

.hero-circle-1,
.hero-circle-2 {
    position: absolute;
    border-radius: 50%;
    border: 1px solid #fff;
    opacity: .35;
}

.hero-circle-1 {
    width: 130px;
    height: 130px;
    top: 120px;
    left: 80px;
    animation: pulseGlow 4s infinite ease-in-out;
}

.hero-circle-2 {
    width: 100px;
    height: 100px;
    bottom: 180px;
    right: 120px;
    animation: float 5s infinite ease-in-out
}

.hero-container {
    will-change: transform, opacity;
    position: relative;
    z-index: 10;
}

.sparkle-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(197, 159, 85, 0.12);
    border: 1px solid rgba(197, 159, 85, 0.4);
    border-radius: 50px;
    color: var(--accent);
    font-size: 12px
}

.hero-title {
    font-family: var(--serif);
    font-size: 58px;
    line-height: 1.1;
    font-weight: 700;
    margin-top: 22px;
    margin-bottom: 12px;
    color: #fff
}

.gold-gradient {
    display: block;
    background: linear-gradient(135deg, #e2c17a, #c59f55, #f2d6a1);
    -webkit-background-clip: text;
    color: transparent;
    margin-top: 6px
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #b9b9b9;
    margin-bottom: 28px
}

.hero-subtitle .gold {
    color: var(--accent)
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 35px;
    font-size: 14px;
    color: #d0d0d0
}

.hero-features .dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px
}

.primary-btn {
    padding: 14px 28px;
    border-radius: 12px;
    border: 0;
    background: linear-gradient(135deg, var(--accent), #f1d39a);
    color: #070707;
    font-weight: 700
}

.outline-btn {
    padding: 14px 28px;
    border-radius: 12px;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--accent);
    font-weight: 600
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #070607, transparent)
}

/* ABOUT */
.about-section {
    background: #000;
    padding: 48px 0;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.02)
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 38px;
    align-items: start
}

.eyebrow.small {
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #f1d39a);
    border-radius: 6px;
    margin: 10px 0;
}

.about-title {
    font-family: var(--serif);
    font-size: 40px;
    margin: 8px 0 10px;
    color: #fff
}

.gold-block {
    /* display: block; */
    color: var(--accent);
    margin-top: 4px;
    font-size: 40px
}

.leading {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 12px
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px
}

.stat {
    text-align: center
}

.stat-number {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent)
}

.stat-label {
    color: var(--muted);
    font-size: 13px;
    margin-top: 6px
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 22px
}

.card-luxury {
    padding: 16px 16px 0 16px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: #4a4a4a 0px 1px 3px 0px, #4a4a4a 0px 0px 0px 1px;
}

.icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #262113;
    color: #D9A520;
    margin-bottom: 8px;
}

.feature-title {
    font-weight: 700;
    margin: 6px 0;
    font-size: 15px;
    color: #fff;
}

.feature-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4
}

/* SERVICES */
#services .container {
    background: #000;
    z-index: 10;
}

#services .contentSec {
    margin-bottom: 50px;
}

.section-padding {
    padding: 56px 0
}

/*.services-section {*/
/*    background: transparent*/
/*}*/

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.service-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: #414141 1.95px 1.95px 2.6px;
}

.service-media {
    position: relative;
    height: 240px;
    overflow: hidden
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s
}

.service-media:hover img {
    transform: scale(1.08)
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #070607, transparent)
}

.service-caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: #fff
}

.service-body {
    padding: 16px
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    color: #ddd;
    line-height: 1.6
}

/* PACKAGES */
#packages .contentSec {
    margin-bottom: 50px;
}

.packages-section {
    padding: 56px 0;
    background: linear-gradient(180deg, #0f0f10, #070607);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 22px;
}

.package-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    border: 1px solid rgba(197, 159, 85, 0.28);
    padding: 18px;
    border-radius: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    /* box-shadow: #414141 1.95px 1.95px 2.6px; */
    box-shadow: 0 10px 30px rgba(197, 159, 85, 0.03);
}

.package-card.popular {
    /* border: 1px solid rgba(197, 159, 85, 0.28); */
    /* box-shadow: 0 10px 30px rgba(197, 159, 85, 0.03); */
    box-shadow: var(--accent) 0px 2px 5px -1px, var(--accent) 0px 1px 3px -1px;

}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #070707;
    padding: 4px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.pkg-name {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--accent);
    margin: 0
}

.pkg-tag {
    color: #ddd;
    font-weight: 600;
    font-size: 13px;
    margin-top: 6px
}

.pkg-desc {
    color: var(--muted);
    font-size: 13px;
    margin-top: 8px
}

.pkg-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.03);
    margin: 14px 0
}

.pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1
}

.pkg-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
    font-size: 14px
}

.pkg-features .check {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: rgba(197, 159, 85, 0.06);
    display: grid;
    place-items: center;
    color: var(--accent)
}

.package-btn {
    margin-top: 8px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 0;
    background: linear-gradient(135deg, var(--accent), #f1d39a);
    color: #070707;
    font-weight: 700;
    cursor: pointer
}

/* GALLERY */
.gallery-section {
    background: #0d0d0d;
    color: #fff;
    padding: 56px 0
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px
}

.section-badge {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500
}

.section-title {
    font-family: var(--serif);
    font-size: 40px;
    margin: 10px 0 12px;
    font-weight: 700
}

.section-sub {
    color: #aaa;
    max-width: 620px;
    margin: auto;
    line-height: 1.7
}

.gallery-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, 1fr)
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    object-fit: contain;
}

.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: 3/4
}

.gallery-item.square {
    aspect-ratio: 1/1
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s
}

.gallery-item:hover img {
    transform: scale(1.12)
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity .4s;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2), transparent)
}

.gallery-item:hover .gallery-overlay {
    opacity: 1
}

.gallery-cat {
    color: var(--accent);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500
}

.gallery-title {
    font-family: var(--serif);
    font-size: 20px;
    margin-top: 6px;
    font-weight: 600;
    color: #fff
}

/* TESTIMONIALS */
/* .section-padding {
    padding: 60px 20px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(197, 159, 85, 0.1);
    border: 1px solid rgba(197, 159, 85, 0.3);
    border-radius: 20px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 20px auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.gold-text {
    color: var(--accent);
}

.section-sub {
    color: #999;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
} */

.testimonials-section {
    position: relative;
    overflow: hidden;
}

.contentSec {
    margin-bottom: 50px;
}

.testimonial {
    padding: 25px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 159, 85, 0.3);
}

.quote-icon {
    font-size: 32px;
    color: var(--accent);
    opacity: 0.95;
    line-height: 1;
}

.stars {
    color: var(--accent);
    font-weight: 700;
    margin: 12px 0;
    font-size: 18px;
}

.quote {
    color: #ddd;
    line-height: 1.7;
    margin: 15px 0;
    font-size: 15px;
    min-height: 100px;
}

.author {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: auto;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(197, 159, 85, 0.25), rgba(197, 159, 85, 0.08));
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.muted {
    color: #888;
}

/* Carousel Controls Styling */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(197, 159, 85, 0.2);
    border-radius: 50%;
    opacity: 1;
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(197, 159, 85, 0.4);
}

/* Mobile-specific fixes */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-sub {
        font-size: 1rem;
    }

    /* Show one testimonial at a time on mobile */
    .carousel-item .row>div:not(:first-child) {
        display: none;
    }

    .carousel-item .row>div:first-child {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .quote {
        min-height: auto;
    }

    .carousel-control-prev {
        /* left: -10px; */
        display: none;
    }

    .carousel-control-next {
        /* right: -10px; */
        display: none;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        background: rgba(197, 159, 85, 0.3);
    }
}

/* Tablet view - show 2 testimonials */
@media (min-width: 769px) and (max-width: 991px) {
    .carousel-item .row>div:nth-child(n+3) {
        display: none;
    }

    .carousel-item .row>div {
        max-width: 50%;
        flex: 0 0 50%;
    }
}




/* CTA */
.cta-section {
    position: relative;
    padding: 64px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.02)
}

.cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2
}

.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.18
}

.cta-blob-top {
    width: 360px;
    height: 360px;
    left: -120px;
    top: -100px;
    background: linear-gradient(135deg, rgba(197, 159, 85, 0.12), rgba(197, 159, 85, 0.04))
}

.cta-blob-bottom {
    width: 280px;
    height: 280px;
    right: -90px;
    bottom: -80px;
    background: linear-gradient(135deg, rgba(197, 159, 85, 0.06), rgba(197, 159, 85, 0.02))
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(197, 159, 85, 0.08);
    border: 1px solid rgba(197, 159, 85, 0.18);
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 18px
}

.cta-title {
    font-family: var(--serif);
    font-size: 40px;
    margin: 10px 0 8px;
    color: #fff
}

.cta-title .gold-block {
    color: var(--accent)
}

.cta-lead {
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto 22px;
    font-size: 15px
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 26px;
    flex-wrap: wrap
}

.btn-xl {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px
}

.cta-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 720px;
    margin: 0 auto
}

.ccard {
    padding: 18px;
    text-align: center;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    border: 1px solid rgba(255, 255, 255, 0.03)
}

.cc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin: 0 auto 10px;
    background: rgba(197, 159, 85, 0.06);
    color: var(--accent)
}

/* CONTACT FORM */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 20px;
    margin-top: 18px
}

.booking-form {
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    gap: 12px
}

.label {
    color: var(--muted);
    font-size: 13px
}

input,
select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: transparent;
    color: #fff
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 10px
}

/* FOOTER */
.footer-section {
    background: #000 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px
}

.footer-container {
    max-width: 1280px;
    margin: auto;
    padding: 0 24px
}

.footer-row {
    display: flex;
    /* grid-template-columns: 2fr 1fr 1fr; */
    gap: 150px;
    align-items: center;
    justify-content: center;
}

.footer-row .social {
    gap: 30px;
}

.footer-row .social i {
    color: #fff;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 700
}

.footer-desc {
    color: #bbb;
    margin: 14px 0 20px;
    line-height: 1.6;
    max-width: 340px
}

.footer-social {
    display: flex;
    gap: 12px
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    color: #eee;
    transition: 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--accent);
    color: #000
}

.footer-heading {
    font-family: var(--serif);
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600
}

.footer-list li {
    margin: 8px 0
}

.footer-list a {
    color: #aaa;
    font-size: 14px;
    transition: 0.3s
}

.footer-list a:hover {
    color: var(--accent)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    /* flex-direction: column; */
    gap: 10px;
    align-items: center;
    color: #999;
    font-size: 14px
}

.footer-brand img {
    width: 200px;
}

.footer-love {
    display: flex;
    align-items: center;
    gap: 6px
}

.gold {
    color: var(--accent)
}

/* Animations */
@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4
    }

    50% {
        transform: scale(1.08);
        opacity: 0.65
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-18px)
    }
}


.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.fade-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width:1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    /* .testimonials-grid {
        grid-template-columns: repeat(1, 1fr)
    } */

    .contact-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding-top: 20px;
    }

    .package-btn {
        font-size: 12px;
    }

    .popular-badge {
        font-size: 8px !important;
        padding: 2px !important;
    }

    #booking-form {
        .form-title {
            font-size: 18px !important;
        }

        .form-text-small {
            font-size: 10px !important;
        }
    }

    .footer-row .social h4 {
        font-size: 12px;
    }

    .social-btn {
        font-size: 12px;
    }

    .footer-row .rights p {
        font-size: 11px;
    }
}

@media (max-width:640px) {

    #services {
        z-index: 10;
    }

    #gallery {
        z-index: 10;
    }

    body,
    html {
        overflow-x: hidden !important;
        height: auto !important;
    }

    .hero-section {
        min-height: 60vh;
        padding: 0 10px;
    }

    .about-section {
        padding: 0 10px;
    }

    .services-section {
        padding: 70px 10px;
    }

    .packages-section {
        padding: 0 10px;
    }

    .gallery-section {
        padding: 70px 10px;
    }

    .gallery-overlay {
        opacity: 1;
    }

    .testimonials-section {
        padding: 0 10px;
    }

    .custom-nav-pills .nav-link {
        font-size: 12px;
    }

    #pills-tabContent {
        padding: 0 10px;
    }

    #pills-tabContent img {
        width: 100% !important;
        margin-bottom: 20px;
    }

    .cta-section {
        padding: 60px 10px;
    }

    #contact {
        padding: 60px 10px;
    }

    .nav-desktop {
        display: none
    }

    .header-book {
        display: none
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .logo-mark {
        width: 46px;
        height: 46px
    }

    .hero-title {
        font-size: 36px
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    /* .packages-grid {
        grid-template-columns: 1fr
    } */

    .popular-badge {
        padding: 3px;
        border-radius: 5px;
        font-size: 10px;
        font-weight: 700;
        gap: 8px;
    }

    /* .gallery-grid {
        grid-template-columns: 1fr;
    } */

    .gallery-title {
        font-size: 14px;
    }

    .gallery-cat {
        color: #e9b246;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .prev {
        left: -10px !important;
    }

    .next {
        right: -10px !important;
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .cta-cards {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .hero-cta .btn {
        font-size: 12px;
        padding: 10px 16px;
    }

    .cta-inner .row {
        padding: 0 20px;
    }

    .contact-info-block p {
        font-size: 16px;
    }

    .contact-info-block a {
        font-size: 16px !important;
    }


    .footer-row {
        display: block;
        padding: 10px 10px;
        justify-items: center !important;

        div {
            margin-bottom: 20px;
        }
    }

    .footer-section {
        padding: 0 !important;
    }

    .footer-container {
        padding: 0;
    }

    .footer-row .social {
        /* display: block !important; */
        padding: 0 24px;
        align-items: baseline;
    }

    .footer-row .rights {
        padding: 0 24px;
    }

    .footer-section {
        gap: 30px !important;
    }

}

.footer-row .social h4 {
    margin-top: 8px;
}

.footer-row .rights p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* <!--------Conmpare Service--------> */

#services .custom-heading {
    font-family: var(--serif);
    font-size: 42px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
}

.custom-nav-pills {
    gap: 15px 7px;
}

#pills-tabContent img {
    width: 75%;
}

.custom-nav-pills .nav-link {
    color: var(--accent);
    border: 1px solid var(--accent);
    margin: 0 5px;
    border-radius: 0;
    /* Square look for modern aesthetic */
    transition: all 0.3s;
    font-weight: 500;
}

.custom-nav-pills .nav-link:hover {
    background-color: var(--accent);
    color: #fff;
}

.custom-nav-pills .nav-link.active {
    background: linear-gradient(135deg, var(--accent), #f1d39a);
    color: #000;
    border-color: var(--color-rose-gold);
}

.custom-list .list-group-item {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding-left: 0;
}

.custom-list .list-group-item strong {
    color: var(--color-rose-gold);
}

#contact {
    background-color: var(--primary-black);
}

.contact-info-block {
    font-size: 1.1rem;
    /* border: 2px dashed var(--accent); */
    /* padding: 20px; */
    border-radius: 10px;
    /* max-width: 500px; */
    align-content: center;
    text-align: left;
}

.contact-info-block p {
    margin-bottom: 50px;
}

.contact-info-block a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    /* line-height: 3rem; */
}

.contact-info-block a:hover {
    color: var(--accent);
}

.contact-info-block i {
    color: var(--accent);
    margin-right: 10px;
}

.booking-form-custom {
    background-color: var(--secondary-dark);
    border: 1px solid var(--accent);
    border-radius: 10px;
}

.booking-form-custom .form-control,
.booking-form-custom .form-select {
    background-color: var(--primary-black);
    border-color: var(--secondary-dark);
    color: var(--text-light);
}

.booking-form-custom .form-control::placeholder {
    color: var(--text-muted);
}

/*.booking-form-custom .form-select option {
     background-color: var(--primary-black);
    color: var(--text-light); 
}*/
.booking-form-custom .form-select option {
    color: #303030;
    font-weight: 600;
}

.booking-form-custom .form-select option:hover {
    color: #ffffff;
    background-color: var(--accent) !important;
}

.form-title {
    color: var(--accent);
    font-family: 'Playfair Display', serif;
}

.form-text-small {
    color: var(--text-muted);
    display: block;
}



/* Initial hidden state for fade-up effect */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When the element comes into view, add the animate class */
.fade-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* For the left slide-in effect */
.slide-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.carousel-inner {
    overflow: unset;
}


/* Price List */

.pricing-wrapper-section {
    padding: 70px 20px;
    position: relative;
    z-index: 10;
}

.pricing-main-container {
    max-width: var(--maxw);
    margin: 0 auto;
}

/* Header */
.pricing-header-area {
    text-align: center;
    margin-bottom: 50px;
    animation: pricingFadeInDown 0.8s ease;
}

.pricing-label-top {
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pricing-gold-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #f1d39a);
    border-radius: 6px;
    margin: 10px auto;
}

.pricing-main-heading {
    font-family: var(--serif);
    font-size: 40px;
    margin: 8px 0 10px;
    color: #fff;
    font-weight: 700;
}

.pricing-highlight-text {
    color: var(--accent);
}

.pricing-description-text {
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 15px;
}

/* Category Tabs */
.pricing-filter-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* margin-bottom: 40px; */
    /* align-self: center; */
    animation: pricingFadeIn 1s ease;
    max-width: 250px;
}

.filter-category-btn {
    padding: 12px 20px;
    border: 1px solid rgba(197, 159, 85, 0.22);
    background: transparent;
    color: var(--muted);
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: var(--sans);
    text-align: left;
    width: 100%;
}

.filter-category-btn:hover {
    background: linear-gradient(90deg, rgba(197, 159, 85, 0.12), rgba(197, 159, 85, 0.06));
    color: var(--accent);
    border-color: rgba(197, 159, 85, 0.4);
}

.filter-category-btn.active-filter {
    background: linear-gradient(90deg, rgba(197, 159, 85, 0.12), rgba(197, 159, 85, 0.06));
    border: 1px solid rgba(197, 159, 85, 0.4);
    color: var(--accent);
}

/* Price Grid */
.services-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    animation: pricingFadeInUp 0.8s ease;
}

.pricing-service-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: #414141 1.95px 1.95px 2.6px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: pricingSlideIn 0.5s ease forwards;
}

.pricing-service-box:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-service-box:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-service-box:nth-child(3) {
    animation-delay: 0.3s;
}

.pricing-service-box:nth-child(4) {
    animation-delay: 0.4s;
}

.pricing-service-box:nth-child(5) {
    animation-delay: 0.5s;
}

.pricing-service-box:nth-child(6) {
    animation-delay: 0.6s;
}

.pricing-service-box:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 159, 85, 0.28);
    box-shadow: 0 10px 30px rgba(197, 159, 85, 0.08);
}

.service-category-heading {
    font-family: var(--serif);
    color: var(--accent);
    font-size: 22px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(197, 159, 85, 0.2);
    font-weight: 600;
}

.pricing-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.pricing-list-row:last-child {
    border-bottom: none;
}

.pricing-list-row:hover {
    padding-left: 8px;
    background: rgba(197, 159, 85, 0.04);
    margin: 0 -8px;
    padding-right: 8px;
    border-radius: 6px;
}

.service-name-label {
    font-size: 14px;
    color: #ddd;
    font-weight: 500;
}

.service-cost-amount {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
}

.pricing-hide-element {
    display: none;
}

/* Animations */
@keyframes pricingFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pricingFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pricingFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pricingSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive - Tablet */
@media (max-width: 1100px) {
    #pricing-layout-grid {
        grid-template-columns: 200px 1fr !important;
        gap: 20px !important;
    }

    .pricing-filter-sidebar {
        max-width: 200px;
    }

    .services-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    body {
        overflow-x: hidden;
    }

    .pricing-wrapper-section {
        padding: 60px 20px;
    }

    .pricing-main-heading {
        font-size: 32px;
    }

    .pricing-description-text {
        font-size: 14px;
    }

    #pricing-layout-grid {
        display: block !important;
    }

    .pricing-filter-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .filter-category-btn {
        padding: 8px 16px;
        font-size: 12px;
        width: auto;
        text-align: center;
    }

    .services-pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-service-box {
        padding: 18px;
    }

    .service-category-heading {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .pricing-list-row {
        padding: 12px 0;
    }

    .service-name-label {
        font-size: 13px;
    }

    .service-cost-amount {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .pricing-main-heading {
        font-size: 28px;
    }

    .service-category-heading {
        font-size: 18px;
    }

    .service-name-label {
        font-size: 12px;
    }

    .service-cost-amount {
        font-size: 14px;
    }
}


.scrolled {
    background-color: red !important;
    border: 5px solid red;
}