@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Funnel+Sans:ital,wght@0,300..800;1,300..800&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Luxurious+Roman&family=Marcellus&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Saira:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --primary-color: #850104;
    --secondary-color: #C38530;
    --text-gray: #6b6b6b;
    --title-font: "Marcellus", serif;
    --content-font: "Poppins", sans-serif;
    --transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    margin: 0;
    padding: 0;
}


h1,
h2,
h3,
h4 {
    font-family: "Marcellus", serif;
}

p {
    font-family: var(--content-font);
    color: var(--text-gray);
    line-height: 30px;
}

a {
    font-family: var(--content-font);
    text-decoration: none;
}

section {
    overflow-x: hidden;
}

input,
textarea {
    font-family: var(--content-font);
}

.section-gap {
    padding: 100px 0;
}

@media screen and (max-width: 580px) {
    .section-gap {
        padding: 70px 0;
    }

    .minus-margin {
        margin-top: -18px;
    }
}

.theme-color {
    color: var(--primary-color);
}

.content-font {
    font-family: var(--content-font);
}


header {
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

/* State when scrolling down */
header.header-scrolled {
    background-color: white !important;
    /*padding: 1rem 1.5rem !important;*/
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 999999 !important;
}

.header-phone,
.menu-text {
    font-family: var(--content-font);
    color: #000;
}

.menu-text {
    font-weight: 700;
}

header.header-scrolled .header-phone,
header.header-scrolled .menu-text {
    color: #000 !important;
    /* Ensure text is visible on white bg */
}

/* Initial "Hidden" state for the slide-up effect */
header.header-up {
    transform: translateY(-100%);
}

button {
    font-family: var(--content-font) !important;
}

.nav .nav-link {
    font-family: var(--title-font);
    font-size: 40px;
}

@media screen and (max-width: 1370px) {
    .nav .nav-link {
        font-size: 30px;
    }
}

/* Mobile Nav Styles */
.mobile-nav {
    height: 70px;
    z-index: 1060;
}

.text-teal {
    color: var(--primary-color);
}

/* The Floating Logo Setup */
.nav-logo-wrapper {
    position: absolute;
    top: -51px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

/* @media screen and (max-width: 450px) {
    .nav-logo-wrapper .nav-logo-img {
        width: 85px;
    }
} */

.nav-logo-img {
    width: 105px;
    height: auto;
}

.nav-logo-text {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-top: 32px;
    color: #333;
}

/* 3x3 Dots Menu Icon */
.menu-dots-grid {
    display: grid;
    grid-template-columns: repeat(3, 6px);
    gap: 3px;
    width: 24px;
}

.menu-dots-grid span {
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    /* Lighter teal */
    border-radius: 50%;
}

/* Make some dots darker like in your image */
.menu-dots-grid span:nth-child(3),
.menu-dots-grid span:nth-child(6),
.menu-dots-grid span:nth-child(9),
.menu-dots-grid span:nth-child(8) {
    background-color: var(--primary-color);
}

/* Ensure content doesn't get hidden behind the nav */


/* Custom Hero Masking */
.hero-mask-container {
    width: 100%;
    max-width: 800px;
    height: 60vh;
    mask-image: url('mask-shape.svg');
    /* Path to your "A" shape SVG */
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url('mask-shape.svg');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.grayscale {
    filter: grayscale(100%);
}

/* Custom Menu Icon Grid */
.menu-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 8px);
    gap: 4px;
    cursor: pointer;
}

.menu-icon-grid span {
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    /* Slight rounding for a modern look */
    will-change: transform, background-color;
}

.menu-icon-grid span:nth-child(1),
.menu-icon-grid span:nth-child(4) {
    background-color: var(--primary-color);
}

/* Vertical Enquiry Tag */
.enquiry-tag {
    right: 0;
    top: 50%;
    transform: rotate(-90deg) translateY(50%);
    transform-origin: right bottom;
    letter-spacing: 2px;
    font-size: 12px;
}

.tracking-wider {
    letter-spacing: 2px;
}

/* Animation helpers */
#offCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    clip-path: inset(0% 0% 100% 0%);
    display: none;
    pointer-events: none;
    z-index: 9999999 !important;
}

/* #offCanvas {
    clip-path: inset(0% 0% 100% 0%); 
    display: none;
    pointer-events: none;
} */

/* Optional: Add a cursor pointer to the mobile trigger */
#mobileMenuTrigger {
    cursor: pointer;
    transition: transform 0.2s ease;
}

#mobileMenuTrigger:active {
    transform: scale(0.9);
    /* Slight "tap" feel */
}

/* Layout Styling */
.main-img-wrapper {
    width: 65%;
    height: 320px;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.sub-img-wrapper {
    position: absolute;
    bottom: -138px;
    right: -15px;
    width: 65%;
    height: 320px;
    z-index: 3;
    border-radius: 20px;
    border-bottom-right-radius: 100px;
    border: 10px solid #fff;
    overflow: hidden;
    background: #eee;
}

.main-img-wrapper img,
.sub-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Arrow Button Styling */
.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Blue Circle Decoration */
.blue-decoration {
    position: absolute;
    bottom: -32%;
    left: 53%;
    transform: translateX(-50%);
    width: 445px;
    height: 380px;
    background-color: var(--primary-color);
    border-radius: 5%;
    z-index: -1;
    opacity: 0.8;
}

.about-slide-btn {
    position: absolute;
    bottom: -200px;
    right: 165px;
    z-index: 99999;
}




.fancy-btn {
    position: relative;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    /* background: linear-gradient(181deg, var(--secondary-color), var(--primary-color), var(--primary-color), var(--primary-color), var(--primary-color), var(--secondary-color)); */
    background: var(--primary-color);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    font-family: var(--title-font);
    text-transform: uppercase;
}

/* Text layer */
.fancy-btn span {
    position: relative;
    z-index: 2;
}

/* Shine effect */
.fancy-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    transition: all 0.6s ease;
}

/* Hover Effects */
.fancy-btn:hover {
    transform: translateY(-4px) scale(1.03);
    /* box-shadow: 0 15px 35px rgba(0, 86, 179, 0.4); */
}

.fancy-btn:hover::before {
    left: 100%;
}

/* Click effect */
.fancy-btn:active {
    transform: scale(0.96);
}


.fancy-btn-white {
    position: relative;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    /* background: linear-gradient(181deg, var(--secondary-color), var(--primary-color), var(--primary-color), var(--primary-color), var(--primary-color), var(--secondary-color)); */
    background: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    font-family: var(--title-font);
    /* box-shadow: 0 10px 25px rgba(0, 86, 179, 0.3); */
}

/* Text layer */
.fancy-btn-white span {
    position: relative;
    z-index: 2;
}

/* Shine effect */
.fancy-btn-white::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: var(--primary-color); */
    transition: all 0.6s ease;
}

/* Hover Effects */
.fancy-btn-white:hover {
    transform: translateY(-4px) scale(1.03);
}

.fancy-btn-white:hover::before {
    left: 100%;
}

/* Click effect */
.fancy-btn-white:active {
    transform: scale(0.96);
}

/* 1. Set the initial "Hidden" state */
.amenity-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    /* Slightly wider for a better touch target */
    height: 50px;
    background: #fff !important;
    /* Ensure bg stays white */
    color: var(--primary-color) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* border-radius: 4px; */

    /* THE MAGIC: Initial Hidden State */
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 2. Position them slightly further away initially */
.amenity-slider .owl-nav .owl-prev {
    left: -60px;
    /* Hidden further left */
}

.amenity-slider .owl-nav .owl-next {
    right: -60px;
    /* Hidden further right */
}

/* 3. THE REVEAL: When the Slider is hovered */
.amenity-slider:hover .owl-nav button {
    opacity: 1;
}

.amenity-slider:hover .owl-nav .owl-prev {
    left: -20px;
    border-radius: 5px;
    /* Glides inward to reveal */
}

.amenity-slider:hover .owl-nav .owl-next {
    right: -20px;
    border-radius: 5px;
    /* Glides inward to reveal */
}

/* 4. Individual Button Hover (Color Change) */
.amenity-slider .owl-nav button:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(59, 73, 114, 0.3);
}

/* 5. Mobile Fix: Always show buttons on touch devices */
@media (max-width: 991px) {
    .amenity-slider .owl-nav button {
        opacity: 1;
    }

    .amenity-slider .owl-nav .owl-prev {
        left: 5px;
    }

    .amenity-slider .owl-nav .owl-next {
        right: 5px;
    }
}


/* Hide arrows on mobile to avoid overflow */
@media (max-width: 1200px) {
    .amenity-slider .owl-nav {
        display: none;
    }
}

/* Container styling */
#amenityTabs {
    /* padding: 10px 10px 15px; */
    border-radius: 50px;
    display: flex;
    border: 1px solid #e9ecef;
    justify-content: center;
    flex-direction: column;
    /* overflow-x: auto; */
    white-space: nowrap;
    gap: 16px !important;

    /* Smooth scrolling */
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

@media screen and (max-width: 990px) {
    #amenityTabs {
        /* padding: 10px 10px 15px; */
        border-radius: 50px;
        display: flex;
        border: 1px solid #e9ecef;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        /* overflow-x: auto; */
        white-space: nowrap;
        gap: 8px;

        /* Smooth scrolling */
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
}

/* --- THE PREMIUM SCROLLBAR --- */

/* 1. Define the Scrollbar Track (The background) */
#amenityTabs::-webkit-scrollbar {
    height: 4px;
    /* Very slim for a premium feel */
    display: block;
    /* Show it now */
}

/* 2. The Draggable Handle */
#amenityTabs::-webkit-scrollbar-thumb {
    background: #fff;
    /* Subtle blue-gray to match your theme */
    border-radius: 10px;
    transition: background 0.3s ease;
}

/* 3. Handle on Hover/Interaction */
#amenityTabs::-webkit-scrollbar-thumb:hover {
    background: #f97316;
    /* Change to HiLiving Orange when active */
}

/* 4. The Track (The "Rail" it slides on) */
#amenityTabs::-webkit-scrollbar-track {
    background: transparent;
    margin: 0 40px;
    /* Keeps the scrollbar away from the faded edges */
}

/* Mobile Specific Adjustments */
@media (max-width: 768px) {
    #amenityTabs {
        justify-content: flex-start;
        padding-left: 30px;
        padding-right: 30px;
        /* Thicker mask for better mobile cue */
        mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    }
}

/* Base button styling */
#amenityTabs .nav-link {
    color: var(--primary-color);
    width: 100%;
    border-radius: 0 !important;
    background: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
}

/* Hover state */
#amenityTabs .nav-link:hover {
    color: #ffffff;
    background: rgba(234, 179, 32, 0.05);
    border: 1px solid #fff;
}

/* Active state - The "Premium" look */
#amenityTabs .nav-link.active {
    background: var(--primary-color) !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(59, 73, 114, 0.2);
    /* transform: translateY(-2px); */
}

/* Mobile responsiveness */
@media (max-width: 991px) {
    #amenityTabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
        justify-content: flex-start !important;
        padding-bottom: 15px;
        border-radius: 0;
        background: transparent;
        border: none;
    }

    #amenityTabs::-webkit-scrollbar {
        height: 3px;
    }
}

.amenity-slider .amenity-card {
    /* background-color: #fff; */
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.amenity-slider .amenity-card .amenity-card-img {
    overflow: hidden;
    position: relative;
}

.amenity-slider .amenity-card:hover .amenity-card-img img {
    transform: scale(1.2);
    transition: all 300ms linear;
}

.amenity-slider .amenity-card .amenities-card-content p {
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 25px;
    padding: 5px 0;
    /* padding: 10px; */
    font-family: var(--content-font);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background: linear-gradient(45deg, #c08331ab, #ffffff38);
    margin: 0;
}

.amenity-slider .amenity-card .amenities-icon-tag {
    position: absolute;
    /* top: 20px; */
    bottom: 79px;
    right: 0;
    border-top-left-radius: 10px;
    padding-top: 5px;
    width: 59px;
    /* border-radius: 5px; */
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background-color: var(--primary-color);
    color: #fff;
}

/* Gallery Container */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 equal columns */
    grid-template-rows: repeat(2, 250px);
    /* 2 fixed rows */
    gap: 15px;
    /* Spacing between items */
}

/* Individual Item Styling */
.gallery-item {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    overflow: hidden;
    background-color: #c0c0ff;
    /* Matches your image placeholder color */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures images fill the space without distortion */
    display: block;
}

/* Specific Layout Positioning */

/* The Large L-shape/Center piece */
.item-2 {
    grid-column: 2 / span 1;
    /* Starts at col 2 */
    grid-row: 1 / span 2;
    /* Spans both rows vertically */
}

/* To get that specific L-shape effect for the middle, 
   we let the other items fill around it */

.item-3 {
    grid-column: 3 / span 2;
    /* Top right spans 2 columns */
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .item-2,
    .item-3 {
        grid-column: auto;
        grid-row: auto;
    }
}

.primary-teal {
    color: var(--primary-color);
}

.primary-teal-bg {
    background-color: var(--primary-color);
}

.location-list li {
    padding: 12px 0;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 15px;
    border-bottom: 1px solid #f3f0f0;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    font-family: var(--content-font);
}

.location-list li .highlight-text {
    color: var(--secondary-color);
}

.location-list li i {
    color: var(--primary-color);
    font-size: 29px;
    width: 25px;
}

.location-list li:hover {
    transform: translateX(10px);
    color: var(--primary-color);
}

/* .map-wrapper {
    height: 500px;
} */

.map-wrapper img {
    height: 100%;
    object-fit: cover;
}

.bg-gradient-dark {
    background: linear-gradient(transparent, rgba(26, 58, 95, 0.9));
}

.z-index-2 {
    z-index: 2;
}


/* Custom Project Card Styling */
.project-card {
    /* border: 2px solid transparent;
    padding: 30px 20px; */
    /* Increased vertical padding for better balance */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    /* background: #ffffff; */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Hover State */
.project-card:hover {
    transform: translateY(-8px);
    /* Smooth lift */
    /* background: #ffffff; */

    /* Deep, expansive shadow on hover */
    /* box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04); */

    /* Subtle border accent on hover */
    /* border-color: var(--primary-color); */
    /* Very light orange tint */
}

/* Optional: Icon or Image within the card */
.project-card i,
.project-card img {
    transition: transform 0.4s ease;
}

.project-card:hover i,
.project-card:hover img {
    transform: scale(1.1);
    /* Subtle zoom on the icon/image */
}

/* Active State matching the branding */
/* .project-card.active {
    border: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    background-color: #fff;
} */

.project-icon {
    width: 100px;
    margin-bottom: 15px;
    object-fit: contain;
}

.project-title {
    font-weight: 700;
    font-size: 0.9rem;
    font-family: var(--title-font);
    text-transform: uppercase;
    color: #fff;
}

.project-loc {
    font-family: var(--content-font);
    font-size: 0.75rem;
    color: #4f4f4f;
    font-weight: 600;
    margin-top: 4px;
}


.master-plan-section {
    background: #fff;
}

/* Card */
.master-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.master-card img {
    width: 100%;
    /*height: 350px;*/
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    transform: translateY(100%);
    transition: 0.5s ease;
}

/* Hover Effects */
.master-card:hover img {
    transform: scale(1.1);
}

.master-card:hover .overlay {
    transform: translateY(0);
}

/* Text */
.overlay p {
    margin: 0;
    font-size: 15px;
}

/* Owl Dots */
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 10px;
    background: #ccc;
    display: block;
    border-radius: 50%;
}

.owl-dot.active span {
    background: var(--primary-color);
    width: 25px;
    border-radius: 10px;
    transition: all 300ms linear;
}

/* Map Container */
.map-wrapper {
    /* border-radius: 20px; */
    overflow: hidden;
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
    border: 8px solid #fff;
    height: 500px;
}


.main-footer {
    position: relative;
    background: url(../img/bg-pattern/footer-pattern.avif) center/cover no-repeat;
    color: #ffffff;
    padding: 80px 0 60px;
    z-index: 1;
    overflow: hidden;
}

/* Overlay Layer */
.main-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #7d0003f2;
    z-index: -1;
}

.footer-heading {
    margin-bottom: 20px;
    border-bottom: 2px dashed;
    font-weight: 400;
    font-family: var(--title-font);
    max-width: max-content;
    padding-bottom: 9px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #fff;
    font-family: var(--content-font);
}

.footer-tag-content {
    line-height: 36px;
    /* color: var(--primary-color); */
    padding: 10px 0;
    /* border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed; */
}

/* Center Column Branding */
.brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background: #fff;
    padding: 25px 0;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px; */
    width: 100%;
    /* position: absolute; */
    max-width: max-content;
    /* top: -60px; */
    /* left: 50%;
    right: 50%; */
}

.project-logo {
    /* max-width: 140px; */
    /* margin-bottom: 15px; */
    /* filter: brightness(0) invert(1); */
    /* Makes logo white if it's black */
}

.presented-text {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.developer-logo {
    max-width: 200px;
}

/* Contact & Socials */
.contact-link {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: opacity 0.3s;
}

.contact-link:hover {
    color: #ffffff;
    opacity: 0.8;
}

.social-icons {
    margin-top: 25px;
    display: flex;
    gap: 5px;
    justify-content: center;
}

.social-icons a {
    font-size: 1.1rem;
    margin: 0 10px;
    transition: transform 0.3s;
    display: inline-block;
    background: #c38530;
    width: 38px;
    border-radius: 5px;
    height: 38px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a i {
    margin-top: 8px;
}


.social-icons a:hover {
    transform: translateY(-3px);
}

/* Copyright Bar */
.copyright-bar {
    background-color: var(--secondary-color);
    padding: 12px 0;
    color: #ffffff;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    font-family: var(--content-font);
}

/* Back to Top Button */
/* .back-to-top {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
} */


/* Contact Pills Styling */
.contact-pill {
    padding: 10px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-pill:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* The Form Card */
/* .cta-section-form {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.cta-section-form .cta-form-footer {
    padding: 10px 0;
    background: #0a1b4f;
    color: #fff;
    margin-bottom: 0;
    margin-top: 30px;
}

.custom-input {
    padding: 12px 18px;
    border: none;
    border-radius: 10px;
    border: 1px solid #efefef;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.btn-orange-action {
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-orange-action:hover {
    background-color: #000;
    color: white;
    transform: translateY(-2px);
} */


.registration-card {
    padding: 25px;
    border: 1px solid #ededed;
    border-radius: 10px;
    background-color: var(--secondary-color);
}

/* Floating Labels Customization */
.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.custom-input {
    /* border: 1px solid #f1f1f1; */
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: var(--content-font);
}

.custom-input:focus {
    background-color: #fff;
    border-color: var(--brand-orange);
    box-shadow: 0 0 15px rgba(253, 126, 20, 0.1);
}

input,
textarea,
label {
    font-family: var(--content-font) !important;
}

.btn-outline-dark {
    border-width: 2px;
    /* border-radius: 12px;   */
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.btn-outline-dark:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

.why-choose-card {
    border-radius: 20px;
    padding: 50px 30px 20px 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* border: 1px solid rgba(0, 0, 0, 0.03); */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    background: linear-gradient(to bottom, transparent 0%, transparent 70%, rgb(133 1 4 / 41%) 100%), url(https://dummyimage.com/500x405/999999/fff) no-repeat center center;
    background-size: cover;
}

/* Optional hover interaction for a smooth transition */
.why-choose-card:hover {
    background:
        linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.5) 100%
            /* Deepens or changes overlay on hover */
        );
        background-position: center center;
        background-repeat: no-repeat;
    background-size: cover;
}

.why-choose-card h5 {
    font-family: var(--title-font);
    margin-bottom: 10px;
    margin-top: 25px;
    color: #fff;
}

.why-choose-card p {
    font-size: 15px;
    text-align: justify;
    line-height: 25px;
    color: #fff;
}

/* Floating Icon Wrapper */
.feature-icon-wrapper {
    width: 85px;
    height: 85px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: absolute;
    top: -42px;
    left: 15%;
    transform: translateX(-50%);
    border: 3px solid #fff;
    /* box-shadow: 0 8px 20px rgba(10, 27, 79, 0.2); */
    transition: all 0.4s ease;
}

/* The Invisible Shine Effect */
/* .why-choose-card::after {
    content: "";
    position: absolute;
    top: 0; left: -150%;
    width: 60%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-20deg);
    animation: autoShimmer 6s infinite;
} */

/* @keyframes autoShimmer {
    0% { left: -150%; }
    20% { left: 150%; }
    100% { left: 150%; }
} */

/* Hover States */
.why-choose-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.12);
    border-color: rgba(249, 115, 22, 0.2);
}

.why-choose-card:hover .feature-icon-wrapper {
    background: var(--secondary-color);
    transform: translateX(-50%) rotateY(180deg);
    /* Cool flip effect */
}

/* Action Link */
.action-link {
    margin-top: auto;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.action-link:hover {
    color: var(--secondary-color);
}


.bg-pattern-section {
    position: relative;
    background: url(../img/bg-pattern/bg-pattern1.jpg);
    background-size: 500px;
    background-repeat: repeat;
    z-index: 1;
    overflow: hidden;
}

/* Overlay */
.bg-pattern-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(45deg, rgb(10 27 79 / 95%), rgb(0 0 0 / 92%)); */
    z-index: -1;
    background: #c38530f2;
}

.enquiry-section .cta-section-icon {
    font-size: 30px;
    color: var(--primary-color);
}


/* Modal Overlay Background */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 32%);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

/* Main Container */
.custom-modal-container {
    max-width: 480px;
    background: #fff;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

/* Image Styling */
.popup-form-img {
    overflow: hidden;
}

.popup-form-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Form Inputs */
.popup-custom-input {
    border: 1px solid #e2e8f0;
    border-radius: 0;
    border-radius: 30px;
    padding: 12px 15px;
}

.popup-custom-input:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

/* Buttons */
.btn-schedule {
    background-color: var(--primary-color);
    border-radius: 12px;
    border: none;
    transition: transform 0.2s ease;
}

.btn-schedule:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-close-custom {
    position: absolute;
    top: 20px;
    right: 10px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
    justify-content: center;
}

.btn-close-custom:hover {
    background: #bbb;
}

.about-image-grid-container {
    padding: 20px;
}

.custom-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: end;
    /* Creates the staggered height effect */
}

.grid-img .about-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.grid-img:hover .about-img {
    transition: all 300ms linear;
    transform: translateX(8px);
}

/* Specific Staggering */
.about-img-1 {
    grid-row: 1;
    align-self: end;
}

.about-img-2 {
    grid-row: 1 / span 2;
    align-self: start;
}

/* Taller image on right */
.about-img-3 {
    grid-row: 2 / span 2;
    align-self: start;
}

/* Taller image on left */
.about-img-4 {
    grid-row: 3;
    align-self: start;
}

/* The Central Watch Video Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: white;
    border-radius: 10px;
    padding: 8px;
    background: linear-gradient(white, white) padding-box, linear-gradient(45deg, #c38530 0%, #ac1c1f 100%) border-box;
    border: 4px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn img {
    width: 150px;
}

.btn-inner span {
    font-size: 0.75rem;
    font-weight: 800;
    color: #333;
    line-height: 1.2;
}

/* Typography and Extras */
.icon-box {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .video-play-btn img {
        width: 100px;
    }
}


/* .testimonial-section {
  background-color: #fcfcfd;
} */

.testimonial-card {
    background: #ffffff;
    border: 1px solid #eaeaea70;
    border-radius: 20px;
    padding: 25px;
    margin: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    /* Saradeuz brand blue */
    transform: translateY(-5px);
}

/* Content centered */
.review-text {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    text-align: justify;
    font-weight: 500;
}

/* Footer layout: Date bottom-left, Name bottom-right */
.card-footer-info {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.user-name {
    color: var(--secondary-color);
    letter-spacing: -0.3px;
    font-family: var(--title-font);
}

.date {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-accordion {
    width: 100%;
    max-width: 650px;
}

/* The Accordion Item */
details {
    background: var(--card-bg);
    margin-bottom: 1px;
    /* Thin line separator */
    border: 1px solid var(--border);
    transition: var(--transition);
}

details[open] {
    background: #fff;
    border-color: var(--gold);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); */
    /* margin: 15px 0; */
    /* Pops out slightly when active */
    border-radius: 8px;
}

summary {
    list-style: none;
    padding: 15px 30px;
    background-color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.95rem;
    outline: none;
    color: #fff;
}

summary::after {
    content: '—';
    /* Elegant thin line */
    font-size: 1.2rem;
    color: var(--gold);
    transition: var(--transition);
    transform: rotate(90deg);
}

details[open] summary::after {
    transform: rotate(0deg);
    color: var(--secondary-color);
}

/* Inner List Styling */

.connnectivity-list-parent {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.connectivity-list {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px dashed rgb(186 127 50 / 28%);
}

.connectivity-list .name {
    font-family: var(--content-font);
}

.connnectivity-list-parent .content {
    max-height: 350px;
    overflow-y: scroll;
}

@media screen and (max-width: 1370px) {
    .connnectivity-list-parent .content {
        max-height: 261px;
    }
}

.km {
    color: var(--secondary-color);
    font-family: var(--content-font);
    font-weight: bold;
}

@keyframes slideFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Hover */
.connectivity-list:hover .name {
    color: var(--secondary-color);
    transform: translateX(5px);
    transition: 0.3s;
}

.highlight-card-section {
    padding: 40px 0;
    background: url(../img/bg-pattern/bg-pattern1.jpg);
    background-size: 450px;
    background-repeat: repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.highlight-card-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle dark gradient for better text legibility */
    background: #630002e6;
    z-index: 1;
}

.highlight-card-section>.container {
    position: relative;
    z-index: 2;
}

/* Wrapper for the divider lines */
.highlight-card-wrapper {
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    /* The line between cards */
}

/* Remove border on the last item (Desktop) */
@media (min-width: 992px) {
    .highlight-card-wrapper:last-child {
        border-right: none;
    }
}

/* Remove border on even items (Mobile/Tablet) */
@media (max-width: 991px) {
    .highlight-card-wrapper:nth-child(even) {
        border-right: none;
    }
}

.highlight-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card-icon {
    margin-bottom: 5px;
}

.highlight-card-icon i {
    font-size: 50px;
    color: #fff;
}

.highlight-card-title {
    font-family: var(--title-font);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.highlight-card-content {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
    text-align: end;
}

@media screen and (max-width: 480px) {
    .highlight-card-title {
        font-size: 22px;
    }
}

.text-justify {
    text-align: justify;
}