:root {
    --primary-color: #006837;
    --primary-light: #8dc63f;
    --secondary-color: #1a1a1a;
    --accent-color: #d4af37;
    --text-color: #333333;
    --light-text: #6a6a6a;
    --bg-light: #f4f6f3;
    --white: #ffffff;
    --font-main: 'Poppins';
    --font-heading: 'timesnewroman', serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: 50px 0;
}

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

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-light);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    box-shadow: 0 10px 20px rgba(0, 104, 55, 0.3);
    transform: translateY(-2px);
}

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

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    /* Navbar takes 75% width */
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: var(--transition);
    border-right: 1px solid #eee;
}

header.scrolled {
    padding: 8px 0;
    background-color: var(--white);
    border-bottom: 2px solid var(--primary-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* Full width of the 75% header */
    max-width: none;
    margin: 0;
    padding: 0 40px;
}

.logo img {
    height: 45px;
}

nav ul {
    display: flex;
    gap: 35px;
}

nav ul li a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--secondary-color);
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 0;
    /* Remove padding as content is centered via flex/grid */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Diagonal cut left */
    z-index: 2;
}

.hero-bg-img-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* Behind img 1 */
}

/* Dark Overlay for readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    /* Above all backgrounds */
    display: flex;
    justify-content: flex-start;
    /* Align left */
    align-items: center;
    /* Center vertically if container height allows */
    width: 100%;
    height: 100%;
    max-width: 1300px;
    /* Match standard container width */
    margin: 0 auto;
    padding: 0 50px;
    /* Add padding from edge */
}

/* Ensure info card takes approx 1/3 width */
/* Ensure info card takes approx 1/3 width but is now smaller */
.hero-content-wrapper .hero-info-card {
    max-width: 400px;
    /* Reduced from 450px */
    width: 100%;
    margin-right: auto;
    /* Push to left */
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    font-family: 'Playfair Display', serif;
    /* Changed font */
    position: relative;
    padding-bottom: 15px;
    display: table;
    /* Ensures underline matches text width if centered with margin auto, or use inline-block */
    margin-left: auto;
    margin-right: auto;
}

.overview-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
    font-family: 'Playfair Display', serif;
    /* Changed font */
    position: relative;
    padding-bottom: 15px;
    display: table;
    /* Ensures underline matches text width if centered with margin auto, or use inline-block */
    margin-left: auto;
    margin-right: auto;
}


.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    /* Width of the underline */
    height: 3px;
    background-color: #4285f4;
    /* Blue underline */
    border-radius: 2px;
}

/* Hero Info Card (New Design) */
.hero-info-card {
    margin-top: 40px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.98);
    padding: 20px;
    /* Reduced padding */
    border-radius: 15px;
    /* Slightly smaller radius */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #1e293b;
    text-align: left;
}

.hero-info-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    /* Reduced from 2.8rem */
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.hero-info-card .location-sub {
    font-size: 0.95rem;
    /* Reduced from 1.1rem */
    color: #64748b;
    margin-bottom: 20px;
    /* Reduced margin */
    font-weight: 500;
}

.info-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Reduced gap */
    margin-bottom: 20px;
    /* Reduced margin */
}

.info-bar {
    background: linear-gradient(90deg, #415876, #3083f0);
    /* Dark Slate Blue from image */
    color: white;
    padding: 12px 15px;
    /* Comfortable padding */
    border-radius: 4px;
    /* Slightly sharper corners */
    font-family: var(--font-body);
    /* Sans serif for info */
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero-price {
    text-align: center;
    margin-bottom: 15px;
    /* Reduced margin */
}

.hero-price span {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    /* Reduced from 3rem */
    font-weight: 700;
    color: #1e293b;
}

.hero-price .onwards {
    text-transform: uppercase;
    font-size: 1.1rem;
    /* Reduced from 1.5rem */
    margin-left: 8px;
}

.hero-cta-btn {
    width: 100%;
    background: #4285f4;
    /* Bright Blue */
    color: white;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-bottom: 10px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.hero-cta-btn:hover {
    background: #3367d6;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-rera {
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Fixed Sidebar Card (From Image) */
/* Layout Wrapper (3:1 Split) */
/* Layout Wrapper (3:1 Split) */
.layout-wrapper {
    display: flex;
    padding-top: 80px;
    /* Header offset */
    max-width: 100%;
}

.content-area {
    width: 75%;
    flex: 0 0 75%;
    border-right: 1px solid #eee;
}

.sidebar-area {
    width: 25%;
    flex: 0 0 25%;
    background: #fff;
    padding: 0;
    z-index: 100;
}

/* Sidebar Styling (Fixed Full Height Overlay) */
.sticky-sidebar {
    position: fixed;
    top: 0;
    /* Starts from very top */
    right: 0;
    width: 25%;
    height: 100vh;
    /* Full Viewport Height */
    background: var(--white);
    padding: 40px 25px;
    /* Added top padding */
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    z-index: 2000;
    /* Above header */
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
}

.sidebar-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    background: #4285f4;
    /* Royal Blue from image */
    color: var(--white);
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.card-btn:hover {
    background: #3367d6;
    transform: translateX(-5px);
}

.card-btn i {
    font-size: 1.2rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-align: center;
    color: var(--secondary-color);
    margin: 10px 0;
    line-height: 1.2;
}

.card-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-input {
    width: 100%;
    padding: 15px;
    background: #f1f3f4;
    /* Light grey from image */
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    color: #555;
}

.card-input::placeholder {
    color: #999;
    text-transform: uppercase;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.card-input:focus {
    outline: 2px solid #4285f4;
}

.card-check-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.8rem;
    color: var(--light-text);
    line-height: 1.3;
}

.card-check-group input {
    margin-top: 3px;
    cursor: pointer;
}

.submit-btn {
    background: linear-gradient(to right, #4285f4, #1a237e);
    /* Blue gradient from image */
    padding: 15px;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.sidebar-submit-btn:not([disabled]) {
    cursor: pointer;
}

.privacy-disclaimer {
    font-size: 0.75rem;
    color: #666;
    margin-top: 10px;
    text-align: center;
    line-height: 1.3;
}

.privacy-disclaimer a {
    color: #4285f4;
    text-decoration: underline;
}

/* Hide on Mobile */
@media (max-width: 1024px) {
    .layout-wrapper {
        flex-direction: column;
    }

    .content-area,
    .sidebar-area {
        width: 100%;
        flex: 0 0 100%;
    }

    .sidebar-area {
        order: -1;
        /* Sidebar on top on mobile/tablet or 1 for bottom */
        padding: 0;
    }

    .sticky-sidebar {
        position: relative;
        top: 0;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 1px solid #eee;
    }
}

/* Stats Section */
.stats {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item {
    border-right: 1px solid #333;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h3 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--white);
}

.stat-item p {
    font-family: var(--font-heading);
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.section-label {
    color: var(--primary-color);
    font-family: var(--font-heading);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.feature-list {
    margin-top: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;

    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--light-text);
}

.feature-list li i {
    color: var(--primary-color);
    font-weight: bold;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* Pricing Table */
.pricing-container {
    padding-top: 50px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: 10px;
    overflow: hidden;
}

.pricing-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    padding: 20px;
    text-align: center;
    letter-spacing: 1px;
}

.pricing-table td {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    font-weight: 500;
}

.pricing-table tr:hover {
    background-color: #f9f9f9;
}

.price-text {
    color: var(--primary-color);
    font-weight: 700;
}

.book-btn {
    background-color: var(--primary-light);
    padding: 8px 20px;
    border-radius: 5px;

    font-size: 1rem;
}

/* Amenities Carousel */
.slider-section {
    background-color: var(--bg-light);
}

.slider-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    scroll-behavior: smooth;
    /* Smooth scrolling */
}

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

.slide-card {
    min-width: calc((100% - 40px) / 3);
    /* 3 items per view (gap 20px * 2 = 40px) */
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    flex: 0 0 auto;
    /* Create rigid flex items */
}

@media (max-width: 768px) {
    .slide-card {
        min-width: 100%;
        /* Full width on mobile */
    }
}

.slide-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.slide-img {
    height: 200px;
    /* Reduced specific height */
    overflow: hidden;
}

.slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.slide-info {
    padding: 20px;
    text-align: center;
}

.slide-info h4 {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

/* Features Grid */
.features-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-header h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.feature-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--light-text);
    font-size: 0.95rem;
}

.feature-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Floor Plans */
.tabs-container {
    max-width: 900px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 30px;
    border: 1px solid var(--primary-color);
    background: transparent;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.tab-content {
    background: #eee;
    height: 500px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

/* Location Advantages */
.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.location-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.loc-icon {
    min-width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    color: var(--primary-color);
}

.loc-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

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

/* Developer Section */
.dev-section {
    background-color: var(--bg-light);
}

.dev-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.dev-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
}

.dev-stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
}

/* FAQ */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.accordion-header {
    padding: 20px;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.accordion-body {
    padding: 0 20px 20px;
    display: none;
    color: var(--light-text);
}

.accordion-item.active .accordion-body {
    display: block;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    /* Adjusted for 3 columns */
    gap: 40px;
    margin-bottom: 40px;
    /* Reduced margin since newsletter is gone */
}

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-col p,
.footer-col li {
    color: #888;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-bottom {
    padding-top: 30px;

    border-top: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-content p {
        margin: 0 auto 40px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #333;
        padding: 20px 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .pricing-table {
        display: block;
        overflow-x: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

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

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

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

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

@media (max-width: 768px) {
    .prev-btn {
        left: 0;
    }

    .next-btn {
        right: 0;
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    /* Changed to blue */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-top: none;
    /* Removed border */
}

.mobile-bottom-nav ul {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    margin: 0;
    list-style: none;
}

.mobile-bottom-nav li {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    /* Light border for blue background */
}

.mobile-bottom-nav li:last-child {
    border-right: none;
}

.mobile-bottom-nav a,
.mobile-bottom-nav button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: white;
    /* Changed to white for blue background */
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.8rem;
    padding: 0;
}

.mobile-bottom-nav .icon {
    font-size: 1.4rem;
    color: white;
    /* Changed to white */
}

.mobile-bottom-nav .sidebar-whatsapp-btn .icon {
    color: #25D366;
}

/* Modal Popup */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

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

.modal-content {
    background: white;
    width: 90%;
    max-width: 400px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: white;
    z-index: 10;
}

.modal-header {
    background: var(--primary-color);
    padding: 20px;
    text-align: center;
    color: white;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.modal-body {
    padding: 20px;
}

.modal-logo {
    text-align: center;
    margin-bottom: 20px;
}

.modal-logo img {
    height: 50px;
}

.modal-features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
    text-align: center;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
}

.modal-feature-item {
    font-size: 0.75rem;
    color: var(--light-text);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-feature-item p {
    margin: 5px 0 0;
}

.feature-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: var(--font-main);
    outline: none;
}

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

.robot-check-container .g-recaptcha {
    margin: 10px 0;
    min-height: 78px;
}

.modal-submit-btn {
    width: 100%;
    padding: 15px;
    background: #ccc;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    cursor: not-allowed;
    transition: var(--transition);
    letter-spacing: 1px;
}

.modal-submit-btn:not([disabled]) {
    background: var(--primary-color);
    cursor: pointer;
}

.modal-submit-btn:not([disabled]):hover {
    background: var(--primary-light);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }

    /* Hide sidebar on mobile */
    .sidebar-area {
        display: none;
    }

    /* Make content area full width on mobile */
    .content-area {
        width: 100%;
        flex: 0 0 100%;
    }
}

/* ===========================
   OFF-CANVAS MOBILE MENU
   =========================== */

/* Hamburger Menu Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

/* Off-Canvas Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Off-Canvas Sidebar */
.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-sidebar.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.mobile-menu-logo {
    height: 35px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    flex: 1;
    display: flex;
    align-items: center;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Spacing between items "one by one" */
    padding: 40px 20px;
}

.mobile-nav li {
    border-bottom: none;
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.mobile-menu-sidebar.active .mobile-nav li {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation for items one by one */
.mobile-menu-sidebar.active .mobile-nav li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-sidebar.active .mobile-nav li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu-sidebar.active .mobile-nav li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu-sidebar.active .mobile-nav li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-menu-sidebar.active .mobile-nav li:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-menu-sidebar.active .mobile-nav li:nth-child(6) {
    transition-delay: 0.6s;
}

.mobile-menu-sidebar.active .mobile-nav li:nth-child(7) {
    transition-delay: 0.7s;
}

.mobile-nav a {
    display: block;
    padding: 12px 20px;
    color: var(--secondary-color);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    /* Cleaner transparent look */
    border: none;
}

.mobile-nav a:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

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

.gallery-item {
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

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

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {

    /* Show hamburger, hide desktop nav */
    .mobile-menu-toggle {
        display: block;
    }

    .desktop-nav {
        display: none;
    }

    /* Full width header on mobile */
    header {
        width: 100% !important;
        left: 0 !important;
        border-right: none !important;
    }

    header .container {
        padding: 0 15px !important;
        width: 100% !important;
        max-width: none !important;
    }

    .mobile-menu-toggle {
        margin-left: auto;
        /* Ensure it pushes to the right if flex-grow/basis issues occur */
    }

    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        height: 250px;
    }

    /* Overview Section - Stack image below content */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .about-image {
        order: 1;
        /* Image now above text */
    }

    .about-text {
        order: 2;
        /* Text now below image */
    }

    /* Pricing Table - Make scrollable */
    .pricing-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding: 0 20px;
    }

    .pricing-table {
        min-width: 450px;
        font-size: 0.85rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px 8px;
    }

    .book-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    /* Features Grid - 1 column on mobile */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Location Section - Map below advantages */
    .location-container {
        display: flex;
        flex-direction: column;
    }

    .location-list {
        order: 2;
        /* Advantages now below map */
        margin-bottom: 30px;
    }

    .location-map {
        order: 1;
        /* Map now above advantages */
        margin-bottom: 20px;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-content-wrapper {
        padding: 0 15px;
        justify-content: center;
    }

    .hero-info-card {
        max-width: 100%;
        margin: 0;
        text-align: center;
        padding: 25px 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }

    .hero-info-card h2 {
        font-size: 1.6rem;
    }

    .hero-info-card .location-sub {
        font-size: 0.85rem;
    }

    .info-bar {
        font-size: 0.8rem;
        padding: 10px;
    }

    .hero-price span {
        font-size: 1.8rem;
    }

    .hero-price .onwards {
        font-size: 0.9rem;
    }

    .hero-cta-btn {
        padding: 12px;
        font-size: 1rem;
    }

    /* Stats Grid - 2 columns */
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid #333;
        padding: 20px 0;
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid #333 !important;
    }
}