/* ========================================
   GLOBAL VARIABLES & FONTS
   ======================================== */
:root {
    --primary-gold: #D4AF37;
    --gold-hover: #b5952f;
    --dark-text: #1a1a1a;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
}

.serif-font {
    font-family: 'Playfair Display', serif;
}

/* ========================================
   UTILITIES
   ======================================== */
.text-gold { color: var(--primary-gold) !important; }
.bg-gold { background-color: var(--primary-gold) !important; }
.border-bottom-gold { border-bottom: 3px solid var(--primary-gold); }
.border-gold { border-color: var(--primary-gold) !important; }
.tracking-wide { letter-spacing: 1px; }
.max-w-700 { max-width: 700px; }


        /* For images that must fill a specific area (cards, fixed-height rows) */
        .fill-image,
        .slider-img,
        .room-img,
        .modal-img,
        .gallery-img,
        .about-img-main,
        .about-img-sub,
        #locationMainImage,
        .dining-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;   
            object-position: center; 
        }


/* ========================================
   GLOBAL GOLD BUTTON
   ======================================== */
.btn-gold {
    background-color: var(--primary-gold) !important;
    color: #ffffff !important;
    border: none;
    transition: 0.3s;
    font-weight: 500;
}

.btn-gold:hover,
.btn-gold:focus,
.btn-gold:active {
    background-color: var(--gold-hover) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

/* Keep dark text variant for slider buttons (.btn-slide overrides this) */
.btn-slide {
    color: #1a1a1a !important;
}
.btn-slide:hover {
    color: #ffffff !important;
}




/* ========================================
   NAVBAR 
   ======================================== */
.navbar {
    background-color: #faf7ef !important;
    transition: all 0.3s ease-in-out;
    padding-top: 8px;
    padding-bottom: 8px;
    min-height: 120px;
}


.navbar .navbar-brand {
    padding: 0;
    margin: 0;
}


.navbar .logo-wrapper {
    background-color: #faf7ef;
    border-radius: 10px;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.navbar .navbar-logo {
    height: 95px;
    width: 95px;
    object-fit: contain;
    display: block;
    transform: scale(1.55);
}
.navbar .nav-link {
    font-weight: 500;
    color: var(--dark-text);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--primary-gold) !important;
}
.navbar .nav-link.active {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    border-radius: 6px;
    padding: 8px 18px !important;
}

.navbar .nav-link.active:hover {
    background-color: #1a1a1a !important;
    color: var(--primary-gold) !important;
}

/* ====== responsive ====== */
@media (min-width: 992px) {
    .navbar .container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 100px;
    }
    .navbar .navbar-brand {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    .navbar .navbar-collapse {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .navbar .navbar-nav {
        display: flex;
        justify-content: center;
        margin: 0 !important;
    }
    .navbar .navbar-btn-wrapper {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 991px) {
    .navbar {
        padding-top: 6px;
        padding-bottom: 6px;
        min-height: 92px;
    }
    .navbar .navbar-logo {
        height: 75px;
        width: 75px;
        transform: scale(1.55);
    }
    .navbar .logo-wrapper {
        padding: 3px;
        border-radius: 8px;
    }
    .navbar .navbar-collapse {
        text-align: center;
        padding: 15px 0;
        background-color: #faf7ef !important;
    }
    .navbar .navbar-nav {
        text-align: center;
        margin: 0 0 15px 0 !important;
    }
    .navbar .nav-item {
        margin: 5px 0;
    }
    .navbar .nav-link {
        display: inline-block;
    }
    .navbar .nav-link.active {
        display: inline-block;
        padding: 6px 16px !important;
    }
    .navbar .navbar-btn-wrapper {
        text-align: center;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding-top: 5px;
        padding-bottom: 5px;
        min-height: 80px;
    }
    .navbar .navbar-logo {
        height: 65px;
        width: 65px;
        transform: scale(1.55);
    }
    .navbar .logo-wrapper {
        padding: 3px;
        border-radius: 6px;
    }
    .navbar .nav-link {
        font-size: 0.8rem;
    }
    .navbar .nav-link.active {
        padding: 5px 14px !important;
        font-size: 0.8rem;
    }
}

/* ===== Change Hamburger Icon Color to Maroon ===== */
.navbar-toggler {
    border-color: #800000 !important; 
}

.navbar-light .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(128,0,0,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}


/* ========================================
   HERO SLIDER
   ======================================== */
.slider-margin-top {
    margin-top: 112px;
}

@media (max-width: 991px) {
    .slider-margin-top {
        margin-top: 80px;
    }
}

@media (max-width: 576px) {
    .slider-margin-top {
        margin-top: 70px;
    }
}

.slider-img {
    height: 95vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    right: auto;
    bottom: auto;
    text-align: center;
    width: 85%;
    max-width: 800px;
    z-index: 10;
    padding: 20px;
}

.slide-subtitle {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    line-height: 1.4;
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.slide-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.8rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.4s both;
    display: block !important;
}

.btn-slide {
    background-color: var(--primary-gold);
    color: #1a1a1a;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.6s both;
    text-decoration: none;
    display: inline-block;
}

.btn-slide:hover {
    background-color: var(--gold-hover);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.carousel-control-prev:hover,
.carousel-control-next:hover { opacity: 1; }

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 6px;
}
.carousel-indicators button.active {
    background-color: var(--primary-gold);
}

.carousel-fade .carousel-item {
    transition: opacity 0.8s ease-in-out;
}

/* Slider Responsive */
@media (max-width: 991px) {
    .slider-img { height: 85vh; }
    .slide-title { font-size: 2.2rem; }
    .slide-description { font-size: 0.95rem; max-width: 80%; margin-bottom: 1.2rem; }
    .btn-slide { padding: 10px 24px; font-size: 0.85rem; }
    .slide-subtitle { font-size: 0.8rem; letter-spacing: 2px; }
}

@media (max-width: 768px) {
    .slider-img { height: 90vh; }
    .carousel-caption { width: 92%; padding: 15px; }
    .slide-subtitle { font-size: 0.6rem; letter-spacing: 1.5px; margin-bottom: 0.5rem; }
    .slide-title { font-size: 1.3rem; margin-bottom: 0.5rem; }
    .slide-description { font-size: 0.7rem; line-height: 1.3; max-width: 90%; margin-bottom: 0.8rem; display: block !important; }
    .btn-slide { padding: 7px 16px; font-size: 0.65rem; }
}

@media (max-width: 480px) {
    .slider-img { height: 90vh; }
    .carousel-caption { top: 55%; width: 95%; padding: 10px; }
    .slide-subtitle { font-size: 0.5rem; letter-spacing: 1px; margin-bottom: 0.3rem; }
    .slide-title { font-size: 1rem; margin-bottom: 0.3rem; }
    .slide-description { display: none; }
    .btn-slide { padding: 5px 12px; font-size: 0.55rem; }
}

/* ========================================
   PRIME LOCATION SECTION
   ======================================== */
.hero-section {
    position: relative;
    z-index: 10;
}

.badge.bg-gold.rounded-pill {
    border-radius: 50rem !important;
}


/* ========================================
   ABOUT US SECTION
   ======================================== */
.about-section {
    background-color: #ffffff;
    overflow-x: hidden;
}
.about-image-grid {
    padding-right: 20px;
    padding-bottom: 20px;
}
.about-img-main {
    width: 85%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
}
.about-img-sub {
    position: absolute;
    bottom: -5%;
    right: 0;
    width: 55%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
    z-index: 2;
}
.about-badge {
    position: absolute;
    top: 5%;
    left: -5%;
    width: 140px;
    height: 140px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    z-index: 3;
}
.hover-gold-bg:hover {
    background-color: var(--primary-gold) !important;
    border-color: var(--primary-gold) !important;
    color: white !important;
}
@media (max-width: 991px) {
    .about-image-grid { margin-bottom: 3rem; }
    .about-badge { width: 110px; height: 110px; left: -10px; top: -10px; }
    .about-badge .fs-2 { font-size: 1.5rem !important; }
    .about-badge .small { font-size: 0.7rem; }
}

  /* --- Rooms Grid --- */
        .rooms-section {
            background-color: #ffffff;
        }
        .room-card {
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        .room-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
        }
        .room-img-wrapper {
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
            overflow: hidden;
        }
        .room-img {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .room-card:hover .room-img {
            transform: scale(1.08);
        }
        .btn-outline-dark:hover {
            background-color: var(--dark-text);
            color: white;
        }

        /* --- Modals --- */
.modal-xl {
    max-width: 1200px;
}

.shadow-xxl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
}

.modal-content {
    border: none;
    overflow: hidden;
}
#carouselExec,
#carouselPremium,
#carouselFamily {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: transparent;
}

.modal .carousel-inner {
    height: 100%;
    width: 100%;
    background: transparent;
}

.modal .carousel-item {
    height: 100%;
    width: 100%;
    background: transparent;
}

.modal .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: white;
}

/* Close button */
.btn-close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-close-modal:hover {
    background: var(--primary-gold);
    transform: rotate(90deg);
}

.btn-close-modal i {
    font-size: 1.2rem;
    color: #333;
}

.btn-close-modal:hover i {
    color: white;
}

/* Carousel controls */
.modal .carousel-control-prev,
.modal .carousel-control-next {
    z-index: 5;
}

/* Responsive */
@media (max-width: 992px) {
    #carouselExec,
    #carouselPremium,
    #carouselFamily {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .modal .row {
        flex-direction: column;
    }
    
    .modal .col-lg-7 {
        width: 100% !important;
        order: -1;
    }
    
    .modal .col-lg-5 {
        width: 100% !important;
    }
    
    #carouselExec,
    #carouselPremium,
    #carouselFamily {
        aspect-ratio: 16 / 9;
    }
    
    .btn-close-modal {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 576px) {
    #carouselExec,
    #carouselPremium,
    #carouselFamily {
        aspect-ratio: 16 / 9;
    }
}

   /* ========================================
   FILTERABLE GALLERY SECTION
   ======================================== */
.gallery-img {
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-img-wrapper {
    cursor: pointer;
    overflow: hidden;
    border-radius: 1rem;
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-img-wrapper:hover .gallery-overlay {
    opacity: 1;
}
.gallery-img-wrapper:hover .gallery-img {
    transform: scale(1.1);
}
.filter-btn {
    outline: none;
    transition: all 0.3s ease;
}
.filter-btn:not(.active):hover {
    border-color: var(--primary-gold) !important;
    color: var(--primary-gold) !important;
}
.gallery-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item.hide-item {
    display: none;
}

/* ========================================
   LOCATION & DISTANCE SECTION
   ======================================== */
.distance-item {
    cursor: pointer;
    transition: all 0.3s ease;
}
.distance-item:hover {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transform: translateX(5px);
}
.distance-item:hover .icon-box {
    background-color: var(--primary-gold) !important;
    color: white !important;
    border-color: var(--primary-gold) !important;
}
.icon-box {
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}
.floating-info {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 250px;
    z-index: 5;
    margin: -1rem;
}
#locationMainImage {
    aspect-ratio: 4 / 3;
    height: auto;
    width: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}
@media (min-width: 768px) {
    .floating-info {
        margin: 1.5rem;
    }
}
@media (max-width: 768px) {
    .floating-info {
        position: relative !important;
        margin-top: -30px !important;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        right: auto;
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    background-color: #fafafa;
    position: relative;
    padding-bottom: 80px;
}
.testimonial-card {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}
#testimonialCarousel {
    position: relative;
    padding-bottom: 60px;
}
#testimonialCarousel .carousel-indicators {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 5;
}
#testimonialCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0;
    border: none;
    opacity: 1;
}
#testimonialCarousel .carousel-indicators button.active {
    background-color: var(--primary-gold);
}
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: transparent;
    opacity: 1;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
#testimonialCarousel .carousel-control-prev { left: -60px; }
#testimonialCarousel .carousel-control-next { right: -60px; }
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon { display: none; }
#testimonialCarousel .carousel-control-prev::before {
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2rem;
    color: var(--primary-gold);
    background: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
#testimonialCarousel .carousel-control-next::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2rem;
    color: var(--primary-gold);
    background: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
#testimonialCarousel .carousel-control-prev:hover::before,
#testimonialCarousel .carousel-control-next:hover::before {
    background: var(--primary-gold);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Testimonials Responsive */
@media (max-width: 1200px) and (min-width: 993px) {
    #testimonialCarousel .carousel-control-prev { left: -30px; }
    #testimonialCarousel .carousel-control-next { right: -30px; }
}
@media (max-width: 992px) {
    #testimonialCarousel .carousel-control-prev { left: -15px; }
    #testimonialCarousel .carousel-control-next { right: -15px; }
}
@media (max-width: 768px) and (min-width: 577px) {
    .testimonials-section { padding-bottom: 70px; }
    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next { width: 36px; height: 36px; }
    #testimonialCarousel .carousel-control-prev::before,
    #testimonialCarousel .carousel-control-next::before { width: 36px; height: 36px; font-size: 1.5rem; }
    #testimonialCarousel .carousel-control-prev { left: -10px; }
    #testimonialCarousel .carousel-control-next { right: -10px; }
}
@media (max-width: 576px) {
    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next { display: none; }
}
.testimonials-section .container {
    position: relative;
    overflow: visible;
}
.testimonials-section {
    overflow-x: clip;
}

/* ========================================
   CONTACT INFO CARDS
   ======================================== */
.contact-info-card {
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}
.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.contact-info-card:hover .contact-icon {
    background: var(--primary-gold);
}
.contact-info-card:hover .contact-icon i {
    color: white !important;
}
.contact-info-card .btn-link {
    font-size: 0.85rem;
    transition: all 0.3s;
}
.contact-info-card .btn-link:hover {
    letter-spacing: 0.5px;
}
.contact-section {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/main.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.contact-section > .container {
    position: relative;
    z-index: 1;
}

.contact-section .text-center,
.contact-section .contact-info-card,
.contact-section .card {
    position: relative;
    z-index: 1;
}

.map-wrapper {
    position: relative;
    z-index: 1;
}

#contactForm {
    position: relative;
    z-index: 1;
}




/* ========================================
   CONTACT FORM VALIDATION STYLES
   ======================================== */
.custom-input.is-invalid,
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    display: none;     
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}
.is-invalid ~ .invalid-feedback,
.custom-input.is-invalid ~ .invalid-feedback {
    display: block;
}
/* ========================================
   PREMIUM POLICIES SECTION
   ======================================== */
.premium-policies {
    background: linear-gradient(135deg, #ffffff 0%, #fef9e6 100%);
    position: relative;
}
.premium-policies .border-bottom-gold {
    background-color: var(--primary-gold);
    height: 3px;
    width: 80px;
    margin: 1rem auto;
}
.premium-card {
    background: white;
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}
.premium-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 35px -12px rgba(212, 175, 55, 0.2);
}
.icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.premium-card:hover .icon-circle {
    background: var(--primary-gold);
}
.premium-card:hover .icon-circle i {
    color: white !important;
}
.premium-policy-card {
    background: white;
    border-radius: 28px;
    border: 1px solid #eee;
    box-shadow: 0 15px 35px -15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.premium-policy-card:hover {
    box-shadow: 0 20px 40px -15px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
}
.policy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.policy-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.4;
}
.policy-list li i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .premium-card, .premium-policy-card { padding: 1.5rem !important; }
    .policy-list li { font-size: 0.85rem; }
}

/* ========================================
    FOOTER
   ======================================== */
.clean-footer {
    background: #0a0a0a;
    padding: 60px 0 30px;
    color: #fff;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.clean-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.clean-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.clean-footer-col h4 {
    color: #D4AF37;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.clean-footer-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.clean-footer-social {
    display: flex;
    gap: 12px;
}

.clean-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: #D4AF37;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}

.clean-social-link:hover {
    background: #D4AF37;
    color: #0a0a0a;
    transform: translateY(-3px);
}

.clean-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clean-footer-links li {
    margin-bottom: 10px;
}

.clean-footer-links li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.clean-footer-links li a:hover {
    color: #D4AF37;
    padding-left: 3px;
}

.clean-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clean-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.clean-footer-contact li i {
    color: #D4AF37;
    margin-top: 3px;
    min-width: 16px;
}

.clean-footer-contact li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.clean-footer-contact li a:hover {
    color: #D4AF37;
}

.clean-footer-contact li span {
    line-height: 1.5;
}

.clean-footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.clean-footer-copyright p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin: 5px 0;
}

.clean-footer-copyright span {
    color: #D4AF37;
    font-weight: 600;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .clean-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .clean-footer-social {
        justify-content: center;
    }
    .clean-footer-contact li {
        justify-content: center;
    }
    .clean-footer-links li a:hover {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .clean-footer {
        padding: 40px 0 20px;
    }
    .clean-footer-col h4 {
        font-size: 16px;
    }
    .clean-footer-col p {
        font-size: 12px;
    }
    .clean-footer-contact li {
        font-size: 12px;
    }
}


/*Contact Banner Start */
.slider-img {
    height: 95vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Responsive  */
@media (max-width: 991px) {
    .slider-img {
        height: 85vh !important;
    }
}
@media (max-width: 768px) {
    .slider-img {
        height: auto !important;
    }
}
@media (max-width: 480px) {
    .slider-img {
        height: 90vh !important;
    }
}

.banner-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 85%;
    max-width: 800px;
    z-index: 10;
}

/* --- Thank You page --- */
        .thankyou-section {
            min-height: calc(100vh - 300px);
            display: flex;
            align-items: center;
            padding: 80px 0;
            margin-top: 122px; /* accounts for fixed navbar height */
        }

        .thankyou-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            padding: 50px 40px;
            text-align: center;
        }

        .thankyou-icon {
            width: 100px;
            height: 100px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .thankyou-icon i {
            font-size: 3.5rem;
            color: var(--primary-gold);
        }

        .thankyou-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .thankyou-message {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 500px;
            margin: 0 auto 30px;
        }

        .btn-home {
            background-color: var(--primary-gold);
            color: #1a1a1a;
            padding: 12px 35px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            border-radius: 50px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-home:hover {
            background-color: var(--gold-hover);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        /* Responsive margin-top for smaller navbar */
        @media (max-width: 991px) {
            .thankyou-section {
                margin-top: 94px;
            }
        }

        @media (max-width: 576px) {
            .thankyou-section {
                margin-top: 82px;
            }
            .thankyou-title {
                font-size: 2rem;
            }
            .thankyou-card {
                padding: 35px 20px;
            }
        }