:root {
    --primary-color: #001F3F; /* Navy Blue */
    --secondary-color: #0074D9; /* Lighter Blue */
    --accent-color: #000000; /* Orange for CTA */
    --text-color: #333333;
    --light-gray: #f4f4f4;
    --white: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --header-offset: 72px;
    --gold: #c5a059;
    --gold-light: #e6c88b;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-offset);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    padding-bottom: 60px; /* Space for sticky footer */
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: #000000;
}

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

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

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

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-header .header-content {
    padding-left: 5px;
    padding-right: 15px;
}

.sticky-header .logo-container {
    margin-left: -15px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: block;
    height: 50px;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Navigation Menu */
.main-nav {
    display: none; /* Hidden on mobile by default */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links li a {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #800080;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-call-header {
    background-color: #f0f0f0;
    color: #333;
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 4px;
    display: none; /* Hidden on mobile, show on desktop */
}

.btn-whatsapp-header {
    background-color: #25D366;
    color: white;
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 4px;
    display: none; /* Hidden on mobile, show on desktop */
}

.btn-call-header:hover {
    background-color: #e0e0e0;
}

.btn-whatsapp-header:hover {
    background-color: #128C7E;
}

/* Mobile Toggle */
.mobile-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Desktop Responsiveness for Header */
@media (min-width: 992px) {
    .main-nav {
        display: block;
    }
    
    .btn-call-header, 
    .btn-whatsapp-header {
        display: inline-block;
    }
    
    .mobile-toggle {
        display: none;
    }
}

/* Mobile Menu Styles (Active State) */
.main-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border-top: 1px solid #eee;
}

.main-nav.active .nav-links {
    flex-direction: column;
    text-align: center;
}

/* --- New Split Banner Layout --- */
.banner-section {
    position: relative;
    width: 100%;
    margin-top: var(--header-offset);
}

.split-banner-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    /* Fill screen height minus header, or at least 600px */
    min-height: calc(100vh - var(--header-offset));
    height: auto;
    background: #fff;
    overflow: hidden;
}

/* Left Side: Slider */
.banner-slider-wrapper {
    width: 65%; /* Desktop width */
    position: relative;
    /* The curve effect */
    border-top-right-radius: 120px;
    overflow: hidden;
    z-index: 1;
}

.banner-slider {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 500px; /* Minimum height for slider */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* Slider Overlay Text */
.slider-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.slider-overlay-content h3 {
    font-size: 1.1rem;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.collection-text {
    font-family: 'Times New Roman', serif; /* Fallback for elegant font */
    font-weight: 400;
    font-style: italic;
    font-size: 0.9em;
}

.btn-download-brochure {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.btn-download-brochure:hover {
    background: #fff;
    color: #001F3F;
}

/* Right Side: Content */
.banner-info-wrapper {
    width: 35%;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    position: relative;
    z-index: 2; /* Above slider curve if needed */
}

.rera-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    text-align: right;
    margin-bottom: 20px;
}

.rera-details small {
    display: block;
    color: #666;
    font-size: 0.7rem;
    line-height: 1.4;
}

.rera-details strong {
    display: block;
    font-size: 0.95rem;
    color: #000;
    margin: 2px 0;
}

.rera-details a {
    color: #666;
    text-decoration: underline;
}

.banner-logo-center {
    text-align: center;
    margin: 20px 0 40px;
}

.banner-logo-img {
    max-width: 160px;
    margin-bottom: 15px;
}

.gold-underline {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
    border-radius: 2px;
}

.pricing-boxes-container {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.pricing-box-banner {
    flex: 1;
    border: 1px solid var(--gold);
    padding: 20px 10px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s;
}

.pricing-box-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

.pricing-box-banner h4 {
    font-size: 0.8rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-banner {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 800;
}

.emi-banner {
    font-size: 0.75rem;
    background: var(--gold);
    color: #fff;
    padding: 4px 8px;
    display: inline-block;
    margin-top: 8px;
    border-radius: 4px;
    font-weight: 600;
}

.banner-footer-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.location-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.btn-enquire-banner {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #000;
    border: none;
    padding: 12px 35px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.4);
}

.btn-enquire-banner:hover {
    box-shadow: 0 6px 15px rgba(197, 160, 89, 0.6);
    transform: translateY(-2px);
}

/* Overview Section */
.overview-section {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.section-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

.overview-text {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
    color: #555;
    text-align: justify;
}

.highlights-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.highlights-content {
    flex: 1;
}

.highlights-title {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.highlights-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    font-weight: 500;
}

.highlights-list li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.highlights-image {
    flex: 1;
}

.highlights-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Pricing Section */
.pricing {
    padding: 60px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.pricing h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2rem;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 300px;
    transition: transform 0.3s;
    border-top: 4px solid var(--primary-color);
}

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

.pricing-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.area {
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.price {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 20px;
}

/* Floor Plan Section */
.floor-plan-section {
    padding: 60px 0;
    background-color: #fff;
}

.floor-plan-cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.fp-card {
    width: 300px;
    text-align: center;
    position: relative;
}

.fp-card.featured {
    transform: scale(1.05);
    z-index: 2;
}

.fp-image-container {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: #000;
}

.fp-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.fp-image.blur-effect {
    filter: blur(5px);
    opacity: 0.8;
}

.fp-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    padding: 12px 25px;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.fp-title {
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.fp-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 4px;
    font-weight: bold;
}

.btn-large-download {
    padding: 15px 40px;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Highlights Grid */
.highlights {
    padding: 60px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.highlights h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.highlight-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.highlight-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.highlight-item p {
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

/* --- Amenities Tabbed Section Styles --- */
.amenities-section {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.gold-divider-center {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    margin: 10px auto 40px;
    border-radius: 2px;
}

/* Tabs Navigation */
.amenities-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.tab-btn {
    background: #fff;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    min-width: 120px;
}

.tab-btn:hover, .tab-btn.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

/* Amenities Grid (Tabbed) */
.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    text-align: center;
    transition: transform 0.3s;
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.amenity-item:hover .amenity-icon {
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(197, 160, 89, 0.2);
}

.amenity-icon i {
    font-size: 2.5rem;
    color: #333; /* Dark icon as per reference */
}

.amenity-item p {
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    margin: 0;
}

/* --- Gallery Tabbed Section (Dark Theme) --- */
.gallery-section {
    padding: 80px 0;
    background-color: #0d1b2a; /* Navy/Black dark background */
    text-align: center;
    position: relative;
    /* Add a subtle texture overlay if needed */
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231b263b' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}

.section-title-gold {
    color: var(--gold);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 0; /* Connected tabs */
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-tab-btn {
    flex: 1;
    background: #fff;
    border: 1px solid var(--gold);
    color: var(--text-color);
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-tab-btn:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.gallery-tab-btn:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.gallery-tab-btn.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
    position: relative;
    z-index: 1;
    transform: scale(1.05); /* Slight pop for active tab */
}

/* Gallery Grid (Tabbed) */
.gallery-tab-content {
    display: none;
    animation: fadeIn 0.8s ease;
}

.gallery-tab-content.active {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

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

.gallery-caption {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 5px 10px;
    font-size: 0.7rem;
    border-radius: 3px;
    backdrop-filter: blur(2px);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.3);
}

.prev-lightbox { left: 20px; }
.next-lightbox { right: 20px; }

/* Location Section */
.location {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.location h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2rem;
}

.location-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.location-map {
    flex: 1;
    min-width: 300px;
}

.location-details {
    flex: 1;
    min-width: 300px;
}

.location-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    background: #f9f9f9;
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover, .accordion-header.active {
    background: #eef2f7;
    color: var(--accent-color);
}

.accordion-header i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.accordion-header .arrow {
    margin-right: 0;
    transition: transform 0.3s;
}

.accordion-header.active .arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
}

.accordion-content ul {
    list-style: none;
    padding: 15px;
    border-top: 1px solid #eee;
}

.accordion-content ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    color: #555;
    font-size: 0.95rem;
}

.accordion-content ul li:last-child {
    border-bottom: none;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

footer .disclaimer {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #ccc;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #ccc;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Sticky Footer CTA (Mobile) */
.sticky-footer-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    background: transparent;
    display: flex;
    padding: 0;
    gap: 14px;
    align-items: stretch;
    justify-content: space-between;
    box-shadow: none;
    z-index: 999;
}

.sticky-footer-cta .btn {
/*    flex: 0 1 220px;*/
    margin: 0;
    padding: 12px 16px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.95);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.btn-sticky-brochure {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #000;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.btn-sticky-enquire {
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.sticky-footer-cta .btn-enquire-banner {
    box-shadow: none;
    transform: none;
}

.sticky-footer-cta .btn-enquire-banner:hover {
    box-shadow: none;
    transform: none;
}

@media (max-width: 480px) {
    .sticky-footer-cta {
        left: 12px;
        right: 12px;
        bottom: 12px;
        gap: 10px;
    }

    .sticky-footer-cta .btn {
        flex-basis: 160px;
        padding: 12px 12px;
        font-size: 0.85rem;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #128C7E;
}

/* Modal */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    border: 1px solid #888;
    width: 90%; 
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex; /* Side by side layout */
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-body {
    display: flex;
    width: 100%;
}

.modal-image {
    width: 50%;
    background: #f0f0f0;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-form-container {
    width: 50%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-form-container h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.modal-subtitle {
    margin-bottom: 20px;
    color: #666;
}

.form-control {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.consent-group {
    margin-top: 5px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

.form-checkbox {
    margin-top: 3px;
}

/* Responsiveness */
@media (max-width: 991px) {
    .highlights-container {
        flex-direction: column;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Modal Mobile */
    .modal-content {
        flex-direction: column;
        width: 95%;
    }
    
    .modal-image {
        width: 100%;
        height: 150px;
        display: none; /* Hide image on mobile to save space, or keep it small */
    }
    
    .modal-form-container {
        width: 100%;
        padding: 30px 20px;
    }

    /* Split Banner Mobile */
    .split-banner-container {
        flex-direction: column;
        height: auto;
    }
    
    .banner-slider-wrapper {
        width: 100%;
        height: 350px; /* Reduced height for mobile */
        border-top-right-radius: 0;
        border-bottom-right-radius: 60px; /* Reverse curve for mobile appeal */
    }
    
    .banner-slider {
        min-height: auto;
    }
    
    .banner-info-wrapper {
        width: 100%;
        padding: 30px 20px;
    }
    
    .pricing-boxes-container {
        gap: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .slider-overlay-content h3 {
        font-size: 0.9rem;
    }
    
    .pricing-box-banner {
        padding: 15px 5px;
    }
    
    .price-banner {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr; /* 1 col on very small screens? Or keep 2 */
        grid-template-columns: repeat(2, 1fr); /* Keep 2 cols as per request */
    }
    
    /* Amenities Mobile */
    .amenities-tabs {
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .tab-btn {
        flex: 0 0 auto;
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .amenities-grid {
        gap: 20px;
    }
    
    .amenity-item {
        width: 45%; /* 2 per row */
    }
    
    .amenity-icon {
        width: 70px;
        height: 70px;
    }
    
    .amenity-icon i {
        font-size: 2rem;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr; /* Stack images on mobile */
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-tab-btn {
        padding: 10px 10px;
        font-size: 0.75rem;
    }
    
    .section-title-gold {
        font-size: 1.8rem;
    }
    
    .sticky-header .header-content {
        padding-left: 5px;
        padding-right: 15px;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
}

/* About */
.about-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.about-section .section-title {
    display: table;
    margin: 0 auto 30px;
    text-align: center;
}

.about-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 320px;
}

.about-image {
    flex: 1 1 320px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Contact */
.contact-section {
    padding: 60px 0;
    background: #fff;
}

.contact-section .section-title {
    display: table;
    margin: 0 auto 30px;
    text-align: center;
}

.contact-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-details, .contact-form {
    flex: 1 1 320px;
}

.contact-card {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-card p {
    margin: 10px 0;
    color: #555;
}
