/* CSS Custom Properties (Variables) */
:root {
    /* Primary Brand Colors (Green-Blue Theme) */
    --color-brown-dark: #474338;
    --color-brown-medium: #a39b81;
    --color-brown-light: #6B9F8A;
    --color-brown-gradient-1: #3A80A4;
    --color-brown-gradient-2: #5A8F7A;
    
    /* Text Colors */
    --color-text-primary: #333;
    --color-text-heading: #2c3e50;
    --color-text-secondary: #5a6c7d;
    --color-text-muted: #666;
    --color-text-placeholder: #999;
    --color-text-white: white;
    
    /* Background Colors */
    --color-bg-light: #f8f9fa;
    --color-bg-light-alt: #e9ecef;
    --color-bg-light-variant-1: #f1f3f4;
    --color-bg-light-variant-2: #e8eaed;
    --color-bg-white: white;
    
    /* Border Colors */
    --color-border-light: #ddd;
    --color-border-muted: #e9ecef;
    
    /* Status Colors */
    --color-error: #dc3545;
    --color-error-bg: #fff5f5;
    
    /* Transparency Values */
    --color-white-02: rgba(255, 255, 255, 0.02);
    --color-white-05: rgba(255, 255, 255, 0.05);
    --color-white-10: rgba(255, 255, 255, 0.1);
    --color-white-20: rgba(255, 255, 255, 0.2);
    --color-white-30: rgba(255, 255, 255, 0.3);
    --color-white-85: rgba(255, 255, 255, 0.85);
    --color-white-95: rgba(255, 255, 255, 0.95);
    --color-black-30: rgba(0, 0, 0, 0.3);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6B9F8A 0%, #4A90A4 50%, #2E86AB 100%);
    --gradient-primary-reverse: linear-gradient(135deg, #e4d8b3, #000001);
    --gradient-bg-light: linear-gradient(135deg, #e6dab2 0%, #e2dcbc 100%);
    --gradient-bg-variant: linear-gradient(135deg, #F0F8F5 0%, #E8F2F7 100%);
    --gradient-card: linear-gradient(135deg, #000001, #e4dbae);
    --gradient-title: linear-gradient(135deg, #272625, #e4d77d);
    --gradient-title-alt: linear-gradient(135deg, #2d2b24, #e3dbb9);
    
    /* Box Shadows */
    --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 20px 60px rgba(107, 159, 138, 0.15);
    --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.08);
    --shadow-strong-hover: 0 25px 70px rgba(107, 159, 138, 0.12);
    --shadow-button: 0 8px 25px rgba(107, 159, 138, 0.3);
    --shadow-icon: 0 8px 25px rgba(107, 159, 138, 0.2);
    
    /* Focus States */
    --focus-ring: 0 0 0 3px rgba(107, 159, 138, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--color-text-primary);
}

/* Banner Container */
.banner-container {
    position: relative;
    overflow: hidden;
}

/* Banner Images */
.banner-image {
    width: 100%;
    height: auto;
    z-index: 1;
}

.desktop-banner {
    display: block;
}

.mobile-banner {
    display: none;
}

/* Ensure banner image doesn't get too wide on large screens */
@media (min-width: 1440px) and (max-width: 1919px) {
    .banner-container {
    }
}

@media (min-width: 1920px) {
    .banner-container {
        background-size: cover;
        background-position: center 20%;
    }
}

.banner-content {
    display: flex;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    align-items: center;
    justify-content: flex-end;
    padding-right: 80px;
}















/* Form Content */
.form-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    background: var(--color-bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    width: 100%;
    max-width: 450px;
}

.form-container h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 25px;
    text-align: center;
}

/* Form Styles */
.callback-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.callback-form input,
.callback-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-border-light);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--color-bg-light);
    transition: all 0.3s ease;
}

.callback-form input:focus,
.callback-form select:focus {
    outline: none;
    border-color: var(--color-brown-medium);
    background: var(--color-bg-white);
    box-shadow: var(--focus-ring);
}

.callback-form input::placeholder {
    color: var(--color-text-placeholder);
}

.callback-form select {
    cursor: pointer;
    color: var(--color-text-muted);
}

.callback-form select option {
    padding: 10px;
}

/* Error Messages */
.error-message {
    color: var(--color-error);
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.form-group.error input,
.form-group.error select {
    border-color: var(--color-error);
    background-color: var(--color-error-bg);
}

/* Checkbox Styles */
.checkbox-group {
    margin-bottom: 25px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--color-text-muted);
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-border-light);
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background-color: var(--color-brown-medium);
    border-color: var(--color-brown-medium);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: "\2713";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-text-white);
    font-size: 12px;
    font-weight: bold;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: var(--gradient-primary-reverse);
    color: var(--color-text-white);
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: var(--gradient-card);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1020px) {
    .banner-content {
        flex-direction: column;
        min-height: auto;
        justify-content: center;
        padding: 40px;
    }
    

}

@media (max-width: 768px) {
    .desktop-banner {
        display: none;
    }
    
    .mobile-banner {
        display: block;
    }
    
    .banner-content {
        padding: 30px 20px;
    }
    
    .main-heading h2 {
        font-size: 2.5rem;
    }
    
    .logos {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .assetz-logo h1 {
        font-size: 2rem;
    }
    
    .project-logo {
        font-size: 1.5rem;
    }
    
    .form-container {
        padding: 30px 25px;
    }
    
    .banner-container {
        height: auto;
        background: none;
    }
    
    .banner-content {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: column;
        min-height: auto;
        padding: 0;
    }
    
    .banner-container {
        height: auto;
    }
    
    .banner-image {
        height: auto;
    }
    
    .form-content {
        padding: 40px 20px;
        background: var(--color-bg-white);
    }
}

@media (max-width: 480px) {
    .banner-container {
        height: auto;
    }
    
    .banner-image {
        height: auto;
    }
    
    .form-content {
        padding: 30px 15px;
    }
    
    .form-container {
        padding: 25px 20px;
    }
}

/* Trees & Tandem Sanctuary Section */
.sanctuary-section {
    background: var(--gradient-bg-light);
    padding: 70px 0;
    position: relative;
}

.sanctuary-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/><circle cx="25" cy="25" r="0.5" fill="%23000" opacity="0.01"/><circle cx="75" cy="75" r="0.8" fill="%23000" opacity="0.015"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Sanctuary Header */
.sanctuary-header {
    text-align: center;
    margin-bottom: 80px;
}

.sanctuary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -1px;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sanctuary-description {
    font-size: 13px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--color-bg-white);
    padding: 15px 30px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border-muted);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary-reverse);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    background: var(--gradient-primary-reverse);
    padding: 20px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-icon);
}

.stat-card h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-heading);
    line-height: 1.4;
    margin: 0;
}

/* Why Section */
.why-section {
    text-align: center;
}

.why-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.why-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary-reverse);
    border-radius: 2px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.why-card {
    background: var(--color-bg-white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    border: 1px solid var(--color-border-muted);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 40px;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary-reverse);
    border-radius: 2px;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong-hover);
}

.why-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-heading);
    margin-bottom: 20px;
    margin-top: 10px;
    line-height: 1.3;
}

.why-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Responsive Design for Sanctuary Section */
@media (max-width: 1020px) {
    .sanctuary-title {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .sanctuary-section {
        padding: 60px 0;
    }
    
    .sanctuary-header {
        margin-bottom: 50px;
    }
    
    .sanctuary-title {
        font-size: 2.5rem;
    }
    
    .sanctuary-description {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .stat-card {
        padding: 30px 25px;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .why-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .why-card {
        padding: 40px 30px;
    }
    
    .why-card::before {
        left: 30px;
        top: 25px;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .sanctuary-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .sanctuary-description {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 25px 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .why-title {
        font-size: 1.8rem;
    }
    
    .why-card {
        padding: 30px 25px;
    }
    
    .why-card h4 {
        font-size: 1.3rem;
    }
    
    .why-card p {
        font-size: 1rem;
    }
}

/* BHK Homes Section */
.bhk-homes-section {
    padding: 50px 0;
    position: relative;
}

.bhk-homes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="texture" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.015"/><circle cx="25" cy="25" r="0.5" fill="%23000" opacity="0.008"/><circle cx="75" cy="75" r="0.8" fill="%23000" opacity="0.012"/></pattern></defs><rect width="100%" height="100%" fill="url(%23texture)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

/* BHK Homes Header */
.bhk-homes-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.bhk-homes-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-brown-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
    background: var(--gradient-title-alt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bhk-homes-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* BHK Slider Container */
.bhk-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 1;
    overflow: hidden;
}

.bhk-slider-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.bhk-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 40px;
}

.bhk-slider-track .bhk-type-card {
    flex: 0 0 calc(50% - 20px);
    min-width: 0;
}

.bhk-type-card {
    color: var(--color-text-white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: var(--gradient-card);
}

.bhk-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--color-white-05) 0%, var(--color-white-02) 50%, rgba(0,0,0,0.02) 100%);
    pointer-events: none;
}

.bhk-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(90, 107, 71, 0.25);
}

.bhk-type-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--color-text-white);
    position: relative;
    z-index: 2;
    padding-bottom: 15px;
}

.bhk-type-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-white-30);
    border-radius: 2px;
}

/* BHK Specifications */
.bhk-specs {
    position: relative;
    z-index: 2;
}

.spec-item {
    margin-bottom: 35px;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.spec-label {
    font-size: 0.95rem;
    color: var(--color-white-85);
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-divider {
    width: 100%;
    height: 1px;
    background: var(--color-white-20);
    margin: 30px 0;
}

/* BHK Request Floor Plan Button */
.bhk-request-floor-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 30px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.bhk-request-floor-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-brown-dark);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.bhk-request-floor-btn:active {
    transform: translateY(0);
}

/* BHK Slider Navigation */
.bhk-slider-nav {
    background: var(--color-brown-dark);
    border: none;
    width: 50px;
    height: 50px;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.bhk-slider-nav:hover {
    background: var(--color-brown-medium);
    transform: scale(1.1);
}


/* BHK Slider Controls Container */
.bhk-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

/* BHK Slider Pagination */
.bhk-slider-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.bhk-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-brown-medium);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bhk-slider-dot.active,
.bhk-slider-dot:hover {
    background: var(--color-brown-medium);
    transform: scale(1.2);
}

/* Responsive Design for BHK Homes Section */
@media (max-width: 1020px) {
    .bhk-homes-section {
        padding: 80px 0;
    }
    
    .bhk-homes-title {
        font-size: 2.4rem;
    }
    
    .bhk-slider-track {
        gap: 30px;
    }
    
    .bhk-type-card {
        padding: 40px 35px;
    }
    
    .bhk-slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .bhk-homes-section {
        padding: 60px 0;
    }
    
    .bhk-homes-header {
        margin-bottom: 50px;
    }
    
    .bhk-homes-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .bhk-homes-subtitle {
        font-size: 1.1rem;
    }
    
    .bhk-slider-track {
        gap: 0;
    }
    
    .bhk-slider-track .bhk-type-card {
        flex: 0 0 100%;
        max-width: 100%;
        margin-right: 0;
    }
    
    .bhk-type-card {
        padding: 35px 30px;
    }
    
    .bhk-type-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .spec-value {
        font-size: 1.4rem;
    }
    
    .spec-label {
        font-size: 0.9rem;
    }
    
    .bhk-request-floor-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        margin-top: 25px;
    }
    
    .bhk-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .bhk-homes-section {
        padding: 50px 0;
    }
    
    .bhk-homes-title {
        font-size: 1.8rem;
    }
    
    .bhk-homes-subtitle {
        font-size: 1rem;
    }
    
    .bhk-slider-track {
        gap: 0;
    }
    
    .bhk-slider-track .bhk-type-card {
        flex: 0 0 100%;
        max-width: 100%;
        margin-right: 0;
    }
    
    .bhk-type-card {
        padding: 30px 25px;
    }
    
    .bhk-type-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .spec-value {
        font-size: 1.2rem;
    }
    
    .spec-label {
        font-size: 0.85rem;
    }
    
    .spec-divider {
        margin: 25px 0;
    }
    
    .bhk-request-floor-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
        margin-top: 20px;
    }
    
    .bhk-slider-nav {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

/* Floor Plan Section */
.floor-plan-section {
    background: var(--gradient-bg-light);
    padding: 50px 0;
    position: relative;
}

.floor-plan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="floorTexture" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/><circle cx="25" cy="25" r="0.5" fill="%23000" opacity="0.01"/><circle cx="75" cy="75" r="0.8" fill="%23000" opacity="0.015"/></pattern></defs><rect width="100%" height="100%" fill="url(%23floorTexture)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

/* Floor Plan Header */
.floor-plan-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.floor-plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-brown-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floor Plan Slider Container */
.floor-plan-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 1;
    overflow: hidden;
}

.floor-plan-slider-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.floor-plan-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 40px;
}

.floor-plan-slider-track .floor-plan-card {
    flex: 0 0 calc(50% - 20px);
    min-width: 0;
}

.floor-plan-card {
    background: var(--color-bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid var(--color-border-muted);
    position: relative;
}

.floor-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary-reverse);
}

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

.floor-plan-image {
    width: 100%;
    height: 340px;
    position: relative;
    overflow: hidden;
    background: var(--color-bg-light);
}

.floor-plan-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.floor-plan-content {
    padding: 30px;
    text-align: center;
}

.floor-plan-type {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-heading);
    margin-bottom: 25px;
}

.request-floor-btn {
    background: var(--gradient-primary-reverse);
    color: var(--color-text-white);
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    min-width: 180px;
}

.request-floor-btn:hover {
    background: var(--gradient-card);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button);
}

.request-floor-btn:active {
    transform: translateY(0);
}

/* Floor Plan Slider Navigation */
.floor-plan-slider-nav {
      background: var(--color-brown-dark);
    border: none;
    width: 50px;
    height: 50px;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.floor-plan-slider-nav:hover {
    background: var(--color-brown-medium);
    transform: scale(1.1);
}

/* Floor Plan Slider Controls Container */
.floor-plan-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

/* Floor Plan Slider Pagination */
.floor-plan-slider-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.floor-plan-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-brown-medium);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floor-plan-slider-dot.active,
.floor-plan-slider-dot:hover {
    background: var(--color-brown-medium);
    transform: scale(1.2);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--color-bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid var(--color-border-light);
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text-heading);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--color-brown-dark);
}

.modal-form {
    padding: 30px;
}

.modal-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.modal-form input {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-border-light);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--color-bg-light);
    transition: all 0.3s ease;
}

.modal-form input:focus {
    outline: none;
    border-color: var(--color-brown-medium);
    background: var(--color-bg-white);
    box-shadow: var(--focus-ring);
}

.modal-form input::placeholder {
    color: var(--color-text-placeholder);
}



.modal-submit-btn {
    width: 100%;
    background: var(--gradient-primary-reverse);
    color: var(--color-text-white);
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 10px;
}

.modal-submit-btn:hover {
    background: var(--gradient-card);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button);
}

.modal-submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design for Floor Plan Section */
@media (max-width: 1020px) {
    .floor-plan-section {
        padding: 80px 0;
    }
    
    .floor-plan-title {
        font-size: 2.4rem;
    }
    
    .floor-plan-slider-track {
        gap: 30px;
    }
    
    .floor-plan-image {
        height: 220px;
    }
    
    .floor-plan-slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .floor-plan-section {
        padding: 60px 0;
    }
    
    .floor-plan-header {
        margin-bottom: 50px;
    }
    
    .floor-plan-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .floor-plan-slider-track {
        gap: 0;
    }
    
    .floor-plan-slider-track .floor-plan-card {
        flex: 0 0 100%;
        max-width: 100%;
        margin-right: 0;
    }
    
    .floor-plan-image {
        height: 200px;
    }
    
    .floor-plan-content {
        padding: 25px;
    }
    
    .floor-plan-type {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .request-floor-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        min-width: 160px;
    }
    
    .floor-plan-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .modal-container {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px 25px 15px;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .floor-plan-section {
        padding: 50px 0;
    }
    
    .floor-plan-title {
        font-size: 1.8rem;
    }
    
    .floor-plan-slider-track {
        gap: 0;
    }
    
    .floor-plan-slider-track .floor-plan-card {
        flex: 0 0 100%;
        max-width: 100%;
        margin-right: 0;
    }
    
    .floor-plan-image {
        height: 180px;
    }
    
    .floor-plan-content {
        padding: 20px;
    }
    
    .floor-plan-type {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .request-floor-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: 140px;
    }
    
    .floor-plan-slider-nav {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .modal-container {
        width: 98%;
        margin: 10px;
    }
    
    .modal-header {
        padding: 15px 20px 10px;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    .modal-form {
        padding: 20px;
    }
    
    .modal-form input {
        padding: 12px;
    }
}

/* Connectivity & Convenience Section */
.connectivity-section {
    background: var(--gradient-bg-variant);
    padding: 50px 0;
    position: relative;
}

.connectivity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="connectivityTexture" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.015"/><circle cx="25" cy="25" r="0.5" fill="%23000" opacity="0.008"/><circle cx="75" cy="75" r="0.8" fill="%23000" opacity="0.012"/></pattern></defs><rect width="100%" height="100%" fill="url(%23connectivityTexture)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

/* Connectivity Header */
.connectivity-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.connectivity-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-brown-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
    background: var(--gradient-title-alt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.connectivity-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Connectivity Content Layout */
.connectivity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* Map Container */
.map-container {
    background: var(--color-bg-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border-muted);
    transition: all 0.3s ease;
    /*max-height: 570px;*/
}

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

.map-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--color-bg-light);
}

.map-image img {
    width: 100%;
    height: auto;
    display: block;
}

.map-disclaimer {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
    margin: 0;
    font-style: italic;
}

/* Info Accordion */
.accordion-item {
    margin-bottom: 10px;
    background: var(--color-bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border-muted);
}

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

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    padding: 20px;
}

.accordion-header:hover {
    color: var(--color-brown-dark);
}

.accordion-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-heading);
    margin: 0;
    letter-spacing: 0.5px;
}

.accordion-icon {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-brown-medium);
    transition: transform 0.3s ease;
    width: 20px;
    text-align: center;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px 0 20px;
}

.accordion-content.active {
    max-height: 600px;
}

/* Location List */
.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}

.location-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-list li:last-child {
    border-bottom: none;
}

.location-list li:hover {
    border-radius: 6px;
}

.location-name {
    font-size: 0.95rem;
    color: var(--color-text-primary);
    font-weight: 400;
}

.location-time {
    font-size: 0.9rem;
    color: var(--color-brown-medium);
    font-weight: 600;
    min-width: 60px;
    text-align: right;
}

/* Download Brochure Container */
.download-brochure-container {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
}

.download-brochure-btn {
    background: var(--gradient-primary-reverse);
    color: var(--color-text-white);
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    min-width: 200px;
    box-shadow: var(--shadow-button);
}

.download-brochure-btn:hover {
    background: var(--gradient-card);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button);
}

.download-brochure-btn:active {
    transform: translateY(0);
}

/* Responsive Design for Connectivity Section */
@media (max-width: 1020px) {
    .connectivity-section {
        padding: 80px 0;
    }
    
    .connectivity-title {
        font-size: 2.4rem;
    }
    
    .connectivity-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-container,
    .info-accordion {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .connectivity-section {
        padding: 60px 0;
    }
    
    .connectivity-header {
        margin-bottom: 50px;
    }
    
    .connectivity-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .connectivity-subtitle {
        font-size: 1.1rem;
    }
    
    .connectivity-content {
        gap: 30px;
    }
    
    .map-container,
    .info-accordion {
        padding: 20px;
        border-radius: 16px;
    }
    
    .accordion-header {
        padding: 15px;
    }
    
    .accordion-header h3 {
        font-size: 1rem;
    }
    
    .location-list li {
        padding: 10px 0;
    }
    
    .location-name {
        font-size: 0.9rem;
    }
    
    .location-time {
        font-size: 0.85rem;
        min-width: 50px;
    }
    
    .download-brochure-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .connectivity-section {
        padding: 50px 0;
    }
    
    .connectivity-title {
        font-size: 1.8rem;
    }
    
    .connectivity-subtitle {
        font-size: 1rem;
    }
    
    .connectivity-content {
        gap: 25px;
    }
    
    .map-container,
    .info-accordion {
        padding: 15px;
        border-radius: 12px;
    }
    
    .accordion-header {
        padding: 12px;
    }
    
    .accordion-header h3 {
        font-size: 0.95rem;
    }
    
    .location-list li {
        padding: 8px 0;
    }
    
    .location-name {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .location-time {
        font-size: 0.8rem;
        min-width: 45px;
    }
    
    .download-brochure-container {
        margin-top: 25px;
        padding-top: 25px;
    }
    
    .download-brochure-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
        min-width: 160px;
    }
}

/* Request for a Site Visit Section */
.site-visit-section {
    background: var(--color-bg-white);
    padding: 50px 0;
    position: relative;
}

.site-visit-header {
    text-align: center;
    margin-bottom: 60px;
}

.site-visit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin: 0;
    letter-spacing: -0.5px;
}

/* Site Visit Form */
.site-visit-form {
    margin: 0 auto;
    background: var(--color-bg-light);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border-muted);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 25px;
    margin-bottom: 15px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.site-visit-form .form-group {
    position: relative;
}

.site-visit-form input {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--color-bg-white);
    transition: all 0.3s ease;
}

.site-visit-form input:focus {
    outline: none;
    border-color: var(--color-brown-medium);
    box-shadow: var(--focus-ring);
}

.site-visit-form input::placeholder {
    color: var(--color-text-placeholder);
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    align-items: center;
}

.radio-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--color-text-primary);
    line-height: 1.4;
}

.radio-container input[type="radio"] {
    display: none;
}

.radio-checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border-light);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: var(--color-bg-white);
}

.radio-container input[type="radio"]:checked + .radio-checkmark {
    border-color: var(--color-brown-medium);
    background: var(--color-brown-medium);
}

.radio-container input[type="radio"]:checked + .radio-checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-text-white);
}

/* Form Submit Row */
.form-submit-row {
    text-align: center;
    margin-top: 15px;
}

.site-visit-submit-btn {
    background: var(--gradient-primary-reverse);
    color: var(--color-text-white);
    border: none;
    padding: 18px 60px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    min-width: 200px;
    box-shadow: var(--shadow-button);
}

.site-visit-submit-btn:hover {
    background: var(--gradient-card);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button);
}

.site-visit-submit-btn:active {
    transform: translateY(0);
}

/* About Assetz Property Group Section */
.about-section {
    background: var(--gradient-bg-light);
    padding: 50px 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="aboutTexture" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.01"/><circle cx="25" cy="25" r="0.5" fill="%23000" opacity="0.005"/></pattern></defs><rect width="100%" height="100%" fill="url(%23aboutTexture)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.about-header {
    text-align: center;
    margin-bottom: 46px;
    position: relative;
    z-index: 1;
}

.about-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-brown-dark);
    margin: 0;
    letter-spacing: -0.5px;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-paragraph {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 15px;
    text-align: justify;
}

.about-paragraph:last-child {
    margin-bottom: 0;
}

/* Footer Section */
.footer-section {
    background: var(--color-text-muted);
    color: var(--color-text-white);
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.rera-info {
    margin-bottom: 30px;
}

.rera-info p {
    font-size: 1rem;
    margin: 0;
    color: var(--color-text-white);
}

.disclaimer {
    margin-bottom: 20px;
}

.disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-align: justify;
}

.footer-links {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-link {
    color: var(--color-text-white);
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--color-brown-light);
}

/* Responsive Design for Final Sections */
@media (max-width: 1020px) {
    .site-visit-section,
    .about-section {
        padding: 60px 0;
    }
    
    .site-visit-title,
    .about-title {
        font-size: 2rem;
    }
    
    .site-visit-form {
        padding: 40px;
    }
    
    .form-row {
        gap: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .site-visit-section,
    .about-section {
        padding: 50px 0;
    }
    
    .site-visit-title,
    .about-title {
        font-size: 1.8rem;
    }
    
    .site-visit-form {
        padding: 30px;
        border-radius: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .site-visit-form input {
        padding: 12px 15px;
    }
    
    .form-submit-row {
        margin-top: 30px;
    }
    
    .site-visit-submit-btn {
        padding: 15px 40px;
        font-size: 1rem;
    }
    
    .about-paragraph {
        font-size: 1rem;
        text-align: left;
    }
    
    .disclaimer p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .site-visit-section,
    .about-section {
        padding: 40px 0;
    }
    
    .site-visit-title,
    .about-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .site-visit-form {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .site-visit-form input {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .radio-container {
        font-size: 0.9rem;
    }
    
    .site-visit-submit-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
        min-width: 180px;
    }
    
    .about-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .footer-section {
        padding: 30px 0;
    }
    
    .rera-info p {
        font-size: 0.9rem;
    }
    
    .disclaimer p {
        font-size: 0.8rem;
    }
}

/* ================ AMENITIES SECTION ================ */
.amenities-section {
    padding: 50px 0;
    background: var(--color-bg-white);
}

.amenities-header {
    text-align: center;
    margin-bottom: 60px;
}

.amenities-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 15px;
    background: var(--gradient-title);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.amenities-subtitle {
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-weight: 400;
}

.amenities-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Left Side - Amenities List */
.amenities-list-container {
    position: relative;
}

.amenities-list {
    background: var(--gradient-card);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    max-height: 415px;
    overflow-y: auto;
}

.amenities-list::-webkit-scrollbar {
    width: 6px;
}

.amenities-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.amenities-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.amenities-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.amenity-item {
    color: white;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.amenity-item:hover {
    color: #a8d5a8;
    padding-left: 10px;
    transform: translateX(5px);
}

/* Right Side - Image Grid */
.amenities-gallery {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 10px;
    background: var(--color-bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}

.grid-item {
    position: relative;
    aspect-ratio: 3/2;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.grid-item:hover .grid-image {
    transform: scale(1.1);
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 15px 10px 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid-item:hover .grid-overlay {
    opacity: 1;
}

.grid-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

.grid-more {
    position: relative;
    aspect-ratio: 3/2;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-brown-dark) 0%, var(--color-brown-medium) 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.more-overlay {
    text-align: center;
    color: white;
}

.more-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.view-all {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

/* ================ MODAL GALLERY ================ */
.modal-gallery {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-gallery.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--color-bg-white);
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-strong);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border-light);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-heading);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--color-brown-dark);
}

.modal-carousel-container {
    position: relative;
    height: 600px;
    background: var(--color-text-primary);
}

.modal-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.modal-carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.modal-carousel-item.active {
    opacity: 1;
}

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

.modal-image-overlay {
    position: absolute;
    bottom: -24px;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 30px 25px;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

/* Modal Carousel Navigation */
.modal-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--color-brown-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    z-index: 10;
}

.modal-carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-card-hover);
}

.modal-carousel-nav.prev {
    left: 30px;
}

.modal-carousel-nav.next {
    right: 30px;
}

/* Modal Carousel Indicators */
.modal-carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 20px;
    border-radius: 25px;
}

.modal-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-indicator.active,
.modal-indicator:hover {
    background: white;
    transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 1020px) {
    .amenities-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .amenities-list {
        max-height: 300px;
    }
    
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .modal-carousel-container {
        height: 500px;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-carousel-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .modal-carousel-nav.prev {
        left: 20px;
    }
    
    .modal-carousel-nav.next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .amenities-section {
        padding: 60px 0;
    }
    
    .amenities-title {
        font-size: 2rem;
    }
    
    .amenities-subtitle {
        font-size: 1rem;
    }
    
    .amenities-list {
        padding: 30px 20px;
        max-height: 250px;
    }
    
    .amenity-item {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 8px;
    }
    
    .grid-title {
        font-size: 0.8rem;
    }
    
    .modal-carousel-container {
        height: 400px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .modal-carousel-nav.prev {
        left: 15px;
    }
    
    .modal-carousel-nav.next {
        right: 15px;
    }
    
    .modal-image-overlay {
        font-size: 1.1rem;
        padding: 25px 20px 15px;
    }
    
    .modal-carousel-indicators {
        bottom: 20px;
        padding: 10px 15px;
    }
    
    .modal-indicator {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .amenities-section {
        padding: 40px 0;
    }
    
    .amenities-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .amenities-subtitle {
        font-size: 0.9rem;
    }
    
    .amenities-header {
        margin-bottom: 40px;
    }
    
    .amenities-list {
        padding: 25px 15px;
        max-height: 200px;
    }
    
    .amenity-item {
        font-size: 0.85rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 6px;
    }
    
    .more-text {
        font-size: 1rem;
    }
    
    .view-all {
        font-size: 0.8rem;
    }
    
    .modal-content {
        width: 98%;
        max-height: 85vh;
    }
    
    .modal-carousel-container {
        height: 300px;
    }
    
    .modal-header {
        padding: 12px 15px;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .modal-carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .modal-carousel-nav.prev {
        left: 10px;
    }
    
    .modal-carousel-nav.next {
        right: 10px;
    }
    
    .modal-image-overlay {
        font-size: 1rem;
        padding: 20px 15px 12px;
    }
    
    .modal-carousel-indicators {
        bottom: 15px;
        padding: 8px 12px;
        gap: 8px;
    }
    
    .modal-indicator {
        width: 10px;
        height: 10px;
    }
}

/* ================ SCROLL TRIGGERED MODAL ================ */
.scroll-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.scroll-modal-container {
    width: 95%;
    max-width: 1100px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.scroll-modal-overlay.active .scroll-modal-container {
    transform: scale(1);
}

.scroll-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    min-height: 600px;
    position: relative;
}

/* Left side - Form */
.scroll-modal-form-section {
    background: var(--color-bg-white);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.scroll-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.scroll-modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-brown-dark);
    margin: 0;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.scroll-modal-close {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #ffffff;
    font-size: 2rem;
    color: #ffffff;
    padding: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: absolute;
    right: 6px;
    top: 4px;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.3);
}

.scroll-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Ensure close button is always visible */
.scroll-modal-close:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
    background: rgba(0, 0, 0, 0.9);
}

/* Add a subtle animation for better visibility */
@keyframes closeButtonPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.scroll-modal-overlay.active .scroll-modal-close {
    animation: closeButtonPulse 2s ease-in-out infinite;
}

.scroll-modal-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    font-weight: 500;
}

.scroll-modal-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.scroll-modal-form input,
.scroll-modal-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--color-bg-light);
    transition: all 0.3s ease;
}

.scroll-modal-form input:focus,
.scroll-modal-form select:focus {
    outline: none;
    border-color: var(--color-brown-medium);
    background: var(--color-bg-white);
    box-shadow: var(--focus-ring);
}

.scroll-modal-form input::placeholder {
    color: var(--color-text-placeholder);
}

.scroll-modal-form select {
    cursor: pointer;
    color: var(--color-text-muted);
}

.scroll-modal-submit-btn {
    width: 100%;
    background: var(--gradient-primary-reverse);
    color: var(--color-text-white);
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 10px;
}

.scroll-modal-submit-btn:hover {
    background: var(--gradient-card);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button);
}

.scroll-modal-submit-btn:active {
    transform: translateY(0);
}

/* Right side - Image */
.scroll-modal-image-section {
    position: relative;
    overflow: hidden;
    justify-self: right;
}

.scroll-modal-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.scroll-modal-image {
    width: 94%;
    height: 100%;
    object-fit: cover;
    display: block;
    justify-self: right;
}



/* Responsive Design for Scroll Modal */
@media (max-width: 1020px) {
    .scroll-modal-container {
        width: 98%;
        max-height: 95vh;
    }
    
    .scroll-modal-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .scroll-modal-image-section {
        display: none; /* Hide image on tablet and below */
    }
    
    .scroll-modal-form-section {
        padding: 30px;
    }
    
    .scroll-modal-title {
        font-size: 1.6rem;
    }
    
    .scroll-modal-close {
        right: 20px;
        top: 20px;
    }
}

@media (max-width: 768px) {
    .scroll-modal-container {
        width: 95%;
        margin: 20px;
    }
    
    .scroll-modal-form-section {
        padding: 25px 20px;
    }
    
    .scroll-modal-title {
        font-size: 1.4rem;
    }
    
    .scroll-modal-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .scroll-modal-form input,
    .scroll-modal-form select {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .scroll-modal-submit-btn {
        padding: 14px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .scroll-modal-container {
        width: 100%;
        margin: 10px;
        max-height: 98vh;
    }
    
    .scroll-modal-content {
        border-radius: 12px;
    }
    
    .scroll-modal-form-section {
        padding: 20px 15px;
    }
    
    .scroll-modal-header {
        margin-bottom: 15px;
    }
    
    .scroll-modal-title {
        font-size: 1.2rem;
    }
    
    .scroll-modal-close {
        right: 10px;
        top: 10px;
        background: rgba(0, 0, 0, 0.8);
        
        /* Ensure minimum touch target size */
        
        /* Ensure it's always on top */
        z-index: 1001;
    }
    
    .scroll-modal-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .scroll-modal-form .form-group {
        margin-bottom: 15px;
    }
    
    .scroll-modal-form input,
    .scroll-modal-form select {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .scroll-modal-submit-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .scroll-modal-close {
        right: 8px;
        top: 8px;
    }
}

/* ================ FIXED SITE VISIT BUTTON ================ */
.fixed-site-visit-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary-reverse);
    color: var(--color-text-white);
    border: none;
    padding: 20px 15px;
    border-radius: 8px 0 0 8px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    z-index: 999;
    box-shadow: var(--shadow-button);
    min-height: 200px;
    white-space: nowrap;
}

.fixed-site-visit-btn:hover {
    background: var(--gradient-card);
    transform: translateY(-50%) translateX(-5px);
    box-shadow: var(--shadow-strong);
}

.fixed-site-visit-btn:active {
    transform: translateY(-50%) translateX(0);
}

/* Responsive Design for Fixed Button */
@media (max-width: 768px) {
    .fixed-site-visit-btn {
        font-size: 0.8rem;
        padding: 15px 12px;
        min-height: 150px;
    }
}

@media (max-width: 480px) {
    .fixed-site-visit-btn {
        font-size: 0.75rem;
        padding: 12px 10px;
        min-height: 120px;
    }
}