/* ============================================
   THE HEIGHTS COUNTRY CLUB & WELLNESS - MAIN CSS
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --primary-color: #c19a6b; /* Gold */
    --primary-dark: #a87c52;
    --secondary-color: #1a365d; /* Navy */
    --secondary-light: #2d4a7c;
    --accent-color: #8ab4b1; /* Teal */
    --text-dark: #222222;
    --text-medium: #555555;
    --text-light: #777777;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #eaeaea;
    --success-color: #28a745;
    --error-color: #dc3545;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 15px 40px rgba(0,0,0,0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-primary);
    line-height: var(--line-height-base);
    color: var(--text-dark);
    background-color: var(--background-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-medium);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.site-header.scrolled {
    background-color: var(--background-white);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-branding img {
    max-height: 50px;
    width: auto;
}

.site-branding h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--secondary-color);
}

.primary-navigation {
    display: flex;
    align-items: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.primary-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.primary-menu a:hover {
    color: var(--primary-color);
}

.primary-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

.primary-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    position: relative;
    transition: background-color var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    left: 0;
    transition: transform var(--transition-fast);
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;

  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.65)
  ), url('../images/EMAAR-THE-HEIGHTS-COUNTRY-CLUB-WELLNESS-DUBAI.webp');

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  color: white;
  padding-top: 140px; /* Space for fixed header */
  padding-bottom: 120px;
  position: relative;
}


.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: white;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Highlights & Contact Section */
.highlights-contact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-light);
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.highlights-column .section-subtitle {
    color: var(--primary-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.highlight-list {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.highlight-list li {
    margin-bottom: var(--spacing-sm);
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.highlight-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.key-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.key-detail {
    background-color: var(--background-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.key-detail:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.key-detail h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--secondary-color);
}

.price-box {
    background-color: var(--background-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.price-box p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.price {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 700;
    margin: var(--spacing-xs) 0 0;
}

.contact-form-container {
    background-color: var(--background-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.contact-form-container h3 {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-message {
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    margin-top: var(--spacing-sm);
    display: none;
}

.form-message.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(40, 167, 69, 0.3);
    display: block;
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--error-color);
    border: 1px solid rgba(220, 53, 69, 0.3);
    display: block;
}

/* Amenities Section */
.amenities-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-white);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.amenity-card {
    text-align: center;
    padding: var(--spacing-lg);
    background-color: var(--background-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.amenity-card:hover::before {
    transform: scaleX(1);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 2rem;
    transition: all var(--transition-normal);
}

.amenity-card:hover .amenity-icon {
    background-color: var(--secondary-color);
    transform: rotateY(180deg);
}

.amenity-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.amenity-card p {
    color: var(--text-medium);
    margin: 0;
}

/* Gallery Section */
.gallery-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-light);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: white;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Location Section */
.location-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.location-info h2 {
    margin-bottom: var(--spacing-md);
}

.location-info p {
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
    line-height: 1.7;
}

.address-card {
    background-color: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.address-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.address-detail {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--text-medium);
}

.address-detail i {
    color: var(--primary-color);
    width: 20px;
}

.reviews {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.rating {
    font-weight: 600;
    color: var(--text-dark);
}

.review-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 500px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Footer */
.site-footer {
    background-color: var(--secondary-color);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-widget h4 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: var(--spacing-sm);
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer-menu a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    width: 20px;
    color: var(--primary-color);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-newsletter input {
    width: 100%;
    padding: 1rem;
    margin-bottom: var(--spacing-sm);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: white;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.p-0 { padding: 0; }
.p-1 { padding: var(--spacing-xs); }
.p-2 { padding: var(--spacing-sm); }
.p-3 { padding: var(--spacing-md); }
.p-4 { padding: var(--spacing-lg); }
.p-5 { padding: var(--spacing-xl); }

.bg-light { background-color: var(--background-light); }
.bg-white { background-color: var(--background-white); }
.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Gallery Section */
.gallery-section {
    padding: 0rem 0rem;
    text-align: center;
    background-color: #f9f9f9;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.gallery-section p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.register-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.register-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-section h2 {
        font-size: 2rem;
    }
}

/* ================================
   Country Club Two Column Layout
   Exact match to image
================================ */

.country-club-two-col {
    padding: 80px 0;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Column - Content */
.content-col {
    padding-right: 30px;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 25px 0;
    line-height: 1.3;
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin: 0 0 40px 0;
    font-weight: 400;
}

.download-brochure-btn {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 14px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-brochure-btn:hover {
    background-color: #0052a3;
}

/* Right Column - Image */
.image-col {
    position: relative;
}

.featured-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.featured-image:hover .main-image {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 992px) {
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-col {
        padding-right: 0;
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .country-club-two-col {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .content-text p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .download-brochure-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

/* ============================================
   Location & Map Section
============================================ */

.location-map-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    color: #1e293b;
    margin: 0 0 20px 0;
    font-weight: 600;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
    margin: 40px 0;
}

/* Content Layout */
.location-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

/* Left Column: Address & Directions */
.address-directions-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Address Box */
.address-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.location-title {
    font-size: 1.5rem;
    color: #0f172a;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.address-details {
    margin-bottom: 25px;
}

.address-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.address-icon {
    font-size: 1.2rem;
    color: #3b82f6;
    flex-shrink: 0;
    margin-top: 2px;
}

.address-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
}

/* Rating Section */
.rating-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.star {
    color: #e2e8f0;
    font-size: 1.2rem;
}

.star.active {
    color: #f59e0b;
}

.star.half {
    background: linear-gradient(90deg, #f59e0b 50%, #e2e8f0 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rating-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-left: 10px;
}

.review-count {
    font-size: 0.95rem;
    color: #64748b;
}

/* View Map Link */
.view-map-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.view-map-link:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #2563eb;
}

.map-icon {
    font-size: 1.1rem;
}

/* Directions Section */
.directions-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.directions-title {
    font-size: 1.3rem;
    color: #0f172a;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.divider-small {
    height: 2px;
    background: #3b82f6;
    width: 60px;
    margin: 0 0 25px 0;
}

.directions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.direction-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.direction-item:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.direction-item.active {
    background: #eff6ff;
    border-color: #3b82f6;
    border-left: 4px solid #3b82f6;
}

.direction-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.direction-text {
    font-size: 1rem;
    color: #475569;
    font-weight: 500;
}

.direction-item.active .direction-text {
    color: #1e40af;
    font-weight: 600;
}

/* Right Column: Map */
.map-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Map Container */
.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.google-map {
    width: 100%;
    height: 450px;
    border: none;
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Map Marker */
.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.marker-pin {
    background: #3b82f6;
    width: 50px;
    height: 50px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.marker-pin::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 15px solid #3b82f6;
}

.marker-icon {
    transform: rotate(45deg);
    color: white;
    font-size: 1.3rem;
}

.marker-label {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Map Footer */
.map-footer {
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-attribution {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
}

.attribution-text {
    color: #64748b;
}

.attribution-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4285f4;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(66, 133, 244, 0.1);
    transition: all 0.3s ease;
}

.attribution-link:hover {
    background: rgba(66, 133, 244, 0.2);
}

.google-icon {
    background: #4285f4;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .location-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .location-map-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .address-box,
    .directions-section {
        padding: 20px;
    }
    
    .google-map {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .map-attribution {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .directions-list {
        gap: 10px;
    }
    
    .direction-item {
        padding: 10px;
    }
}

/* ============================================
   Map with Heading Section
============================================ */

.map-heading-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Heading */
.section-heading {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    text-align: left;
    line-height: 1.2;
    text-align: center;
}

/* Description */
.section-description {
    margin-bottom: 40px;
}

.section-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333333;
    margin: 0;
    font-weight: 400;
}

/* Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
    margin: 40px 0;
}

/* Map Container */
.map-container-full {
    width: 100%;
    margin-top: 30px;
}

.google-map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.google-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(10%) contrast(1.05);
}

/* Map Marker */
.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 10;
    pointer-events: none;
    text-align: center;
}

.marker-pin {
    background: #0066cc;
    width: 40px;
    height: 40px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
    margin: 0 auto 10px;
}

.marker-pin::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #0066cc;
}

.marker-icon {
    transform: rotate(45deg);
    color: white;
    font-size: 1.2rem;
}

.marker-label {
    background: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

/* Map Footer */
.map-footer-minimal {
    padding: 15px 0;
    text-align: right;
    border-bottom: 1px solid #e2e8f0;
}

.map-copyright {
    font-size: 0.85rem;
    color: #666;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .map-heading-section {
        padding: 60px 0;
    }
    
    .section-heading {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-description p {
        text-align: center;
        font-size: 1rem;
    }
    
    .google-map-wrapper {
        height: 350px;
    }
    
    .section-divider {
        margin: 30px 0;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 1.8rem;
    }
    
    .google-map-wrapper {
        height: 300px;
    }
    
    .marker-label {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .map-footer-minimal {
        text-align: center;
    }
}

/* ============================================
   Contact Form Modal
============================================ */

/* Modal Base */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

/* Overlay */
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

/* Modal Container */
.modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s ease-out;
    z-index: 10000;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #e9ecef;
    transform: rotate(90deg);
}

/* Modal Content Layout */
.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

/* Left Column: Form */
.modal-form-column {
    padding: 50px 40px;
    background: #ffffff;
    overflow-y: auto;
}

.modal-title {
    font-size: 1.8rem;
    color: #000000;
    margin: 0 0 30px 0;
    font-weight: 600;
}

.modal-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    margin: 0;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #333333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.submit-btn {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Right Column: Info */
.modal-info-column {
    padding: 50px 40px;
    background: linear-gradient(135deg, #0c2d4d 0%, #1a4b6d 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-brand h3 {
    font-size: 1.8rem;
    margin: 0 0 30px 0;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.modal-brand h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ffd700;
}

.modal-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.modal-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    font-size: 1.2rem;
    color: #ffd700;
    width: 24px;
    text-align: center;
}

.contact-item span:last-child {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Trigger Button */
.modal-trigger-btn {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.modal-trigger-btn:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-form-column,
    .modal-info-column {
        padding: 30px 25px;
    }
    
    .modal-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-brand h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .modal-contact-form {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .modal-form-column,
    .modal-info-column {
        padding: 25px 20px;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
    }
    
    .submit-btn {
        padding: 14px;
    }
}


/* ===================================
   Country Club Section - Mobile Layout Order
   Heading → Text → Image → Button
=================================== */

@media (max-width: 768px) {
  .two-col-grid {
    display: flex;
    flex-direction: column;
  }

  /* Heading first */
  .content-col h2.section-title {
    order: 1;
  }

  /* Text second */
  .content-text {
    order: 2;
  }

  /* Image third */
  .image-col {
    order: 3;
    width: 100%;
    margin: 20px 0;
    display: flex;
    justify-content: center;
  }

  /* Button last */
  .cta-button {
    order: 4;
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  /* Layout polish */
  .content-col {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0;
  }

  .featured-image {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
  }

  .main-image {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    display: block;
  }

  .cta-button .btn {
    width: 100%;
    max-width: 300px;
    padding: 14px;
    font-size: 15px;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .content-text p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .main-image {
    max-height: 220px;
  }

  .section-title {
    font-size: 22px;
  }
}

/* ===================================
   Country Club - HARD Mobile Fix
   Force Single Column Layout
=================================== */

@media (max-width: 768px) {
  .two-col-grid {
    display: block !important; /* Kill grid completely */
  }

  .content-col,
  .image-col {
    width: 100% !important;
    max-width: 100%;
  }

  /* Layout order */
  .content-col {
    text-align: center;
  }

  /* Image below text */
  .image-col {
    margin: 25px 0;
    display: flex;
    justify-content: center;
  }

  /* Image sizing */
  .featured-image {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
  }

  .main-image {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    display: block;
  }

  /* Button */
  .cta-button {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }

  .cta-button .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Typography */
  .section-title {
    font-size: 24px;
  }

  .content-text p {
    font-size: 15px;
    line-height: 1.6;
  }
}


/* ===================================
   Highlights & Contact - Mobile Fix
   Single Column + Clean Order
=================================== */

@media (max-width: 768px) {
  /* Kill grid layout */
  .two-column-layout {
    display: block !important;
  }

  .highlights-column,
  .contact-column {
    width: 100%;
    max-width: 100%;
  }

  /* Layout spacing */
  .highlights-column {
    text-align: center;
    margin-bottom: 30px;
  }

  /* Center list & details */
  .highlight-list {
    padding-left: 0;
  }

  .highlight-list li {
    padding-left: 0;
  }

  .highlight-list li::before {
    display: none;
  }

  .key-details-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Price box */
  .price-box {
    margin-top: 20px;
  }

  /* Form styling */
  .contact-form-container {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .contact-form-container h3 {
    text-align: center;
    font-size: 22px;
  }

  /* Buttons */
  .btn-full {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .contact-form-container h3 {
    font-size: 20px;
  }

  .price {
    font-size: 2.2rem;
  }
}
/* ================================
   Floating Register Button
================================ */

.floating-register {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
}

.register-btn {
  display: inline-block;
  background: #c10000;
  color: #ffffff;
  padding: 16px 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 8px 0 0 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.register-btn:hover {
  background: #a00000;
  transform: rotate(180deg) translateX(-5px);
}

/* ================================
   Mobile Optimization
================================ */
@media (max-width: 600px) {
  .register-btn {
    padding: 12px 14px;
    font-size: 12px;
    border-radius: 6px 0 0 6px;
  }
}

/* ================================
   Floating WhatsApp Button
================================ */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Hover effect */
.whatsapp-float:hover {
  background: #1ebe5b;
  transform: scale(1.1);
}

/* Mobile size */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }
}
.phone-group {
  display: flex;
  gap: 8px;
}

.phone-group select {
  width: 150px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fff;
}

.phone-group input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}
.download-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

/* Buttons take equal width */
.download-buttons .btn {
  flex: 1;
  text-align: center;
  min-width: 220px;
  padding: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .download-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}
/* ================================
   Desktop Table Fix
================================ */

.villa-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.villa-table th,
.villa-table td {
  padding: 14px 20px;
  text-align: center;
  font-size: 15px;
  border-bottom: 1px solid #ddd;
}

.villa-table th {
  background: #c19a6b;
  color: white;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.villa-table td:first-child {
  font-weight: 600;
  text-align: left;
}

.villa-table td:last-child {
  color: #c19a6b;
  font-weight: 700;
}

/* Wrapper styling */
.villa-table-wrapper {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ================================
   Mobile Card Layout Only
================================ */
@media (max-width: 600px) {

  .villa-table,
  .villa-table thead,
  .villa-table tbody,
  .villa-table th,
  .villa-table tr,
  .villa-table td {
    display: block;
    width: 100%;
  }

  .villa-table thead {
    display: none;
  }

  .villa-table tr {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }

  .villa-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    padding: 10px 0;
    font-size: 14px;
  }

  .villa-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #777;
  }

  .villa-table td:last-child {
    color: #c19a6b;
    font-weight: 700;
  }
}
