/* Modern CSS Variables */
:root {
    --primary-color: #1D4D4F;
    --secondary-color: #77AB59;
    --accent-color: #D9C5B2;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b7280;
    --background-light: #fafafa;
    --background-white: #ffffff;
    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 16px;
}

/* Highlight Background Class */
.highlight-bg {
    background: linear-gradient(120deg, #fbbf24 0%, #f59e0b 100%);
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    word-wrap: break-word;
    hyphens: auto;
}

h1 {
    font-size: clamp(2rem, 8vw, 4rem);
}

h2 {
    font-size: clamp(1.5rem, 6vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.25rem, 4vw, 2rem);
    margin-bottom: 0.75rem;
}

h4 {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    line-height: 1.7;
    word-wrap: break-word;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(0.75rem, 3vw, 1rem);
}

.section {
    padding: clamp(2.5rem, 8vw, 5rem) 0;
    position: relative;
    overflow-x: hidden;
}

.section-alt {
    background-color: var(--background-light);
}

.section-dark {
    background-color: var(--primary-color);
    color: white;
}

.section-dark h2,
.section-dark h3,
.section-dark p {
    color: white;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 6vw, 4rem);
}

.section-subtitle {
    font-size: clamp(1rem, 3vw, 1.125rem);
    color: var(--text-light);
    margin-top: 0.5rem;
    font-weight: 400;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: clamp(0.75rem, 2.5vw, 1rem) clamp(1rem, 4vw, 2rem);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    min-height: 44px;
    width: auto;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

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

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

.btn-white {
    background-color: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Top Notification Strip */
.top-notification-strip {
    width: 100%;
    background: linear-gradient(135deg, #1D4D4F 0%, #77AB59 100%);
    position: relative;
    z-index: 10000;
    overflow: hidden;
    display: block;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    min-height: 40px;
}

.notification-marquee {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    height: 20px;
}

.marquee-content {
    display: flex;
    position: absolute;
    width: max-content;
    animation: marquee 70s linear infinite;
}

.marquee-content span {
    white-space: nowrap;
    padding-right: 30px;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    font-weight: 500;
    color: white;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.notification-action {
    margin-right: 10px;
    flex-shrink: 0;
}

.notification-button {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 6px 16px;
    font-weight: bold;
    cursor: pointer;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    border-radius: 20px;
    transition: all 0.2s;
}

.notification-button:hover {
    background-color: #f2f2f2;
    transform: scale(1.05);
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: clamp(1rem, 3vw, 1.5rem);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 24px;
    min-height: 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: var(--transition);
    padding: clamp(0.5rem, 2vw, 1rem) 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

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

.logo-img {
    height: clamp(35px, 6vw, 50px);
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: clamp(0.875rem, 2.5vw, 0.95rem);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    cursor: pointer;
    color: var(--primary-color);
    position: relative;
    z-index: 10001;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
}

.mobile-menu-btn .fa-times {
    display: none;
}

.mobile-menu-open .mobile-menu-btn .fa-bars {
    display: none;
}

.mobile-menu-open .mobile-menu-btn .fa-times {
    display: inline-block;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #000;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: white;
    width: 100%;
margin-top: 50px
}

.hero-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: clamp(0.375rem, 2vw, 0.5rem) clamp(0.75rem, 3vw, 1rem);
    border-radius: 50px;
    font-size: clamp(0.75rem, 2.5vw, 0.875rem);
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title {
    color: white;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.title-main {
    display: block;
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
}

.title-sub {
    display: block;
    font-size: clamp(1rem, 5vw, 2.5rem);
    font-weight: 400;
    color: var(--secondary-color);
    margin-top: 0.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: clamp(0.75rem, 3vw, 1rem);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-item i {
    color: var(--secondary-color);
    font-size: clamp(1rem, 3vw, 1.25rem);
    flex-shrink: 0;
}

.highlight-item span {
    font-weight: 500;
    font-size: clamp(0.875rem, 2.5vw, 0.95rem);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

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

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
}

.content-card {
    background-color: white;
    padding: clamp(1.5rem, 5vw, 3rem);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.feature-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: clamp(0.75rem, 3vw, 1.5rem);
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

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

.stat-number {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    color: var(--text-light);
    margin-top: 0.25rem;
}

.image-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-card img {
    width: 100%;
    height: clamp(300px, 50vw, 500px);
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

.play-btn {
    width: clamp(60px, 12vw, 80px);
    height: clamp(60px, 12vw, 80px);
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: none;
    color: white;
    font-size: clamp(1.5rem, 4vw, 2rem);
    cursor: pointer;
    transition: var(--transition);
}

.play-btn:hover {
    transform: scale(1.1);
    background-color: var(--primary-color);
}

/* Configurations Section */
.config-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.config-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(0.75rem, 3vw, 1rem) clamp(1rem, 4vw, 2rem);
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    min-height: 44px;
}

.config-tab.active {
    background-color: var(--primary-color);
    color: white;
}

.config-tab:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.config-content {
    display: none;
}

.config-content.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

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

/* Villa Cards */
.villa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.villa-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

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

.villa-card.featured {
    border: 3px solid var(--secondary-color);
}

.villa-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
}

.villa-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: clamp(0.7rem, 2vw, 0.75rem);
    font-weight: 600;
    background-color: var(--secondary-color);
    color: white;
}

.villa-badge.premium {
    background-color: #f59e0b;
}

.villa-image {
    position: relative;
    height: clamp(250px, 40vw, 300px);
    overflow: hidden;
}

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

.villa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.villa-image:hover .villa-overlay {
    opacity: 1;
}

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

.villa-features {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    color: var(--text-medium);
}

.feature-item i {
    color: var(--secondary-color);
    width: 16px;
    flex-shrink: 0;
}

.villa-card .btn-primary {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    justify-content: center;
}

/* Plot Cards */
.plots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.plot-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 2px solid transparent;
}

.plot-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-xl);
}

.plot-size {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.plot-area {
    font-size: clamp(1rem, 3vw, 1.125rem);
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.plot-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.plot-features li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    position: relative;
}

.plot-features li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.plots-cta {
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}

.plots-cta h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.plots-cta p {
    margin-bottom: 2rem;
    color: var(--text-medium);
}

/* Amenities Section */
.amenities-showcase {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.amenity-categories {
    display: flex;
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-light);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.category {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(1rem, 3vw, 1.5rem) clamp(0.5rem, 2vw, 1rem);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.category.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-bottom-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.category.active i {
    color: white;
}

.category.active span {
    color: white;
}

.category i {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.category span {
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.amenity-content {
    padding: clamp(1.5rem, 5vw, 3rem);
}

.amenity-group {
    display: none;
}

.amenity-group.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
}

.amenity-card {
    text-align: center;
    padding: clamp(1rem, 3vw, 2rem) clamp(0.75rem, 2vw, 1rem);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.amenity-icon {
    width: clamp(60px, 12vw, 80px);
    height: clamp(60px, 12vw, 80px);
    margin: 0 auto 1rem;
    border-radius: 50%;
    background-color: rgba(29, 77, 79, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity-icon i {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--primary-color);
}

.amenity-card h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: clamp(1rem, 3vw, 1.25rem);
}

.amenity-card p {
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    color: var(--text-light);
}

.amenities-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Location Section */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: start;
}

.location-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: clamp(1rem, 3vw, 1.5rem);
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: white;
}

.highlight-info h4 {
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.highlight-info p {
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    color: var(--text-medium);
    margin: 0;
}

.connectivity-info {
    background-color: white;
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    background-color: var(--background-light);
}

.info-item i {
    color: var(--secondary-color);
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    width: 20px;
    flex-shrink: 0;
}

.info-item h5 {
    margin: 0 0 0.25rem;
    color: var(--primary-color);
    font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.info-item p {
    margin: 0;
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    color: var(--text-medium);
}

.map-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 2rem;
}

.map-container img {
    width: 100%;
    height: clamp(300px, 50vw, 400px);
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.map-container:hover .map-overlay {
    opacity: 1;
}

.map-btn {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: clamp(0.75rem, 3vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
}

.map-btn:hover {
    transform: scale(1.05);
}

.nearby-facilities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.facility-category {
    background-color: white;
    padding: clamp(1rem, 3vw, 1.5rem);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.facility-category h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: clamp(0.95rem, 2.5vw, 1rem);
}

.facility-category ul {
    list-style: none;
}

.facility-category li {
    padding: 0.5rem 0;
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-light);
}

.facility-category li:last-child {
    border-bottom: none;
}

/* Gallery Section */
.gallery-container {
    position: relative;
}

.desktop-gallery {
    display: block;
}

.mobile-gallery {
    display: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item.large {
    grid-row: span 2;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

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

.overlay-content h4 {
    margin-bottom: 0.5rem;
    color: white;
    font-size: clamp(1rem, 3vw, 1.25rem);
}

.overlay-content p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.8rem, 2vw, 0.875rem);
}

.overlay-content i {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--secondary-color);
}

.gallery-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Mobile Gallery Carousel */
.gallery-carousel {
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
}

.carousel-slide img {
    width: 100%;
    height: clamp(250px, 50vw, 300px);
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-light);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--secondary-color);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border: 3px solid var(--secondary-color);
}

.pricing-header {
    padding: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.pricing-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-badge.premium {
    background-color: #f59e0b;
}

.pricing-header h3 {
    margin-bottom: 0.5rem;
    color: white;
    font-size: clamp(1.25rem, 4vw, 1.5rem);
}

.pricing-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.875rem, 2.5vw, 1rem);
}

.pricing-body {
    padding: clamp(1.5rem, 4vw, 2rem);
}

.price-display {
    text-align: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--text-medium);
    vertical-align: top;
}

.amount {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.pricing-features {
    display: grid;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature i {
    color: var(--secondary-color);
    width: 16px;
    flex-shrink: 0;
}

.feature span {
    color: var(--text-medium);
    font-size: clamp(0.875rem, 2.5vw, 1rem);
}

.cost-sheet-preview {
    width: 100%;
    height: clamp(150px, 30vw, 200px);
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.pricing-footer {
    padding: 0 clamp(1.5rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2rem);
}

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

.pricing-disclaimer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
}

.pricing-disclaimer p {
    margin: 0;
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: clamp(2rem, 6vw, 4rem);
}

.developer-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.values-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: clamp(1rem, 3vw, 1.5rem);
    background-color: var(--background-light);
    border-radius: var(--border-radius);
}

.value-icon {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: white;
}

.value-content h4 {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
    font-size: clamp(1rem, 3vw, 1.25rem);
}

.value-content p {
    margin: 0;
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    color: var(--text-medium);
}

.contact-card {
    background-color: white;
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.contact-info {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    color: white;
}

.contact-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: clamp(1rem, 3vw, 1.25rem);
}

.contact-content p {
    margin: 0;
    color: var(--text-medium);
    font-size: clamp(0.875rem, 2.5vw, 1rem);
}

.contact-cta {
    display: grid;
    gap: 1rem;
}

/* Enhanced Footer Styles */
.footer {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    line-height: 1.5;
}

.footer-main {
    padding: clamp(2rem, 5vw, 3rem) 0 clamp(1rem, 3vw, 2rem);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.375rem, 4vw, 1.6rem);
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: clamp(0.8rem, 2vw, 0.85rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    margin-bottom: 1.2rem;
    font-size: clamp(0.95rem, 2.5vw, 1rem);
    position: relative;
    padding-bottom: 0.5rem;
    font-weight: 500;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-title.site-office {
    margin-top: 1.5rem;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(0.8rem, 2vw, 0.85rem);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 3px;
}

.footer-address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.8rem, 2vw, 0.85rem);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-rera {
    font-size: clamp(0.8rem, 2vw, 0.85rem);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: clamp(0.8rem, 2vw, 0.85rem);
}

.contact-label {
    color: white;
    font-weight: 500;
    margin-right: 0.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-action {
    margin-top: 1.5rem;
}

.footer-cta {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: clamp(0.8rem, 2vw, 0.85rem);
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Nature Border Style */
.nature-border {
    position: relative;
    width: 100%;
    height: clamp(80px, 15vw, 180px);
    background-image: url('images/nature-border.webp');
    background-repeat: repeat;
    background-position: center bottom;
    background-size: contain;
    margin-top: 20px;
}

.disclaimer-section {
    padding: clamp(1rem, 3vw, 2rem) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-text {
    font-size: clamp(0.7rem, 2vw, 0.75rem);
    line-height: 1.6;
    margin: 0;
}

.copyright-section {
    padding: clamp(1rem, 3vw, 1.5rem) 0;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-content p {
    margin: 0;
    font-size: clamp(0.8rem, 2vw, 0.875rem);
}

.copyright-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.copyright-content a:hover {
    text-decoration: underline;
}

/* Lead Form Styles */
.site-visit-form-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: clamp(300px, 90vw, 350px);
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: white;
    box-shadow: var(--shadow-xl);
    transform: translateY(calc(100% + 20px));
    transition: transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.site-visit-form-container.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.site-visit-form-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-visit-form-title {
    margin: 0;
    font-size: clamp(1rem, 3vw, 1.125rem);
    color: white;
    font-weight: 600;
}

.site-visit-form-close {
    background: none;
    border: none;
    color: white;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    min-width: 24px;
    min-height: 24px;
}

.site-visit-form-body {
    padding: clamp(1rem, 3vw, 1.5rem);
}

.site-visit-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input-field input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    transition: var(--transition);
}

.form-input-field input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(29, 77, 79, 0.1);
}

.phone-field {
    display: flex;
    align-items: center;
}

.country-code {
    display: flex;
    align-items: center;
    background-color: var(--background-light);
    padding: 0 1rem;
    border: 1px solid var(--border-light);
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    height: 49px;
}

.country-code img {
    width: 24px;
    margin-right: 0.5rem;
}

.country-code span {
    font-size: clamp(0.875rem, 2.5vw, 0.95rem);
    color: var(--text-dark);
}

.phone-field input {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-consent input {
    margin-top: 0.25rem;
    min-width: 16px;
}

.form-consent label {
    font-size: clamp(0.7rem, 2vw, 0.75rem);
    line-height: 1.4;
    color: var(--text-medium);
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 0.875rem;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
    min-height: 44px;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

.submit-button.loading {
    position: relative;
    color: transparent;
}

.submit-button.loading::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
    from { transform: translate(-50%, -50%) rotate(0turn); }
    to { transform: translate(-50%, -50%) rotate(1turn); }
}

.form-result {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    display: none;
}

.form-result.success {
    display: block;
    background-color: rgba(34, 197, 94, 0.1);
    color: #059669;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-result.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: clamp(0.75rem, 3vw, 1rem) clamp(1rem, 4vw, 1.5rem);
    border-radius: 50px;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: calc(100vw - 40px);
}

.floating-cta:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Lightbox Styles */
.atmos-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow: hidden;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image-container {
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: clamp(20px, 5vw, 30px);
    right: clamp(20px, 5vw, 40px);
    color: white;
    font-size: clamp(2rem, 5vw, 2.5rem);
    cursor: pointer;
    z-index: 10001;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: clamp(1.5rem, 4vw, 2rem);
    cursor: pointer;
    padding: clamp(10px, 3vw, 15px);
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    z-index: 10001;
    width: clamp(40px, 10vw, 60px);
    height: clamp(40px, 10vw, 60px);
}

.lightbox-nav:hover {
    background-color: var(--secondary-color);
}

.lightbox-prev {
    left: clamp(15px, 4vw, 30px);
}

.lightbox-next {
    right: clamp(15px, 4vw, 30px);
}

.lightbox-caption {
    position: absolute;
    bottom: clamp(30px, 8vw, 50px);
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: clamp(1rem, 3vw, 1.125rem);
    padding: 1rem;
    opacity: 0.8;
}

.lightbox-counter {
    position: absolute;
    top: clamp(30px, 8vw, 40px);
    left: clamp(20px, 5vw, 40px);
    color: white;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    opacity: 0.7;
}

/* Chat Widget Styles */
.atmos-chat-button {
    position: fixed;
    bottom: 10px;
    right: clamp(15px, 4vw, 20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.atmos-chat-popup {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    max-width: clamp(200px, 60vw, 220px);
    position: relative;
    display: none;
}

.atmos-chat-popup:after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.atmos-chat-popup p {
    margin: 0 0 0.75rem 0;
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    color: var(--text-dark);
}

.atmos-chat-now-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    font-weight: 600;
    min-height: 36px;
}

.atmos-chat-now-btn:hover {
    background-color: var(--secondary-color);
}

.atmos-chat-icon-container {
    background-color: var(--primary-color);
    width: clamp(50px, 12vw, 60px);
    height: clamp(50px, 12vw, 60px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.atmos-chat-icon-container:hover {
    transform: scale(1.05);
    background-color: var(--secondary-color);
}

.atmos-chat-icon {
    background-color: white;
    width: clamp(35px, 9vw, 45px);
    height: clamp(35px, 9vw, 45px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.atmos-chat-window {
    position: fixed;
    bottom: clamp(15px, 4vw, 20px);
    right: clamp(15px, 4vw, 20px);
    width: clamp(300px, 90vw, 350px);
    height: clamp(400px, 80vh, 500px);
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    display: none;
    flex-direction: column;
    z-index: 999999;
    overflow: hidden;
}

.atmos-chat-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    min-height: 60px;
}

.atmos-header-logo-img {
    width: 100%;
    height: 24px;
    background-image: url('images/chatbot-icon.webp');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
}

.atmos-chat-header-logo {
    display: flex;
    align-items: center;
    flex: 1;
}

.atmos-chat-status {
    display: flex;
    align-items: center;
    font-size: clamp(0.7rem, 2vw, 0.75rem);
    white-space: nowrap;
    margin: 0 10px;
}

.atmos-status-dot {
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    margin-right: 5px;
}

.atmos-chat-header-actions button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    padding: 5px;
    min-width: 30px;
    min-height: 30px;
}

.atmos-chat-body {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.atmos-chat-offer-image {
    position: relative;
    width: 100%;
    padding: clamp(15px, 4vw, 20px) clamp(10px, 3vw, 15px);
    background: linear-gradient(135deg, var(--background-light) 0%, white 100%);
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.atmos-offer-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.atmos-chat-messages {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.atmos-chat-message {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 15px;
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    line-height: 1.4;
    position: relative;
    word-wrap: break-word;
}

.atmos-bot-message {
    align-self: flex-start;
    background-color: var(--background-light);
    color: var(--text-dark);
    border-bottom-left-radius: 5px;
}

.atmos-user-message {
    align-self: flex-end;
    background-color: var(--primary-color);
    color: white;
    border-bottom-right-radius: 5px;
}

.atmos-chat-prompt {
    padding: 1rem;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.atmos-chat-prompt p {
    margin: 0 0 1rem 0;
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    color: var(--text-dark);
}

.atmos-chat-options {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.atmos-chat-option-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    background-color: white;
    color: var(--primary-color);
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    min-height: 36px;
}

.atmos-chat-option-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.atmos-chat-contact-form {
    padding: 1rem;
    display: none;
    border-top: 1px solid var(--border-light);
}

.atmos-chat-form-title {
    font-size: clamp(0.95rem, 2.5vw, 1rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.atmos-chat-form-field {
    margin-bottom: 0.75rem;
}

.atmos-chat-form-field input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    transition: var(--transition);
}

.atmos-chat-form-field input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.atmos-chat-form-consent {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.atmos-chat-form-consent input {
    margin-top: 3px;
    margin-right: 8px;
    min-width: 16px;
}

.atmos-chat-form-consent label {
    font-size: clamp(0.7rem, 2vw, 0.75rem);
    color: var(--text-medium);
    line-height: 1.3;
}

.atmos-chat-submit-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    min-height: 44px;
}

.atmos-chat-submit-btn:hover {
    background-color: var(--secondary-color);
}

.atmos-chat-form-result {
    margin-top: 0.75rem;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    font-size: clamp(0.7rem, 2vw, 0.75rem);
    display: none;
}

.atmos-chat-form-result.success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #059669;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.atmos-chat-form-result.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.atmos-chat-input-area {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid var(--border-light);
    gap: 0.75rem;
}

.atmos-chat-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 25px;
    font-size: clamp(0.8rem, 2vw, 0.875rem);
}

.atmos-chat-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.atmos-chat-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    transition: var(--transition);
}

.atmos-chat-send-btn:hover {
    background-color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        width: 95%;
    }
    
    .feature-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .developer-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .nature-border {
        height: clamp(100px, 12vw, 150px);
    }
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
        padding: 8px;
        margin-right: -8px;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        box-shadow: var(--shadow-xl);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 1.5rem 0;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .about-grid,
    .contact-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .villa-grid {
        grid-template-columns: 1fr;
    }
    
    .amenity-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .category {
        flex: 0 0 auto;
        min-width: 120px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .desktop-gallery {
        display: none;
    }
    
    .mobile-gallery {
        display: block;
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem 1.5rem;
    }
    
    .footer-main {
        padding: clamp(2rem, 5vw, 2.5rem) 0 clamp(1rem, 3vw, 1.5rem);
    }
    
    .nature-border {
        height: clamp(80px, 10vw, 120px);
    }
}

@media (max-width: 768px) {
    .section {
        padding: clamp(2rem, 6vw, 3rem) 0;
    }
    
    .hero {
        min-height: 500px;
        max-height: 700px;
    }
    
    .hero-highlights {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .config-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .config-tab {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .location-highlights {
        grid-template-columns: 1fr;
    }
    
    .nearby-facilities {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .notification-button {
        display: none;
    }
    
    .atmos-chat-window {
        width: calc(100vw - 30px);
        height: 450px;
        bottom: 70px;
        right: 15px;
    }
    
    .atmos-chat-button {
        bottom: 20px;
        right: 15px;
    }

    .gallery-cta {
        flex-direction: column;
        width: 100%;
    }

    .gallery-cta .btn-primary,
    .gallery-cta .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 0.5rem;
    }
    
    .content-card {
        padding: clamp(1.5rem, 4vw, 2rem);
    }
    
    .feature-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
    }
    
    .plots-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: clamp(1.5rem, 4vw, 2rem);
    }
    
    .values-grid {
        gap: 1rem;
    }
    
    .value-item {
        padding: 1rem;
    }
    
    .contact-cta {
        gap: 0.75rem;
    }
    
    .site-visit-form-container {
        width: calc(100vw - 40px);
        max-width: 350px;
        right: 20px;
        left: 20px;
        transform: translateY(calc(100% + 20px));
    }

    .site-visit-form-container.active {
        transform: translateY(0);
    }
    
    .floating-cta {
        padding: clamp(0.625rem, 3vw, 0.75rem) clamp(1rem, 4vw, 1.25rem);
        font-size: clamp(0.7rem, 2vw, 0.75rem);
        left: 15px;
        bottom: 15px;
        right: auto;
        max-width: calc(100vw - 30px);
    }

    .hero-cta {
        width: 100%;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        min-width: auto;
    }

    .amenity-categories {
        padding: 0;
    }

    .category {
        padding: 1rem 0.75rem;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
    
    .title-sub {
        font-size: clamp(0.875rem, 4vw, 1.25rem);
    }

    .hero-highlights {
        gap: 0.75rem;
    }

    .highlight-item {
        padding: 0.75rem;
    }

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

    .lightbox-nav {
        display: none;
    }

    .atmos-chat-window {
        height: 400px;
    }
}

/* Prevent horizontal scroll */
body, html {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    max-width: 100%;
}

/* Fix for very small screens */
@media (max-width: 320px) {
    .container {
        padding: 0 0.25rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .floating-cta {
        padding: 0.5rem 0.75rem;
        font-size: 0.65rem;
    }
}