/* Variables */
:root {
    --primary: #7654c5;
    --primary-rgb: 118, 84, 197;
    --primary-light: #baa9ff;
    --primary-dark: #332573;
    --accent: #9c27b0;
    --accent-light: #B4A1E8;
    --text-dark: #2C1810;
    --text-light: #6B7280;
    --hero-bg: url('/static/images/hero-bg.jpg');
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.btn-primary:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

/* Footer Styles */
.footer {
    background-color: #7654c5;
    color: #fff;
    padding: 60px 0 30px;
}

.footer h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer p,
.footer li {
    color: #B3B3B3;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer a:hover {
    color: #fff;
}

.footer .list-unstyled li {
    margin-bottom: 0.75rem;
}

.footer .social-links a {
    color: #B3B3B3;
    font-size: 1.2rem;
    margin-right: 1.5rem;
}

.footer .social-links a:hover {
    color: #ffffff;
}

.footer hr {
    margin: 2rem 0;
    opacity: 0.1;
}

.footer .copyright {
    color: #999999;
    font-size: 0.9rem;
}

/* Choose Resort Page */
.choose-resort-section {
    align-items: center;
    color: white;
    z-index: 1;
    position: relative;
}

.choose-resort-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.choose-resort-section .container {
    background: transparent;
}

.resort-card {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
}

.resort-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.resort-card .card-body {
    color: white;
}

.resort-card .card-title {
    color: white;
    font-weight: 500;
}

.resort-card .card-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
}

.resort-card .card-text {
    color: rgba(255, 255, 255, 0.9);
}

.resort-card .badge {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 400;
    padding: 0.5rem 1rem;
}

.resort-card i {
    color: var(--primary-light);
}

/* General Styles */
body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--text-dark);
    text-align: left;
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 300;
}

[lang="ar"] body {
    font-family: 'IBM Plex Sans Arabic';
    text-align: right;
    direction: rtl;
}

[lang="ar"] p,
[lang="ar"] h1,
[lang="ar"] h2,
[lang="ar"] h3,
[lang="ar"] h4,
[lang="ar"] h5,
[lang="ar"] h6,
[lang="ar"] .lead,
[lang="ar"] .villa-card,
[lang="ar"] .amenity,
[lang="ar"] .about-text,
[lang="ar"] .contact-content {
    text-align: right;
    direction: rtl;
}

[lang="ar"] .list-unstyled {
    padding-right: 0;
    direction: rtl;
}

[lang="ar"] .list-unstyled li {
    direction: rtl;
    text-align: right;
    align-items: center;
    justify-content: flex-end;
}

[lang="ar"] .navbar-nav {
    padding-right: 0;
    margin-right: 0;
}

[lang="ar"] .fa-check-circle {
    margin-left: 0.5rem;
    margin-right: 0;
}

[lang="ar"] .info-item {
    flex-direction: row-reverse;
}

[lang="ar"] .contact-form {
    direction: rtl;
    text-align: right;
}

[lang="ar"] .contact-form input,
[lang="ar"] .contact-form textarea {
    font-family: 'IBM Plex Sans Arabic';
    text-align: right;
    direction: rtl;
}

[lang="ar"] button,
[lang="ar"] input,
[lang="ar"] select,
[lang="ar"] textarea {
    font-family: 'IBM Plex Sans Arabic';
}

[lang="ar"] .footer-content {
    text-align: right;
    direction: rtl;
}

[lang="ar"] .social-links {
    justify-content: flex-end;
}

/* Global Button Styles */
.btn-primary {
    background: #332573!important;
    border: none !important;
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #382b72;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-primary:hover:before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(84, 58, 144, 0.3);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #4a2ba8 !important;
    border-color: #4a2ba8 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(84, 58, 144, 0.2);
}

.btn-outline-primary {
    color: #7b52db !important;
    border-color: #7b52db !important;
    background-color: transparent;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: #7b52db !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(84, 58, 144, 0.2);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'IBM Plex Sans', sans-serif;
    letter-spacing: -0.02em;
}

h1 {
    font-weight: 200;
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

h2 {
    font-weight: 300;
    font-size: 3rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

h3 {
    font-weight: 400;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.lead {
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Navbar Styles */
.navbar {
    
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    color: white;
}

.navbar .nav-link {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.navbar .nav-link.active {
    color: white !important;
}

.navbar-brand {
    color: white !important;
    font-weight: 500;
    font-size: 1.5rem;
}

.navbar .dropdown-menu {
    background: rgba(45, 31, 77, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
}

.navbar .dropdown-item.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.navbar .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary);
    opacity: 0;
    transform: scaleX(0);
}

.navbar .nav-link.active:after {
    opacity: 1;
    transform: scaleX(1);
}

.navbar .nav-link i {
    color: var(--primary);
    margin-right: 5px;
    font-size: 1.1em;
}

.navbar.scrolled {
    background-color: var(--primary-dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand,
.navbar.scrolled .lang-switch {
    color: white !important;
}

.navbar-brand, .nav-link {
    color: white !important;
    transition: color 0.3s ease;
}

.navbar-toggler {
    border-color: white;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.lang-switch {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.lang-switch:hover {
    color: white;
    opacity: 0.8;
    text-decoration: none;
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Hero Section */
#home {
    background-image: linear-gradient(135deg, rgba(84,58,144,0.9), rgba(0,0,0,0.95)), var(--hero-bg);
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#home::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--primary-dark), transparent);
    opacity: 0.3;
    pointer-events: none;
}

/* Feature Items */
.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
}

.feature-item i {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 0;
    font-weight: 300;
    line-height: 1.5;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background-color: var(--primary-light);
    opacity: 0.5;
}

section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

section h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
}

section:nth-child(even) {
    background-color: #f8f9fa;
}

.about {
    background-color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.feature-icon {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.alert {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(84, 58, 144, 0.1);
}

.stat {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background-color: var(--primary-light);
}

.stat .number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0d6efd;
    display: block;
}

.stat .label {
    color: #666;
    margin-top: 0.5rem;
    display: block;
    font-weight: 300;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.9);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
    .navbar.scrolled .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.9);
    }
    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

h4, h5, h6 {
    font-weight: 400;
}

p {
    font-weight: 300;
    line-height: 1.8;
    font-size: 1.1rem;
}

.lead {
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.display-4 {
    font-weight: 300;
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

[lang="ar"] .text-start {
    text-align: right !important;
}

[lang="ar"] .text-end {
    text-align: right !important;
}

[lang="ar"] .ms-2 {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
}

[lang="ar"] .me-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

[lang="ar"] body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

/* RTL Adjustments */
[dir="rtl"] .navbar-nav {
    padding-right: 0;
}

[dir="rtl"] .me-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

[dir="rtl"] .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

[dir="rtl"] .me-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

/* Navigation */
.navbar {
    
    padding: 20px 0;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

.navbar-brand, .nav-link {
    color: white !important;
    font-weight: 300;
}

.navbar-brand img {
    height: 80px;
    width: auto;
}

.navbar-toggler {
    border-color: white;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.lang-switch {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    font-weight: 300;
    font-family: 'IBM Plex Sans Arabic';
}

.nav-link[href^="tel:"] {
    color: white !important;
    font-weight: 300;
}

[dir="rtl"] .lang-switch {
    margin-left: 0;
    margin-right: 15px;
}

.lang-switch:hover {
    color: #f8f9fa;
}

/* Hero Section */
#home {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* Amenities Section */
.amenities {
    background-color: var(--primary-light);
    position: relative;
}

.amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--primary-light) 0%, transparent 50%);
    opacity: 0.05;
    pointer-events: none;
}

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

/* About Section */
.about {
    background-color: #f8f9fa;
}

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

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.stat .number {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
}

.stat .label {
    color: #666;
    margin-top: 0.5rem;
    display: block;
    font-weight: 300;
    font-size: 1.1rem;
}

/* Villas Section */
.featured-villas {
    background-color: white;
}

.villa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.villa-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(84, 58, 144, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    background-clip: padding-box;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.villa-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.villa-card h3 {
    font-size: 1.5rem;
    margin: 0 0 1.5rem;
    color: var(--text-dark);
}

.villa-card p {
    color: var(--text-light);
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.villa-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.villa-card .view-details {
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.villa-card .view-details i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.villa-card .view-details.btn-primary {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: white;
}

.villa-card .view-details.btn-outline-light {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
}

/* Contact Section */
.contact {
    background-color: var(--primary-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 3rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(84, 58, 144, 0.1);

}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(84, 58, 144, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    color: var(--text-dark);
}

.contact-form textarea {
    border-radius: 20px;
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.contact-form button {
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.contact-form button i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.contact-form button.btn-primary {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: white;
}

.contact-form button.btn-outline-light {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.contact-info {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(84, 58, 144, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item i {
    font-size: 2rem;
    margin-right: 1.5rem;
    color: var(--primary);
}

.info-item p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

[lang="en"] .contact-info {
    text-align: left;
}

[lang="ar"] .contact-info {
    text-align: right;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.hero-background {
    position: fixed;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), var(--hero-bg) center/cover;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
    z-index: -1;
}

.contact-hero {
    color: white;
    position: relative;
}

.contact-page {
    background: none !important;
    padding-top: 120px;
    min-height: 100vh;
    color: #fff;
}

.contact-section {
    position: relative;
    color: white;
    z-index: 1;
}

.contact-form-wrapper {
    padding: 2rem;
}

.contact-form-wrapper .input-group-text {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-right: none;
    color: white;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-left: none;
    color: white;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    background: transparent;
    border-color: white;
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.contact-info-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    
    color: white;
    padding: 80px 0 50px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.footer-section a {
    color: white;
    text-decoration: none;
    font-weight: 300;
}

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

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .stat {
        min-width: 150px;
    }
    
    .villa-grid {
        grid-template-columns: 1fr;
    }
}
