@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #2c3e50;
    /* Dark Blue */
    /* --accent-color: #c9a227; */
    --accent-color: #9D4EDD;
    /* Gold */
    --light-bg: #f8f9fa;
    --text-color: #555;
}

html {
    min-width: 100vw;
    overflow-x: hidden;
}

/* --- 1. LUXURY TYPOGRAPHY --- */
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: normal;
    /* Clean modern text */
    color: #222;
}

p {
    line-height: 1.6;
    margin-bottom: 0px;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
.navbar-brand,
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    /* Elegant Royal font */
}

/* --- 2. FLOATING BOOKING BAR --- */
.booking-wrapper {
    position: relative;
    margin-top: -80px;
    /* Pulls it UP over the hero image */
    z-index: 50;
    padding: 0 15px;
}

.booking-form {
    background: #fff;
    padding: 30px 40px;
    border-radius: 4px;
    /* Slight round, mostly sharp */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.booking-form label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.booking-form .form-control,
.booking-form .form-select {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding-left: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.booking-form .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.btn-check-availability {
    background-color: var(--accent-color);
    color: #fff;
    width: 100%;
    height: 100%;
    min-height: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: 0.3s;
}

.btn-check-availability:hover {
    background-color: #2c3e50;
}

/* --- 3. CREATIVE IMAGE LAYOUT (About Section) --- */
.img-collage {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
}

.img-main {
    width: 90%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.img-overlap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    border: 8px solid #fff;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: spinSlow 10s infinite linear;
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --- HERO SLIDER SECTION --- */
.hero-section {
    position: relative;
    /* height: 90vh; */
    /* 90% of screen height */
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    color: #fff;
}

/* The Carousel background */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image fills screen without distortion */
    object-position: center;
}

/* Dark Overlay (So white text is readable) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* Black with 45% opacity */
    /* z-index: 1; */
}

/* The Text Content - Centered on top */
.hero-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    /* Sits on top of overlay */
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    opacity: 0;
    /* Animation start state */
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 35px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
}

.hero-btns {
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.1s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* --- SCROLL DOWN INDICATOR FIX --- */
.scroll-down {
    position: absolute !important;
    /* Forces it to float over the image */
    bottom: 30px;
    /* Positions it 30px from the bottom */
    left: 50%;
    /* Moves it to the middle */
    transform: translateX(-50%);
    /* Centers it perfectly */
    z-index: 10;
    color: #fff !important;
    /* Forces text to be WHITE, not blue */
    text-align: center;
    text-decoration: none;
    /* Removes underline */
    animation: bounce 2s infinite;
}

.scroll-down:hover {
    color: #f1c40f !important;
    /* Turns Gold on hover */
}

/* Bounce Animation */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Sections */
.section-padding {
    padding: 50px 0;
}

/* Custom Cards */
.custom-card {
    border: none;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.custom-card:hover {
    transform: translateY(-5px);
}

/* Feature Box */
.feature-box {
    text-align: center;
    padding: 30px 15px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid transparent;
    transition: 0.3s;
    height: 100%;
}

.feature-box:hover {
    border-bottom: 3px solid var(--accent-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Certifications */
.cert-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
    max-height: 80px;
}

.cert-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--accent-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    border: none;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background-color: #fff;
    color: #222;
}


.social-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: 0.3s;
}

.social-circle:hover {
    background: var(--accent-color);
}

/* ==================== MODERN HEADER STYLES ==================== */

/* Wrapper to hold Top Bar and Nav */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

/* --- 1. Top Bar (Contact Info) --- */
.top-bar {
    background-color: #fff;
    /* Dark semi-transparent */
    padding: 8px 0;
    font-size: 0.85rem;
    color: #9D4EDD;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.top-bar a {
    color: #9D4EDD;
    text-decoration: none;
    margin-right: 15px;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 500;
}

.top-bar a:hover {
    color: var(--accent-color);
}

.top-bar i {
    margin-right: 6px;
    color: var(--accent-color);
}

/* --- 2. Navigation Bar --- */
.navbar-custom {
    padding: 5px 0;
    background:  var(--accent-color);
    /* Initially transparent */
    transition: all 0.4s ease;
    max-width: 100vw;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff !important;
    /* White Logo initially */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    /* White links initially */
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
}

/* Hover Underline Effect */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #fff !important;
}

/* Book Now Button (Header) */
.btn-nav-book {
    background-color:#6416a3;
    color: #fff;
    border-radius: 0;
    /* Square edges for modern look */
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid var(--accent-color);
    transition: 0.3s;
    border-radius: 30px;
}

.btn-nav-book:hover {
    background-color: #fff;
    color: #222;
    /* Becomes border-only on hover */
}

/* --- 3. SCROLLED STATE (White Background) --- */
/* This class is added via JS when scrolling */
.header-scrolled .top-bar {
    height: 0;
    /* Hides top bar on scroll to save space */
    padding: 0;
    overflow: hidden;
    opacity: 0;
}

.header-scrolled .navbar-custom {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-scrolled .navbar-brand {
    color: var(--primary-color) !important;
}

.header-scrolled .nav-link {
    color: var(--primary-color) !important;
}

.header-scrolled .btn-nav-book:hover {
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}

/* Mobile Menu Toggler */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.header-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Mobile Menu Dropdown Background */
@media (max-width: 991px) {

    /* .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    } */
    .navbar-collapse {
        background: #330c53;
        padding: 20px;
        border-radius: 8px;
        margin-top: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        width: 100vw;
        min-height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
    }

    .nav-link {
        color: #fff !important;
    }

    /* Always dark on mobile dropdown */
}

/* ==================== GUEST STORIES / EXPLORERS SECTION ==================== */

.guests-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    /* Subtle Mountain Background Pattern */
    /* background-image: url("https://www.transparenttextures.com/patterns/skulls.png"); */
    /* Texture placeholder */
    background-color: #fff;
}

/* Mountain Line Drawing Background (CSS Shape) */
.guests-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://upload.wikimedia.org/wikipedia/commons/5/53/Mountain_Icon_%28The_Noun_Project%29.svg') no-repeat center top;
    background-size: 150%;
    opacity: 0.05;
    /* Very faint like the screenshot */
    pointer-events: none;
    z-index: 0;
}

/* Section Title Styling */
.section-title-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.title-separator {
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    /* Orange/Gold */
    margin-top: 15px;
}

/* --- GUEST CARD DESIGN --- */
.guest-card {
    position: relative;
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    margin-bottom: 30px;
}

/* Image Wrapper */
.guest-img-box {
    position: relative;
    height: 350px;
    /* Fixed height for consistency */
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.guest-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* The Hidden Testimonial Overlay */
.guest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    /* Dark Blue Transparent */
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    transform: translateY(20px);
    /* Starts slightly lower */
}

.guest-overlay i {
    color: #fff !important;
}

/* The Grey Footer (Location Name) */
.guest-footer {
    background-color: #e9ecef;
    /* Light Grey like screenshot */
    padding: 15px;
    text-align: center;
    border-radius: 0 0 4px 4px;
    border-top: 1px solid #ddd;
    z-index: 5;
    position: relative;
}

.guest-footer h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    margin: 0;
    color: #fff;
    font-size: 1.25rem;
}

/* --- HOVER EFFECTS --- */
.guest-card:hover .guest-img-box img {
    transform: scale(1.1);
    /* Zoom image slightly */
}

.guest-card:hover .guest-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /* Slide up to normal position */
}

/* Navigation Arrows (Custom) */
.custom-nav-btn {
    background-color: #000;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: 0.3s;
}

.custom-nav-btn:hover {
    background-color: var(--accent-color);
}

/* ==================== PREMIUM FOOTER STYLES ==================== */

.footer-premium {
    /* background-color: #9d4edd; */
    background-image: linear-gradient(to right, rgba(157, 78, 221, 0.815), rgba(157, 78, 221, 0.815)), url('https: //upload.wikimedia.org/wikipedia/commons/e/ec/World_map_blank_without_borders.svg');
    color: #fff;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

/* Background Pattern (Subtle Map or Texture) */
.footer-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/e/ec/World_map_blank_without_borders.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    /* Very faint */
    pointer-events: none;
}

/* --- NEWSLETTER SECTION --- */
.footer-newsletter {
    background-color: #1a1a1a;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.newsletter-input-group {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    padding: 15px 0;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    outline: none;
    transition: 0.3s;
}

.newsletter-input:focus {
    border-color: var(--accent-color);
}

.newsletter-btn {
    position: absolute;
    right: 0;
    top: 10px;
    background: none;
    border: none;
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
}

/* --- MAIN FOOTER CONTENT --- */
.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-heading {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.6rem;
    margin-right: 10px;
    opacity: 0.5;
}

/* Contact Icons */
.contact-list li {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-icon {
    color: #fff;
    font-size: 1.1rem;
    margin-right: 15px;
    margin-top: 3px;
}

/* Tiny Gallery Grid */
.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.footer-gallery img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 2px;
    opacity: 0.7;
    transition: 0.3s;
    cursor: pointer;
}

.footer-gallery img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* --- BOTTOM BAR --- */
.footer-bottom {
    background-color: var(--accent-color);
    padding: 5px;
    font-size: 14px;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    color: #fff;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    /* Hidden by default, JS enables it */
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.back-to-top:hover {
    background-color: #fff;
    color: var(--accent-color);
    transform: translateY(-5px);
}

/* ==================== ROOMS SECTION (ICON UPDATE) ==================== */

.rooms-section {
    background-color: #f8f9fa;
    /* Light grey background for the whole section */
}

.room-card-modern {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.room-card-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badges for "Popular" and "Luxury" */
.room-badge {
    position: absolute;
    top: 20px;
    right: -1px;
    /* Slight offset to look tucked in */
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 15px 6px 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px 0 0 20px;
}

.badge-popular {
    background-color: var(--accent-color);
    color: #fff;
}

.badge-luxury {
    background-color: #2c3e50;
    color: #fff;
}

.room-card-content {
    padding: 25px 30px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* THE NEW ICON FEATURE LIST */
.room-features {
    margin: 10px 0;
    display: flex;
    column-gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: #444;
}

.feature-item i {
    color: #fff;
    /* Green checkmark color */
    background-color: var(--accent-color);
    /* Light green circle */
    font-size: 0.8rem;
    width: 28px;
    height: 28px;
    line-height: 28px;
    /* Vertically centers the icon */
    text-align: center;
    border-radius: 50%;
    margin-right: 15px;
}

.feature-item span {
    font-weight: 500;
}

.room-card-footer {
    padding: 0 30px 30px;
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    max-width: 70%;
    /* Pushes button to the bottom */
}

.btn-book-now {
    background-color: var(--accent-color);
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-book-now:hover {
    background-color: #fff;
    color: #2c3e50;
    border-color: #2c3e50;
}

/* ==================== PREMIUM CONTACT US SECTION ==================== */

.contact-premium-section {
    position: relative;
    padding: 50px 0;
    background-color: #f8f9fa;
    /* You can add a subtle background image here */
    /* background-image: url('path/to/your/texture.png'); */
    overflow: hidden;
}

.contact-wrapper {
    background-color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

/* --- Left Side: Info & Map --- */
.contact-info-block {
    background-color: #4a1c70;
    /* Dark Blue */
    color: #fff;
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-block h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.contact-info-block p {
    color: #ccc;
    margin-bottom: 30px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    align-items: center;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-info-list i {
    font-size: 1.2rem;
    color: #fff;
    margin-right: 20px;
    margin-top: 5px;
    min-width: 45px;
    border: 1px solid #fff;
    height: 45px;
    display: grid;
    place-content: center;
    border-radius: 50%;
}

.contact-info-list span {
    color: #eee;
}

.contact-info-list a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-list a:hover {
    color: var(--accent-color);
}

.contact-map {
    margin-top: auto;
    /* Pushes map to the bottom */
    filter: grayscale(1) invert(1);
    opacity: 0.7;
    border-radius: 5px;
    height: 200px;
}

/* --- Right Side: Form --- */
.contact-form-block {
    padding: 50px;
}

.contact-form-block .form-field {
    width: 100%;
    border: none;
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #333;
    border: 2px solid #9d4edd;
    transition: border-color 0.3s ease;
}

.contact-form-block .form-field:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #fff;
}

.contact-form-block textarea.form-field {
    resize: vertical;
    min-height: 120px;
}

.contact-form-block .form-btn {
    background-color: var(--accent-color);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-block .form-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ==================== CERTIFICATIONS SECTION (REDESIGN) ==================== */

.certifications-section {
    background-color: #fff;
    padding: 50px 0;
}

/* "Trust & Safety" Tag */
.section-tag {
    display: inline-block;
    background-color: #8e44ad;
    /* Purple color like screenshot */
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* The card that holds the certificate image */
.certificate-card {
    padding: 1rem;
    border: 2px solid #8e44ad;
    /* Purple border */
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease-in-out;
}

.certificate-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(142, 68, 173, 0.2);
    /* Purple shadow on hover */
}

.certificate-card img {
    border-radius: 4px;
    /* Slight rounding on image corners */
}


.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    background-color: #25d366;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    width: 50px;
    height: 50px;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
}

.whatsapp-button:hover {
    color: #fff;
}

/* ==================== FEATURES SECTION (REDESIGN) ==================== */

.our-features {
    position: relative;
    padding: 100px 0;
    /* The background image that creates the atmosphere */
    background: url('assets/img/about/1.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    /* Parallax effect */
}

/* Dark overlay to make white text and cards readable */
.our-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Ensure the container sits on top of the overlay */
.our-features .container {
    position: relative;
    z-index: 2;
}

/* Title Styling */
.our-features .sub-heading {
    background-color: #8e44ad;
    /* Purple tag */
    color: #fff;
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-block;
}

/* The new Feature Card */
.feature-box {
    background-color: rgba(255, 255, 255, 0.95);
    /* Slightly transparent white */
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    border-top: 4px solid transparent;
    /* For hover effect */
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-top-color: var(--accent-color);
    /* Gold accent on hover */
}

/* Icon Styling */
.feature-box .feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    /* Gold color */
    margin-bottom: 20px;
    display: block;
    /* Ensures margin works correctly */
}

/* Text inside the card */
.feature-box h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-box p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}




/* ==================== GENERIC PAGE HEADER (BANNER) ==================== */

.page-header {
    position: relative;
    height: 50vh;
    /* Half the screen height */
    min-height: 350px;
    background: url('assets/img/slider/2.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: #fff;
    top: 60px;
}

.page-header-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* ==================== TEAM SECTION (ABOUT PAGE) ==================== */

.team-card {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 5px solid var(--accent-color);
}

.team-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 5px;
}

/* .team-card p {
    font-size: 0.9rem;
} */

/* ==================== FAQ SECTION (CONTACT PAGE) ==================== */

.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.faq-accordion .accordion-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    background-color: #fff;
    padding: 20px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #9d4edd;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    background: #f8f9fa;
    padding: 20px;
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform);
    filter: brightness(0) invert(1);
}