:root {
    --luxury-gold: #c88f3f;
    --luxury-champagne: #F7E7CE;
    --luxury-ivory: #FFFFF0;
    --luxury-beige: #F5F5DC;
    --luxury-grey: #6b6b6b;
    --luxury-dark: #2C2C2C;
    --luxury-white: #FFFFFF;
    --luxury-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --luxury-gradient: linear-gradient(135deg, var(--luxury-champagne) 0%, var(--luxury-ivory) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    

}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--luxury-dark);
    /* background-color: var(--luxury-white); */
    overflow-x: hidden;
    width: 100vw !important;
    
}
p{
    margin-bottom: 1px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-padding {
    padding: 60px 0;
}
.navbar {
    background: transparent;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    /* padding: 15px 30px; */
    position: absolute;
    width: 100%;
    z-index: 1000;
    display: flex !important;  
    justify-content: end !important;
    align-items: center !important;

}

.navbar1{
    width: 100%;
    max-width: 1200px;
    display: flex !important;  
    justify-content: end !important;
    align-items: flex-end     !important;
    /* padding: 15px 30px; */
}
/* Navbar Styles */
.luxury-navbar {
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;

}
.rera-img{
    height: 40px;
}
.luxury-navbar img {
    height: 40px;
    /* margin-left: 10px; */
}

.btn-luxury {
    background: var(--luxury-gradient);
    border: 2px solid var(--luxury-gold);
    color: var(--luxury-dark);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-luxury:hover {
    background: var(--luxury-gold);
    color: var(--luxury-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-luxury-primary {
    background: var(--luxury-gold);
    border: 2px solid var(--luxury-gold);
    color: var(--luxury-white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}
p {
    margin-bottom: px !important;
}

.btn-luxury-primary:hover {
    background-color: white;
    color: rgb(255, 255, 255);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-luxury-outline {
    background: transparent;
    border: 2px solid var(--luxury-gold);
    color: var(--luxury-gold);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-luxury-outline:hover {
    background: var(--luxury-gold);
    color: var(--luxury-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--luxury-gradient);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 231, 206, 0.8) 100%);
    z-index: 2;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
}



.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: #dfb93b;
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    max-width: 600px;
    line-height: 1.6;
}

.hero-subtitles {
    font-size: 1.6rem;
    color: #fff;
    max-width: 600px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dfb93b;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--luxury-grey);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #dfb93b;
    border-bottom: 2px solid var(--luxury-gold);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    40% {
        transform: translateY(-10px) rotate(45deg);
    }

    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--luxury-grey);
    text-align: center;
    max-width: 800px;
    padding-top: 35px;
    margin: 0 auto 30px;
}

.text-luxury {
    color: var(--luxury-gold);
}

/* Amenity Styles */
.amenity-list {
    margin-top: 40px;
}

.amenity-item {
    display: flex;
    align-items: flex-start;
    /* justify-content: center; */

    margin-bottom: 20px;
    /* padding: 20px; */
    background: transparent;
    border-radius: 15px;
    color: white;
    font-weight: bold;
    /* box-shadow: var(--luxury-shadow); */
    transition: all 0.3s ease;
    width: 100%;
    
}
.amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  /* gap: 16px; */
  margin-top: 17rem;
  padding-left: 0;
  list-style: none;
  
}
.ame{
    margin-top: 18rem;
}


.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    background: var(--luxury-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.amenity-icon i {
    font-size: 1.5rem;
    color: var(--luxury-gold);
}

.amenity-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--luxury-dark);
}

.amenity-content p {
    color: var(--luxury-grey);
    margin: 0;
}

/* Gallery Styles */
.clubhouse-gallery {
    position: relative;
}

.gallery-main {
    margin-bottom: 20px;
}

.gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
}

.gallery-thumbnails img {
    width: calc(33.333% - 7px);
    height: 120px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-thumbnails img:hover {
    transform: scale(1.05);
}

.rounded-luxury {
    border-radius: 20px;
}

/* Feature Cards */
.feature-card {
    background: var(--luxury-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--luxury-shadow);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--luxury-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--luxury-gold);
}

.feature-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--luxury-dark);
}

.feature-card p {
    color: var(--luxury-grey);
    margin: 0;
}

/* Floor Plan Styles */
.floor-plan-tabs .nav-pills .nav-link {
    background: transparent;
    border: 2px solid var(--luxury-gold);
    color: var(--luxury-gold);
    border-radius: 50px;
    padding: 12px 16px;
    margin: 0 9px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.floor-plan-tabs .nav-pills .nav-link.active {
    background: var(--luxury-gold);
    color: var(--luxury-white);
}

.plan-details {
    padding: 40px;
}

.plan-details h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--luxury-dark);
}

.plan-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--luxury-gradient);
    border-radius: 10px;
}

.spec-item i {
    color: var(--luxury-gold);
    font-size: 1.2rem;
}

.spec-item span {
    font-weight: 600;
    color: var(--luxury-dark);
}

/* Pricing Cards */
.pricing-card {
    background: var(--luxury-white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--luxury-shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--luxury-gold);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--luxury-gold);
    color: var(--luxury-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--luxury-dark);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--luxury-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.pricing-features {
    margin: 30px 0;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature i {
    color: var(--luxury-gold);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Location Advantages */
.location-advantages {
    padding: 20px 0;
}

.advantage-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 10px;
    background: var(--luxury-white);
    border-radius: 15px;
    box-shadow: var(--luxury-shadow);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--luxury-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 1.5rem;
    color: var(--luxury-gold);
}

.advantage-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--luxury-dark);
}

.advantage-content p {
    color: var(--luxury-grey);
    margin: 0;
}

.location-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* margin-top: 30px; */
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.amenities {
    background: var(--white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.amenity-card {
    position: relative;
    height: 240px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.amenity-front,
.amenity-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    backface-visibility: hidden;
}

/* Desktop: Show image first, text on hover */
@media (min-width: 769px) {
    .amenity-front {
        background: #2e2e2e;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        opacity: 1;
        transform: scale(1);
    }

    .amenity-back {
        background: #f5f5f5;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border: 1px solid rgba(154, 123, 79, 0.1);
        opacity: 0;
        transform: scale(0.95);
    }

    .amenity-card:hover .amenity-front {
        opacity: 0;
        transform: scale(1.05);
    }

    .amenity-card:hover .amenity-back {
        opacity: 1;
        transform: scale(1);
    }

    .amenity-back h4 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #2e2e2e;
    }

    .amenity-back p {
        font-size: 14px;
        color: #777;
        line-height: 1.4;
    }

    .amenity-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .amenity-card:hover .amenity-image {
        transform: scale(1.1);
    }
}

/* Mobile: Show text first, image on scroll */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    /* .amenity-card {
    height: 2000px;
  } */
   .section-subtitle{
    margin: 0 auto 10px;
   }
    .location-item {
        padding: 8px !important;
        border-radius: 4px !important;
        transition: var(--transition);
        background-color: var(--white);
        margin-bottom: 5px !important;

    }

    .amenity-front {
        background: #f5f5f5;
        /* padding: 1.5rem; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border: 1px solid rgba(154, 123, 79, 0.1);
        opacity: 1;
        transform: scale(1);
    }

    .amenity-back {
        background: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        opacity: 0;
        transform: scale(0.95);
    }

    .amenity-card.mobile-active .amenity-front {
        opacity: 0;
        transform: scale(0.95);
    }

    .amenity-card.mobile-active .amenity-back {
        opacity: 1;
        transform: scale(1);
    }

    .amenity-front h4 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #2e2e2e;
    }

    .amenity-front p {
        font-size: 14px;
        color: #777;
        line-height: 1.4;
    }

    .amenity-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .rera {
        font-size: 0.4rem;
        color: white !important;
        margin-bottom: 10px;
        text-align: center;
    }
}


/* Trust Cards */
.trust-card {
    background: var(--luxury-white);
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: var(--luxury-shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--luxury-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.trust-icon i {
    font-size: 2rem;
    color: var(--luxury-gold);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--luxury-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.trust-label {
    color: var(--luxury-grey);
    font-weight: 500;
}

/* Form Styles */
.contact-form-wrapper {
    background: var(--luxury-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--luxury-shadow);
}

.luxury-form .form-control,
.luxury-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--luxury-white);
}

.luxury-form .form-control:focus,
.luxury-form .form-select:focus {
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.luxury-form .form-floating>label {
    color: var(--luxury-grey);
    font-weight: 500;
}

.form-check-input:checked {
    background-color: var(--luxury-gold);
    border-color: var(--luxury-gold);
}

/* Footer */
.luxury-footer {
    background: var(--luxury-dark);
    color: var(--luxury-white);
    padding: 80px 0 30px;
    text-align: center;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 5px;
}

.brand-tagline {
    color: var(--luxury-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--luxury-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--luxury-gold);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--luxury-gold);
    margin-right: 15px;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--luxury-gold);
    color: var(--luxury-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--luxury-white);
    color: var(--luxury-gold);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: var(--luxury-grey);
    margin: 40px 0 20px;
}

.copyright,
.disclaimer {
    color: white;
    font-size: 0.9rem;
    margin: 0;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-cta .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-cta .btn i {
    font-size: 18px;
}

/* Example colors, customize if needed */
.btn-luxury-primary {
    background-color: #dfb93b;
}

.btn-luxury-primary:hover {
    background-color: #4444446a;
}

/* Responsive */
@media (max-width: 480px) {
    .floating-cta {
        bottom: 15px;
        right: 15px;
    }
    

    .floating-cta .btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .floating-cta .btn i {
        font-size: 16px;
    }
}


/* Modal Styles */
.luxury-modal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.luxury-modal .modal-header {
    border-bottom: 1px solid #e0e0e0;
    padding: 30px 30px 20px;
}

.luxury-modal .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--luxury-dark);
}

.luxury-modal .modal-body {
    padding: 20px 30px 30px;
}

.luxury-modal .form-control,
.luxury-modal .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.luxury-modal .form-control:focus,
.luxury-modal .form-select:focus {
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

body.modal-open {
    overflow: auto !important;
    padding-right: 0 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .he{
        font-size: 18px !important;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        /*margin-bottom: 20px;*/
    }

    .hero-stats {
        flex-direction: column;
        gap: 0px;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
        margin-top: 20px;
    }

    .section-padding {
        padding: 20px 0;
    }

    .amenity-item,
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }

    .amenity-icon,
    .advantage-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .plan-specs {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .floating-cta {
        bottom: 10px;
        right: 10px;
    }

    .floating-cta .btn span {
        display: none;
    }

    .floating-cta .btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-stats{
        margin-bottom: 10px !important;
    }
    .hero-subtitles {
    font-size: 1.3rem;
        
    }
    .rera-img{
    height: 30px !important;
}

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 1.2px;
        margin-top: 10px;
    }

    .gallery-thumbnails {
        flex-direction: column;
    }

    .gallery-thumbnails img {
        width: 100%;
        margin-bottom: 10px;
    }

    .amenity-item {
        padding: 15px;
        align-items: center;

    }

    .rera-badge {
        align-items: center;
    }

    .hero-content {
        text-align: center;
    }
    .luxury-navbar img{
        height: 30px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}



/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--luxury-beige);
}

::-webkit-scrollbar-thumb {
    background: var(--luxury-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #B8941F;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: var(--luxury-gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(10, 10, 10, 0.4);
    /* adjust for darkness */
    z-index: 1;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;    /* Replace with animated particles if needed */
    background-repeat: repeat;
    opacity: 0.15;
}



/* green */
.green-section {
    padding: 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}



.section-title {
    text-align: center;
     margin-bottom: 20px; 
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #1a4d3a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-accent {
    color: #4a7c59;
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a7c59, #6b9b7a);
    border-radius: 2px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.park-card {
    /* background: linear-gradient(rgba(0, 0, 0, 0.197), rgba(0, 0, 0, 0.197)), url(images/green.webp) no-repeat center center; */
    background-size: cover;
    border-radius: 20px;
    padding: 40px;
    margin-top: 25px;
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.1);
    border: 1px solid rgba(74, 124, 89, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* .park-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a7c59, #6b9b7a);
} */

.park-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(45, 90, 39, 0.15);
}

.park-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.park-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #4a7c59, #6b9b7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.park-description {
    font-size: 1.1rem;
    color: #fcfcfc;
    margin-bottom: 25px;
    font-weight: 500;
}

.amenities-list {
    list-style: none;
    padding: 0px;
}

/* .amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #1a4d3a;
    transition: color 0.3s ease;
} */


.check-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #4a7c59, #6b9b7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.subtext {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: #c88f3f;
    /* font-style: italic; */
    position: relative;
    padding: 30px 0;
}



.subtext::before {
    left: calc(50% - 120px);
}

.subtext::after {
    right: calc(50% - 120px);
}

.decorative-elements {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.1;
    font-size: 100px;
    color: #4a7c59;
    z-index: -1;
}

@media (max-width: 768px) {
    .green-section {
        padding: 20px 15px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .park-card {
        padding: 15px 5px;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .park-title {
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .park-description{
        text-align: center;
    }

    .subtext::before,
    .subtext::after {
        width: 40px;
    }

    .subtext::before {
        left: calc(50% - 80px);
    }

    .subtext::after {
        right: calc(50% - 80px);
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    .comparison-table {
        margin: 10px 0 !important;
    }

    .subtext {
        font-size: 1.2rem;
        padding: 10px;
    }
    .trust-card{
        padding: 10px 15px;
    }
    .trust-icon{
        width: 50px;
        height: 50px;
    }
    .trust-number {
        font-size: 1.6rem;
    }
    .pricing-card {
        text-align: center;
        padding: 20px;
    }
    .pricing-features{
        text-align: center;
    }
    .feature{
        justify-content: center;
    }
    .amenities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 items per row */
  gap: 10px;
  padding: 0;
  list-style: none;
  margin-top: 10rem;

}

.amenity-item {
  /* background-color: #f9f9f9; */
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.location-advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
  gap: 16px;
  padding: 0;
}

.advantage-item {
  display: flex;
  gap: 12px;
  background: #f8f8f8;
  padding: 12px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.advantage-icon {
  font-size: 24px;
  color: #e4b34d; /* Optional color tweak */
}

}
/* comparision */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    /* background: white; */
    border-radius: 0;
    overflow: hidden;
    /* box-shadow: 0 15px 40px rgba(101, 67, 33, 0.1); */
    /* border: 2px solid #d4af37; */
}

.comparison-table th {
    /* background: linear-gradient(135deg, #654321 0%, #8b4513 100%); */
    color: #000000;
    padding: 30px 25px;
    text-align: center;
    font-weight: 400;
    font-size: 1.2rem;
    position: relative;
    /* border-bottom: 3px solid #d4af37; */
    letter-spacing: 1px;
}

.comparison-table th:first-child {
    text-align: left;
    /* background: linear-gradient(135deg, #8b4513 0%, #654321 100%); */
    font-size: 1.3rem;
}

.comparison-table td {
    padding: 25px 20px;
    border-bottom: 1px solid #e8dcc0;
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #654321;
    font-size: 1.2rem;
}

.comparison-table tr:hover td {
    background-color: #f8f6f0;
    transform: translateY(-2px);
}



.price-header {
    font-size: 1rem;
    opacity: 0.9;
    /* font-style: italic; */
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 8px;
    color: #d4af37;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.check {
    color: #228b22;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}



.premium-column {
    /* background: linear-gradient(135deg, #fefefe 0%, #f8f6f0 100%); */
    position: relative;
    /* border-left: 3px solid #d4af37; */
}



@keyframes luxuryShimmer {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.feature-row {
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.feature-row:hover {
    /* border-left: 4px solid #d4af37; */
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

/* Luxury decorative elements */
.header::after {
    content: '◆';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #d4af37;
    background-color: #222;
    font-size: 2rem;
    z-index: 2;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%); */
}

@media (max-width: 768px) {

    .header {
        padding: 50px 30px;
    }

    .title {
        font-size: 2.2rem;
    }

    .content {
        padding: 18px 5px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 20px 15px;
        font-size: 1rem;
    }

    
}

@media (max-width: 480px) {
    .title {
        font-size: 1.8rem;
    }
    .premium-column::before  {
        padding: 4px 7px !important;
    }
    .price-amount{
        margin-top: 2px !important;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 5px 3px;
        font-size: 0.9rem !important;
    }

    .price-amount {
        font-size: 0.7rem;
    }
    .price-header{
        font-size: 0.8rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .gallery-item img {
        height: 180px;
    }
    .hero-stats {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap; /* Just in case of very small screens */
}

.stat-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    color: white;
    flex: 1 1 30%;
    min-width: 100px;
    transition: background 0.3s ease;
}


.stat-number {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 14px;
    color: white;
}

}
/* gallery section */
.gallery-section {
    background-color: white;
    padding: 80px 0;
    width: 100vw;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

}

.gallery-title {
    color: #c88f3f;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 1px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    transition: transform 0.3s;
    background: #222;
}


.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s, filter 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1) saturate(1.2);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255,199,44,0.18);
}