/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #890808;
    --secondary-color: #500606;
    --accent-color: #d4af37;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #faeff8a1;
    
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Navigation */
/* ===== Luxury Header ===== */
.lux-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.lux-header__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 180px 1fr 220px;
  align-items: center;
  gap: 14px;
}

.lux-brand img{
     height: auto;
    width: 186px;
  display: block;
}

/* Nav */
.lux-nav{
  position: relative;
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}

.lux-link{
  position: relative;
  font-size: 14px;
  text-decoration: none;
  color: rgba(0,0,0,0.72);
  letter-spacing: .2px;
  padding: 8px 2px;
  transition: color .25s ease, transform .25s ease;
  white-space: nowrap;
}

.lux-link:hover{
  color: rgba(0,0,0,0.92);
  transform: translateY(-1px);
}

/* Minimal “active” feel */
.lux-link.active{
  color: rgba(0,0,0,0.95);
}

/* Underline rail animation */


.lux-rail{
  position: absolute;
  left: 8px;
  bottom: 6px;
  width: 56px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #caa24d, #e7c873);
  box-shadow: 0 10px 26px rgba(202,162,77,0.25);
  transition:
    transform 0.35s cubic-bezier(.2,.8,.2,1),
    width 0.35s cubic-bezier(.2,.8,.2,1);
}
/* CTA */
.lux-cta{
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: #0b0b0b;
       background: linear-gradient(135deg, #500606, #500606);
  box-shadow: 0 12px 26px rgba(31,95,53,0.22);
  transition: transform .25s ease, box-shadow .25s ease;
}

.lux-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(31,95,53,0.28);
}

.lux-cta__icon{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.16);
}
.lux-cta__icon i{
        color: var(--accent-color);
}
.lux-cta__text{
  font-weight: 600;
  letter-spacing: .3px;
  color: #fff;
}

/* Responsive */
@media (max-width: 1050px){
  .lux-header__inner{ grid-template-columns: 160px 1fr; }
  .lux-cta{ display: none; }
  .lux-nav{ justify-content: flex-start; overflow-x: auto; }
}

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section - Creative & Interactive */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
  
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
       background: linear-gradient(135deg, rgb(0 0 0 / 42%) 0%, rgb(0 0 0 / 62%) 50%, rgb(0 0 0 / 55%) 100%);
        z-index: 1;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: float var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    top: -100px;
}

.floating-element:nth-child(odd) {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    width: 80px;
    height: 80px;
}

.floating-element:nth-child(even) {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    width: 120px;
    height: 120px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s ease 0.3s both;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.title-line {
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.5s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.7s both;
}

.stat-item {
    text-align: center;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

.btn {
    padding: 16px 36px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span,
.btn svg {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--accent-color)!important;
    border: solid var(--accent-color)!important;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: #c19d2e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: green;
    color: var(--white);
    border: 2px solid green;
}

.btn-secondary:hover {
    background: rgb(11, 165, 11);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: -51px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: fadeInUp 1s ease 1.1s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.scroll-arrows span {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    animation: arrowMove 1.5s infinite;
}

.scroll-arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-arrows span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrowMove {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

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

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

/* Section Styles */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
       font-size: 3.5rem;
    font-weight: 400;
    font-family: 'Times New Roman', serif;
    color: var(--accent-color);
    letter-spacing: 4px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
         background: linear-gradient(135deg, rgba(225, 211, 211, 0.205) 0%, rgba(205, 156, 176, 0.158) 100%);

    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-main-title {
    font-size: 3.5rem;
    font-weight: 400;
    font-family: 'Times New Roman', serif;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.features-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--accent-color);
}

.features-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
    letter-spacing: 1px;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fdfdfdb6;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        background: linear-gradient(to right, rgb(255 255 255 / 78%), #ffffff6b);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    opacity: 0;
    transform: scale(1.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
    background: var(--accent-color);
    transform: rotate(5deg);
}

.feature-item:hover .feature-icon-wrapper::after {
    opacity: 0.3;
    transform: scale(1.5);
}

.feature-item:hover .feature-icon-svg {
    color: var(--white);
    transform: scale(1.1);
}

.feature-icon-svg {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.feature-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin: 0;
    flex: 1;
    /* text-transform: uppercase; */
}

/* Highlights Section */
.highlights-section {
    padding: 80px 0;
    background: var(--white);
}

.highlights-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.highlights-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    cursor: pointer;
}

.highlights-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.highlights-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.highlights-image-wrapper:hover .video-overlay {
    opacity: 1;
}

.video-play-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 4px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    position: relative;
    z-index: 2;
}

.video-play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--white);
    animation: pulse 2s infinite;
    opacity: 0.7;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.video-play-btn svg {
    color: var(--white);
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.7);
    background: #c19d2e;
}

.video-play-btn:hover svg {
    transform: scale(1.1);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    z-index: 1;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(90deg);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.highlights-text h2 {
       font-size: 3.5rem;
    font-weight: 400;
    font-family: 'Times New Roman', serif;
    color: var(--accent-color);
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.highlights-list {
    list-style: none;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.highlights-list li svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

/* Amenities Section */
.amenities-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.amenities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
       background: linear-gradient(135deg, rgba(225, 211, 211, 0.205) 0%, rgba(205, 156, 176, 0.158) 100%);
    z-index: 0;
}

.amenities-section .container {
    position: relative;
    z-index: 1;
}

.amenities-header {
    text-align: center;
    margin-bottom: 3rem;
}

.amenities-main-title {
    font-size: 3.5rem;
    font-weight: 400;
    font-family: 'Times New Roman', serif;
    color: var(--accent-color);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    display: inline-block;
}

.amenities-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: var(--accent-color);
}

/* Tab Navigation */
.amenities-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.amenity-tab {
    flex: 1;
    padding: 1.2rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: none;
    color: rgba(212, 175, 55, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.amenity-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: left 0.3s ease;
    z-index: 0;
}

.amenity-tab span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.amenity-tab:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.amenity-tab.active {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.amenity-tab.active::before {
    left: 0;
}

.amenity-tab.active span {
    color: var(--white);
}

/* Amenities Carousel */
.amenities-carousel-wrapper {
    position: relative;
    padding: 0 80px;
    margin: 0 auto;
    max-width: 1400px;
}

.amenities-carousel {
    position: relative;
    overflow: hidden;
}

.amenities-zone {
    display: none;
    animation: fadeInSlide 0.5s ease;
}

.amenities-zone.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.amenities-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2rem 0;
}

.amenities-slider::-webkit-scrollbar {
    display: none;
}

.amenity-card {
    flex: 0 0 200px;
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.amenity-card:hover::before {
    left: 100%;
}

.amenity-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-color);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.amenity-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.amenity-card:hover .amenity-icon::after {
    opacity: 0.3;
    transform: scale(1.3);
}

.amenity-card:hover .amenity-icon {
    transform: rotate(5deg) scale(1.1);
}

.amenity-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.amenity-card:hover .amenity-icon img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.amenity-card h4 {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
    transition: color 0.3s ease;
}

.amenity-card:hover h4 {
    color: var(--primary-color);
}

/* Navigation Buttons - Luxury Design - Redesigned Alignment */
.amenities-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    background: var(--white);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    overflow: visible;
}

.amenities-nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-color);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    z-index: 0;
}

.amenities-nav-btn svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, color 0.3s ease;
    width: 20px;
    height: 20px;
}

.amenities-nav-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    border-color: var(--accent-color);
}

.amenities-nav-btn:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.amenities-nav-btn:hover svg {
    transform: scale(1.15);
    color: var(--white);
}

.amenities-nav-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.amenities-nav-btn.prev {
    left: 0;
}

.amenities-nav-btn.next {
    right: 0;
}

.amenities-nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}

.amenities-nav-btn:disabled:hover {
    transform: translateY(-50%) scale(1);
    background: rgba(255, 255, 255, 0.6);
    color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}

.amenities-nav-btn:disabled::before {
    display: none;
}

.amenities-nav-btn:disabled svg {
    transform: none;
    color: rgba(212, 175, 55, 0.25);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 0;
}

.pricing-section .container {
    position: relative;
    z-index: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-main-title {
    font-size: 3.5rem;
    font-weight: 400;
    font-family: 'Times New Roman', serif;
    color: var(--accent-color);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.pricing-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: var(--accent-color);
}

.pricing-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-top: 2rem;
    font-weight: 500;
}

.pricing-grid {
    /* display: grid; */
     display: flex;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
    /* min-height: 600px; */
}

.pricing-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(26, 71, 42, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

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

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 2;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
    border-color: var(--accent-color);
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(212, 175, 55, 0.08) 100%);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.35);
}

.pricing-card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-badge {
    position: absolute;
        top: 4px;
    right: 10px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-badge {
    transform: scale(1.1) rotate(2deg);
}

.pricing-badge.premium {
    background: linear-gradient(135deg, var(--accent-color) 0%, #c19d2e 100%);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7);
    }
}

.pricing-type-section {
    margin-bottom: 1rem;
    /* padding-bottom: 1.5rem; */
    border-bottom: 2px solid var(--bg-light);
}

.pricing-type {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.pricing-subtype {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-configuration {
    margin-bottom: 1rem;
    flex: .2;
}

.config-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.config-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.config-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.config-item:last-child {
    border-bottom: none;
}

.pricing-card:hover .config-item {
    padding-left: 5px;
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

.config-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.config-value {
    font-size: 1.5rem;
    color: #0a0a0a;
    font-weight: 700;
}

.pricing-price-section {
    margin-bottom: 2rem;
    padding: 1.3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(26, 71, 42, 0.05) 100%);
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-price-section {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 71, 42, 0.1) 100%);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 4px;
}

.amount {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.unit {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 600;
    margin-left: 4px;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

.pricing-btn-breakup {
    width: 100%;
    text-decoration: none;
    padding: 16px 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.pricing-btn-breakup::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.pricing-btn-breakup:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 71, 42, 0.4);
}

.pricing-btn-breakup:hover svg {
    transform: translateX(5px);
}

.pricing-btn-breakup svg {
    transition: transform 0.3s ease;
}

.pricing-btn-breakup.featured-breakup {
    background: linear-gradient(135deg, var(--accent-color) 0%, #c19d2e 100%);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.pricing-btn-breakup.featured-breakup:hover {
    background: linear-gradient(135deg, #c19d2e 0%, var(--accent-color) 100%);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-note p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Price Breakup Modal */
.price-breakup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.price-breakup-modal.active {
    display: flex;
}

.price-breakup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.price-breakup-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s ease;
}

.price-breakup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s ease;
    z-index: 2;
}

.price-breakup-close:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: rotate(90deg);
}

.breakup-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.breakup-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.breakup-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.breakup-item-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.breakup-item-value {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.breakup-total {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #c19d2e 100%);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breakup-total-label {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breakup-total-value {
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
}

/* Plans Section */
.plans-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: .5rem;
}
.plans-grid a,.plans-grid a:hover{
color: #000;
text-decoration: none;
}

.plan-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.plan-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.plan-info {
    padding: 1.5rem;
    text-align: center;
}

.plan-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.plan-info p {
    color: var(--text-light);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--white);

}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px var(--shadow);
}

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

.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s ease;
    animation: fadeIn 0.6s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    height: 0;
    margin: 0;
    overflow: hidden;
}

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

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--text-light);
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: var(--white);
    margin-top: auto;
}

.gallery-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-info p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.view-btn {
    align-self: flex-end;
    background: var(--accent-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.view-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    color: var(--white);
    text-align: center;
    margin-top: 1.5rem;
}

.lightbox-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.lightbox-info p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) translateY(-50%);
}

.lightbox-close:hover {
    transform: scale(1.1);
}

/* Contact Section */
.get-in-touch {
  animation: bgZoom 20s ease-in-out infinite alternate;
}

@keyframes bgZoom {
  from { background-size: 100%; }
  to { background-size: 110%; }
}
.get-in-touch .section-title {
    font-size: 2.5rem;
    font-weight: 700;
        color: var(--accent-color);
}
.contact-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 14px;
  max-width: 700px;
  margin: auto;
}
.get-in-touch {
  position: relative;
  background-image: url("../images/gallery/g7.jpg"); /* update path */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

.get-in-touch .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.75)
  );
  z-index: 1;
}

.get-in-touch .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  text-align: center;
}
.get-in-touch h2 {
  font-size: 42px;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.get-in-touch p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.get-in-touch input,
.get-in-touch textarea {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.get-in-touch input::placeholder,
.get-in-touch textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.get-in-touch button {
  background: linear-gradient(135deg, #caa24d, #e7c873);
  color: #000;
  border: none;
  padding: 14px 32px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.get-in-touch button:hover {
    background: linear-gradient(135deg, #d3a84c, #836209);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-item h4 {
    color: #cfcfcf;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #000000;
    color: var(--white);
    padding: 30px 0 20px;
}

.footer-content {
    display: block;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: justify;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

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

.social-links a {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (min-width: 768px) {
.d-banner{
        display: block!important;
    }
     .m-banner{
        display: none!important;
    }
}
@media (max-width: 768px) {
    .counter {
    font-size: 2rem;
    }
    .d-banner{
        display: none!important;
    }
     .m-banner{
        display: block!important;
    }
    .pricing-grid {
    display: grid!important;
    }
    .highlights-content {
    display: block!important;
    }
    .pricing-card-content {
    position: relative;
    z-index: 2;
     padding: .5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .title-main {
        font-size: 1.2em;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-banner {
        height: 100vh;
        min-height: 600px;
    }

    .highlights-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-main-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-column {
        gap: 2rem;
    }

    .feature-item {
        padding: 1.2rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .amenities-main-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .amenities-tabs {
        /* flex-direction: column;
        max-width: 100%; */
    }

    .pricing-price-section {
    margin-bottom: 2rem;
    padding: .5rem;
    }
    .amenity-tab {
        width: 100%;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .amenities-carousel-wrapper {
        padding: 0 60px;
    }

    .amenities-nav-btn {
        width: 48px;
        height: 48px;
    }

    .amenities-nav-btn svg {
        width: 18px;
        height: 18px;
    }

    .amenity-card {
        flex: 0 0 180px;
    }

    .pricing-main-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .pricing-amount {
        font-size: 2.5rem;
    }

    .plans-grid,
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .lightbox-prev,
    .lightbox-next {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-banner {
        min-height: 500px;
    }

    .features-main-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .features-subtitle {
        font-size: 1.2rem;
    }

    .feature-item {
        /* flex-direction: column; */
        text-align: center;
        gap: 1rem;
    }

    .highlights-text h2 {
    font-size: 2rem;
    }
    .feature-item:hover {
        transform: translateY(-5px);
    }

    .amenities-main-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .amenities-carousel-wrapper {
        padding: 0 50px;
    }

    .amenities-nav-btn {
        width: 44px;
        height: 44px;
    }

    .amenities-nav-btn svg {
        width: 16px;
        height: 16px;
    }

    .amenity-card {
        flex: 0 0 150px;
        padding: 1.5rem 1rem;
    }

    .amenity-icon {
        width: 60px;
        height: 60px;
    }

    .amenity-card h4 {
        font-size: 0.8rem;
    }

    .pricing-main-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    .plans-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Location Highlights (Map + Tabs) ===== */
.loc-section{
  position: relative;
  padding: 0;
  background: #fff;
  overflow: hidden;
   padding: 80px 0;
}

/* subtle leaf/pattern */
.loc-section::before{
  content:"";
  position:absolute;
  inset:-80px -120px -80px -120px;
  background:
    radial-gradient(circle at 75% 30%, rgba(58,120,78,0.08), transparent 55%),
    radial-gradient(circle at 20% 70%, rgba(58,120,78,0.06), transparent 55%);
  pointer-events:none;
}

.loc-wrap{
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  min-height: 430px;
}

.loc-map{
  position: relative;
  background: #f5f5f5;
}

.loc-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* right panel */
.loc-panel{
  position: relative;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(5px);
  border-left: 1px solid rgba(0,0,0,0.06);
  padding: 22px 26px;
}

.loc-top{
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.loc-arrow{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  background: #fff;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.loc-arrow:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

.loc-tabs{
  display: flex;
  justify-content: center;
  gap: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.10);
  padding: 0 10px;
}

.loc-tab{
  position: relative;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px 6px 12px;
  font-size: 13px;
  letter-spacing: .8px;
  color: rgba(0,0,0,0.65);
  transition: color .25s ease;
  white-space: nowrap;
}

.loc-tab.active{
  color: #2f7a46;
}

.loc-tab.active::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #2f7a46;
  border-radius: 999px;
}

.loc-content{
  margin-top: 14px;
}

.loc-list{
  display: none;
}
.loc-list.active{
  display: block;
}

.loc-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 15px;
  color: rgba(0,0,0,0.78);
}

.loc-row .km{
  font-weight: 600;
  color: rgba(0,0,0,0.65);
}

/* Vertical Enquire button */
.loc-enquire{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right top;
  background: #2f7a46;
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: .6px;
  box-shadow: 0 16px 34px rgba(47,122,70,0.25);
  z-index: 5;
}

/* responsive */
@media (max-width: 980px){
  .loc-wrap{ grid-template-columns: 1fr; }
  .loc-panel{ border-left: 0; border-top: 1px solid rgba(0,0,0,0.06); }
  .loc-enquire{ display:none; }
  .loc-map{ min-height: 320px; }
  .loc-content {
    margin-top: 14px;
    display: table-cell;
}
.loc-row .km {
    margin-left: 20px;
}
}
/* ========= Mobile Hamburger + Drawer ========= */
.lux-burger{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.10);
  background:#fff;
  cursor:pointer;
  gap:6px;
  padding:10px;
}
.lux-burger span{
  display:block;
  height:2px;
  width:100%;
  background: rgba(0,0,0,0.75);
  border-radius:999px;
  transition: transform .25s ease, opacity .25s ease;
}

/* Drawer */
.lux-drawer-overlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,0.55);
  opacity:0;
  pointer-events:none;
  transition: opacity .25s ease;
  z-index: 1400;
}

.lux-drawer{
  position:fixed;
  top:0;
  right:0;
  height:100vh;
  width:min(88vw, 380px);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-left: 1px solid rgba(0,0,0,0.08);
  transform: translateX(105%);
  transition: transform .30s cubic-bezier(.2,.8,.2,1);
  z-index: 1500;
  padding: 18px;
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.lux-drawer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.lux-drawer__top img{
  width: 160px;
  height: auto;
}
.lux-drawer__close{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.10);
  background:#fff;
  cursor:pointer;
}

.lux-drawer__nav{
  display:flex;
  flex-direction:column;
  gap: 10px;
  padding-top: 6px;
}
.lux-drawer__nav a{
  text-decoration:none;
  color: rgba(0,0,0,0.78);
  font-weight:600;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(0,0,0,0.02);
}
.lux-drawer__nav a:hover{
  background: rgba(212,175,55,0.10);
  border-color: rgba(212,175,55,0.35);
}

.lux-drawer__cta{
  margin-top:auto;
}
.lux-drawer__call{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 12px;
  border-radius: 14px;
  text-decoration:none;
  font-weight:700;
  color:#fff;
  background: linear-gradient(135deg, #890808, #500606);
  box-shadow: 0 16px 34px rgba(26,71,42,0.22);
}

/* Open state */
body.menu-open .lux-drawer-overlay{
  opacity:1;
  pointer-events:auto;
}
body.menu-open .lux-drawer{
  transform: translateX(0);
}

/* Make header responsive */
@media (max-width: 992px){
  .lux-header__inner{
    grid-template-columns: 1fr auto;
  }
  .lux-nav{ display:none; }
  .lux-cta{ display:none; }
  .lux-burger{ display:inline-flex; align-items:center; justify-content:center; }
}

/* ========= Mobile Sticky Footer Bar ========= */
.m-stickybar{
  display:none;
}

@media (max-width: 992px){
  body{ padding-bottom: 74px; } /* space for sticky bar */

  .m-stickybar{
    position: fixed;
    left: 5px;
    right: 5px;
    bottom: 5px;
    height: 58px;
    display:flex;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    z-index: 1600;
  }

  .mbar-btn{
            font-size: 10px;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;

    gap: 4px;
    text-decoration:none;
    border-radius: 14px;
    font-weight: 700;
    color: rgba(0,0,0,0.78);
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
  }

  .mbar-btn i{ color: var(--accent-color); }

  .mbar-btn--primary{
    color:#ffffff;
    background: linear-gradient(135deg, #268f0b, #029149);
    border-color: #268f0b;
  }
}

.disc{
  margin-top: 10px;
  text-align: justify;
}
.disc label ,.disc label a{
display: contents!important;
font-size: 12px;
color: #a1a1a1;

}
.disc input{
display: inline-block;
width: 10px;
height: 10px;
color: #a1a1a1;
}
/* Mobile: make location tabs horizontally scrollable */
@media (max-width: 600px) {
  .loc-top{
    grid-template-columns: 38px 1fr 38px; /* smaller arrows */
    gap: 8px;
  }

  .loc-arrow{
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .loc-tabs{
    justify-content: flex-start;        /* don’t center */
    gap: 12px;                          /* reduce spacing */
    overflow-x: auto;                   /* allow horizontal scroll */
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;  /* smooth iOS scroll */
    scrollbar-width: none;              /* Firefox hide */
  }
  .loc-tabs::-webkit-scrollbar{ display: none; } /* Chrome/Safari hide */

  .loc-tab{
    flex: 0 0 auto;                     /* prevent shrinking */
    font-size: 12px;
    padding: 10px 6px 12px;
  }
}

.mb-10{
    margin-bottom: 20px;
}
.whatsapp-pop {
  position: fixed;
  top: 87%;
  left: 30px;
  z-index: 9;
}
.whatsapp-pop a {
  border-radius: 50%;
  text-align: center;
  padding: 6px 10px;
  background-color: #2db742;
  transition: 0.5s all;
  display: inline-block;
}
.whatsapp-pop a img {
  max-width: 46px;
  margin-bottom: 5px;
}
.whatsapp-mini-text-img span {
  background-color: #ECC37E;
    top: 20%;
      left: 73px;
    width: max-content;
    position: absolute;
  color: black;
  padding: 15px;
  font-size: 12px;
  border-radius: 5px;
  z-index: 8;
}

/* Loader inside button */
.btn.is-loading{
  pointer-events: none;
  opacity: 0.85;
}

.btn .btn-spinner{
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.45);
  border-top-color: rgba(255,255,255,1);
  border-radius: 999px;
  animation: btnSpin .8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

.btn.is-loading .btn-spinner{
  display: inline-block;
}

@keyframes btnSpin{
  to { transform: rotate(360deg); }
}

