:root {
    --primary-dark: #080a0a;
    --primary-brown: #aa8453;
    --primary-gold: #d8b76c;
    --primary-red: #c51b1b;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
}

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

.cta-btn {
  background-color: var(--primary-gold);
  color: var(--primary-dark);
  border: 2px solid var(--primary-gold);
  transition: all 0.3s ease;
  border-radius: 50px;
}

.cta-btn:hover {
  background-color: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.stat-box {
  background: var(--white);
  border: 2px solid var(--primary-gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.stat-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(168, 125, 61, 0.3);
}

.stat-number {
  color: var(--primary-brown);
  font-weight: 800;
  font-size: 2rem;
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.modal-content {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
  background-color: #f3eee4;
    color: #8d6820;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  padding: 20px 24px;
}

.modal-title {
  font-weight: 600;
  font-size: 1.25rem;
}

.modal-title i {
  color: #8d6820;
}

.btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.btn-close:hover {
  opacity: 1;
}

.custom-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px; /* spacing between each accordion item */
}

.custom-accordion .accordion-item {
    border: 1px solid var(--border-color);
    background-color: var(--light-bg);
    border-radius: 6px;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    background-color: var(--white);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 1rem 1.25rem;
    border: none;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-brown);
    color: var(--white);
}

.custom-accordion .accordion-body {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border-color);
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-gold);
}

.bg-dark {background-color: #040707 !important;}
.form-control {border:1px #d0ae68 solid !important;}

body {
    font-family: "Sora", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}


.image-wrapper {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.zoom-hover {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease, filter 0.5s ease;
  will-change: transform;
}

.image-wrapper:hover .zoom-hover {
  transform: scale(1.08);
  filter: brightness(1.05);
}


/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.text-gold {
    color: var(--primary-gold) !important;
}

.section-subtitle {
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}


  .amenities-section {
    padding: 80px 20px;
    background-color: #f9f5eb;
  }

  .amenities-title {
    font-size: 48px;
    color: #000;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
  }

  .amenities-subtitle {
    color: #aa8453;
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
  }

  .amenity-box {
    background-color: #ffffff;
    padding: 30px 20px;
    border: 1px solid #f9f5eb;
    text-align: center;
    border-radius: 12px;
    transition: all 0.4s ease;
    height: 100%;
  }

  .amenity-box:hover {
    background-color: #fbf7ed;
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(170, 132, 83, 0.3);
  }

  .amenity-icon {
    font-size: 36px;
    color: #d8b76c;
    margin-bottom: 15px;
  }

  .amenity-title {
    font-size: 18px;
    color: #b28d57;
    font-weight: 500;
  }




/* Custom Backgrounds */
.bg-light-custom {
    background-color: var(--light-bg);
}

/* Navigation */
.custom-navbar {
    background: rgba(4, 7, 7, 0.95);
    backdrop-filter: blur(10px);
    padding: 0rem 0;
    transition: all 0.3s ease;
}

.custom-navbar.scrolled {
    background: var(--primary-dark);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
}

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

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-gold) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* float buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.call-btn,
.whatsapp-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  background-color: var(--primary-brown); 
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 20px;
  overflow: hidden;              
  text-decoration: none;
}

.whatsapp-btn {
  background-color: #12bb50;
}

.call-btn:hover,
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.call-btn i,
.whatsapp-btn i {
  line-height: 1;              
  vertical-align: middle;      
  display: inline-block;
}



/* Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-brown));
    border: none;
    color: var(--white);
    font-weight: 600;
    /* padding: 0.75rem 2rem; */
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit {background-color: #d0ae68;
    width: 100%;
    height: 40px;
    border-radius: 0px;
    color: #000;
    font-weight: bold;}

    .btn-submit:hover {background-color: #ac8b49;
    width: 100%;
    height: 40px;
    border-radius: 0px;
    color: #000;
    font-weight: bold;}

.btn-outline-light {
      background-color: #d0ae68;
    border: 1px #d0ae68 solid;
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-section {
  height: 80vh; /* Adjust this value as needed */
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.329);
  z-index: 1;
}

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

.form-card select,
.form-card input,
.form-card textarea {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
}

.form-card select option {
  color: #000;
}

.form-card ::placeholder {
  color: #333;
}

/* Adjust hero content z-index */
.hero-content,
.hero-image,
.scroll-indicator {
    position: relative;
    z-index: 2;
}

::placeholder {color:#333 !important;}

/* Optional: Responsive video fallback height */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .bg-video {
        object-position: center;
    }
}


.floating-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-dark);
}

.floating-card i {
    font-size: 2rem;
}

.floating-card h6 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down {
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
}

/* About Section */
.about-content {
    padding-right: 2rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature-item h5 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.about-image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 500px;
}

.image-item.large {
    grid-row: 1 / 3;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-item:hover img {
    transform: scale(1.05);
}

/* Benefits Section */
.why-box {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.03);
}

.why-box:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

.why-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-gold);
  color: var(--white);
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.why-box h5 {
  font-size: 1.2rem;
  color: var(--primary-brown);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.why-box p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}


.why-list {
  padding-left: 0;
  margin-top: 1rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  color: var(--text-light);
  font-size: 0.95rem;
  text-align: left;
}

.why-list li i {
  color: var(--primary-gold);
  font-size: 1rem;
  line-height: 1.2;
  margin-top: 0.2rem;
}



/* Projects Section */
.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 7, 7, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 2rem;
}

.project-content h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.project-location {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.project-features {
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: var(--primary-gold);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.project-details {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.detail-label {
    color: var(--text-light);
    font-weight: 500;
}

.detail-value {
    font-weight: 600;
    color: var(--primary-dark);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: .2rem;
}

.gallery-item {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(4, 7, 7, 0.9));
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h5 {
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h6 {
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-info {
    padding-right: 2rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(216, 183, 108, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h6 {
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-brown);
    transform: translateY(-3px);
    color: var(--white);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}



/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-widget {
    margin-bottom: 2rem;
}

.widget-title {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-brown);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-contact p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    justify-content: end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-brown);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .about-image-grid {
        height: 400px;
    }
}

@media (max-width: 767px) {

    h1.display-5 {margin-top: 20%;
    font-size: 2.6rem;}



.modal-content {    max-width: 80%;
    margin: auto;}

    .hero-section {height:auto;}
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons .btn {display: none !important;}
   
    .lead {
        margin-bottom:-20px !important;
    font-size: 1rem;
    font-weight: 300;
    line-height: 24px;
}
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .floating-card {
        position: static;
        margin-top: 2rem;
    }
    

    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .counter {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.counter.visible {
  opacity: 1;
  transform: translateY(0);
}

    


}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-brown);
}