/*POPPINS*/
@import url('https://fonts.googleapis.com/css2?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&display=swap');

/*CORMORANT GARAMOND*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&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&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
}
body, html, footer {
    margin: 0;
    padding: 0;
}
p, li, a {
    font-family: 'Poppins', sans-serif;
}

p,a {
    letter-spacing: 1.5px;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Cormorant Garamond", sans-serif;
}

:root {
    /* ----------------------------------------- WEBSITE COLORS ---------------------------- */
    --black: #000000;
    --white: #FFFFFF;
    --light-gray: #EAEAEA; /* Not used, but available */
}

/*--------------HEADER ANIMATION---------------*/
/* NAVBAR STYLING */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease-in-out;
}

/* Add a background when scrolled */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
}
.logomain {
    width: 200px;
}
/* FULLSCREEN MENU */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    z-index: 9999;
}

/* When menu is active */
.fullscreen-menu.active {
    transform: translateY(0);
    opacity: 1;
}

/* MENU CONTENT */
.menu-content {
    text-align: center;
    width: 100%;
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* MENU LINKS */
.menu-links {
    list-style: none;
    padding: 0;
}

.menu-links li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* Delay animation of each menu item */
.fullscreen-menu.active .menu-links li {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu.active .menu-links li:nth-child(1) { transition-delay: 0.2s; }
.fullscreen-menu.active .menu-links li:nth-child(2) { transition-delay: 0.3s; }
.fullscreen-menu.active .menu-links li:nth-child(3) { transition-delay: 0.4s; }
.fullscreen-menu.active .menu-links li:nth-child(4) { transition-delay: 0.5s; }

/* MENU LINKS STYLING */
.menu-links a {
    text-decoration: none;
    font-size: 2rem;
    color: black;
    transition: color 0.3s;
}

.menu-links a:hover {
    color: #ff5733;
}

/* Ensure the navbar button is visible */
.menu-toggle {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1100;
    position: absolute;
    right: 30px; /* Adjust as needed */
    top: 50%;
    transform: translateY(-50%);
}

/* Hamburger lines */
.menu-toggle span {
    width: 100%;
    height: 2px;
    background: white; /* Change to a visible color */
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Change color when menu opens */
.fullscreen-menu.active .menu-toggle span {
    background: black; /* Make it visible on white background */
}

/*---------------------HEADER---------------------*/
.navbar {
    transition: background 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.navbar a {
    color: var(--white) !important;
    transition: color 0.3s ease-in-out;
}

/* Navbar when scrolled */


header li {
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--black) !important;
}

.nav-link::after {
    content: '';
    margin: auto;
    display: block;
    width: 0%;
    height: 2px;
    background-color: var(--black);
    opacity: 0;
    transition: 0.6s;
}

.nav-link:hover::after {
    width: 100%;
    opacity: 1;
}

#home,
#concierge-home,
#cards-hero, #travel-hero, #realestate-hero, #strategic-partnerships-hero, #exclusive-access-hero {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.6);
    
}
#cards-hero {
    background-color: #000;
}
#home {
    background-image: url("../imgs/hero.jpg");
}

#concierge-home {
    background-image: url("../imgs/concierge-service/concierge-hero.jpeg");
}
#concierge-subservices {
    position: relative;
    background-color: #000; /* Fallback in case image fails */
    color: #fff;
    z-index: 1;
    overflow: hidden;
}
#travel-hero {
    background-image: url('imgs/travel-service/travel-hero.jpg');
     background-size: cover;
      background-position: center; 
      position: relative;
}
#strategic-partnerships-hero {
    background-image: url('../imgs/partnershipshero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}
#concierge-subservices::before, #cards-hero::before  {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url("../imgs/concierge-service/gold-line.png");
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1; /* Adjust this value for more/less visibility */
    z-index: 0;
    pointer-events: none;
}
#realestate-features {
    position: relative;
    height: 80vh;
}
#realestate-features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url("../imgs/concierge-service/gold-line.png");
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1; /* Adjust this value for more/less visibility */
    z-index: 0;
    pointer-events: none;
}
#concierge-subservices > * {
    position: relative;
    z-index: 2;
}

h1 {
    color: var(--black);
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 4rem;
}

.cta {
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 20px;
    padding: 10%;
    white-space: nowrap;
    border: 1px solid var(--black);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: 0.5s;
}
.cta:hover {
    color: #000;
    background-color: #fff;
    border: none;
    transition: 0.5s;
}
.introduction-left {
    background-color: var(--light-gray);
}
.counter {
    color: rgba(0,0,0,0.5);
    font-size: 4rem;
    font-weight: 700;
}

span {
    color: rgba(0,0,0,0.5);
    font-size: 2rem;
}

.achievment-name {
    color: rgba(0,0,0,0.5);
    font-weight: 200;
}
#mission-vision {
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;

    background-color: var(--light-gray);
    margin-top: 5%;
}
#mission-vision h2 {
    font-size: 3.2rem;
    text-transform: uppercase;
}

.card {
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    color: white;
    font-size: 1.2rem;
    overflow: hidden;
}

/* Wrap Title & Hover Box */
.card h3 {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    margin: 0;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    z-index: 2;
}

/* Hover Effect Box */
.card-hover {
    position: absolute;
    bottom: 0; /* Sticks to the bottom */
    left: 0;
    width: 100%; /* Full width */
    height: 50%; /* Half height */
    background: #000; /* White background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Text Inside Hover Box */
.card-hover p {
    margin: 0;
    color: #fff; /* Black text */
    font-size: 1rem;
    padding-bottom: 5%;
}

/* Hover Effect */
.card:hover .card-hover {
    opacity: 1;
    transform: translateY(0);
}

/* Move Title & Change Color to Black */
.card:hover h3 {
    display: none;
}

/* Background Images with Linear Gradient */
.card1 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../imgs/service1.jpg") center/cover no-repeat;
}

.card2 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../imgs/service2.jpg") center/cover no-repeat;
}

.card3 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../imgs/service3.jpg") center/cover no-repeat;
}
.card4{
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../imgs/service4.jpg") center/cover no-repeat;
}

.card5{
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../imgs/service5.jpg") center/cover no-repeat;
}
.card6{
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../imgs/service6.png") center/cover no-repeat;
}
/*TESTIMONIALS*/
#testimonials {
    margin-top: 7%;
    margin-bottom: 7%;
}
/* Ensure the entire carousel is horizontally and vertically centered */
#carouselExampleIndicators {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    margin: 0 auto;
  }
  
  /* Ensure the carousel content (slides) is centered */
  .carousel-inner {
  
    width: 100%;
  }
  
  /* Carousel items centered */
  
  
  /* Testimonial card styling */
  .test-item {
    max-width: 600px;
    /* Adjust as needed */
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: auto;
    text-align: center;
  }
  
  /* Name styling */
  .review-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  /* Star rating styling */
  .review-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  
  .review-rating span {
    font-size: 20px;
    font-weight: bold;
    margin-right: 5px;
  }
  
  .review-rating i {
    color: #f4c150;
    /* Gold stars */
  }
  
  /* Testimonial title */
  .review-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  /* Testimonial text */
  .review-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
  }
  
  /* "Was this helpful?" section */
  .review-helpful {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .review-helpful p {
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  /* Yes/No buttons */
  .review-helpful .btn {
    margin: 0 5px;
  }
  
  /* Carousel indicators */
  .carousel-indicators [data-bs-target] {
    background-color: var(--black);
    /* Gold indicators */
  }
  
  .carousel-indicators .active {
    background-color: var(--light-gray);
    /* Active indicator */
  }
  
  .carousel-indicators {
    margin-top: 0;
  }
  
  #testimonials h2 {
    font-weight: bold;
    text-align: center;
    font-size: 2.5rem;
    text-transform: uppercase;
  }
  
  .left-about-image {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-top-left-radius: 5%;
    border-bottom-left-radius: 5%;
  }

/*-------------------pAYMENT PLANS-------------------------/*
/* Membership Plans Section */
#membership-plans {
    background: #f5f5f5; /* Light gray background */
    padding: 60px 0; /* Space above & below */
}

/* Membership Container */
.membership-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Membership Card */
.membership-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.08); /* Soft shadow */
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-bottom: 30px; /* Add spacing between rows */
}

/* Hover Effect */
.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

/* Membership Title */
.membership-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: black;
    margin-bottom: 20px;
}

/* Membership Features List */
.membership-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px; /* More space between features and price */
}

.membership-feature-item {
    font-size: 1rem;
    color: black;
    margin-bottom: 10px;
}

/* Membership Price */
.membership-price {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: black;
    margin-bottom: 20px; /* Space between price and button */
}

/* Buttons */
.membership-button {
    display: inline-block;
    padding: 12px 25px;
    background: black;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.membership-button:hover {
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
}

/* Primary Button (For Featured Plan) */


.primary:hover {
    background: rgba(0, 0, 0, 0.85);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .membership-card {
        margin-bottom: 40px;
    }
}



.policies a {
    color: #fff;
    text-decoration: none;
}
.snaper {
    color: rgba(0,0,0,0.5);
}



#scrollToTopBtn {
    position: fixed;
    bottom: 50px;
    left: 50px;
    width: 50px;
    height: 50px;
    background-color: black;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

#scrollToTopBtn i {
    font-size: 20px;
}

#scrollToTopBtn.show {
    opacity: 1;
    visibility: visible;
}


#elite-cards {
    background-color: var(--light-gray);
    margin-top: 5%;
    color: #000 !important;
}
#elite-cards h2 {
    font-size: 3.0rem;
}

/* Contact form input style for all pages except index.html */
body:not(.home) #contact input,
body:not(.home) #contact textarea,
body:not(.home) #contact select {
    background: transparent !important;
    border: 1px solid #fff !important;
    border-radius: 10px !important;
    color: #fff !important;
}