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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for fixed navbar */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-green: #2d7d1f;
    --light-green: #4CAF50;
    --accent-gold: #FFD700;
    --warm-brown: #8B4513;
    --cream: #FFF8DC;
    --dark-green: #1a5012;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #2d7d1f 0%, #4CAF50 100%);
    --gradient-hero: linear-gradient(135deg, rgba(45, 125, 31, 0.9) 0%, rgba(76, 175, 80, 0.8) 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(45, 125, 31, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: -5px;
}

.nav-logo span {
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.cta-button {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(45, 125, 31, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 125, 31, 0.4);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #000;
    /* Fallback color */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    /* Add padding to account for fixed navbar */
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 125, 31, 0.7) 0%, rgba(76, 175, 80, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

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

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: var(--accent-gold);
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
}

.feature i {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.primary-btn {
    background: var(--accent-gold);
    color: var(--text-dark);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: #ffed4e;
}

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

.secondary-btn:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}

.quick-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-btn,
.call-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #1ebe55;
    transform: translateY(-2px);
}

.call-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.call-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
}

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

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.about-item {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.about-item h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* VIP Signup Section */
.vip-signup {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.vip-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.vip-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vip-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.vip-content>p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.vip-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 250px;
    flex: 0 1 auto;
}

.benefit i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    min-width: 24px;
}

.vip-form {
    max-width: 500px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.vip-form input,
.vip-form select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.vip-form select option {
    background: white;
    color: var(--text-dark);
    padding: 0.5rem;
}

.vip-form input:focus,
.vip-form select:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-btn {
    background: var(--accent-gold);
    color: var(--text-dark);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Form Loading State */
.form-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    margin-bottom: 1rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.form-loading i {
    font-size: 1.5rem;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Error Message */
.error-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(220, 53, 69, 0.2);
    border: 2px solid #dc3545;
    border-radius: 10px;
    color: #fff;
    margin-bottom: 1rem;
    animation: shake 0.5s;
}

.error-message i {
    font-size: 1.5rem;
    color: #dc3545;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.success-message {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    border: 2px solid var(--accent-gold);
    backdrop-filter: blur(10px);
}

.success-message i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.success-message h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.share-buttons {
    margin-top: 2rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Progress Section */
.progress {
    padding: 5rem 0;
    background: #f8f9fa;
}

.progress-timeline {
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    min-height: 120px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 40px;
    bottom: -70px;
    width: 2px;
    background: #e0e0e0;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-item.completed::before {
    background: var(--light-green);
}

.timeline-item.current::before {
    background: linear-gradient(to bottom, var(--light-green) 50%, #e0e0e0 50%);
}

.timeline-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.timeline-item .timeline-icon {
    background: #e0e0e0;
    color: #999;
}

.timeline-item.completed .timeline-icon {
    background: var(--light-green);
    color: white;
}

.timeline-item.current .timeline-icon {
    background: var(--accent-gold);
    color: var(--text-dark);
    animation: pulse 2s infinite;
}

/* Alternate left and right positioning */
.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    padding-right: 3rem;
    margin-left: 0;
    margin-right: calc(50% + 60px);
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    padding-left: 3rem;
    margin-right: 0;
    margin-left: calc(50% + 60px);
}

.timeline-content {
    flex: 1;
    max-width: 400px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.timeline-content {
    flex: 1;
    max-width: 400px;
}

.timeline-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.date {
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 600;
}

.progress-gallery h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.placeholder-image {
    height: 250px;
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    border: 2px dashed #ccc;
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

/* Enhanced Gallery with Better Images */
.gallery-item.real-image {
    background: url('https://images.unsplash.com/photo-1574958269340-fa927503f3dd?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
}

.gallery-item.construction-image {
    background: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
}

.gallery-item.landscape-image {
    background: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
}

/* Events Section */
.events {
    padding: 5rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(248, 249, 250, 0.75)),
        url('images/event.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.events-content {
    max-width: 700px;
    margin: 0 auto;
}

.events-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(45, 125, 31, 0.1);
}

.event-form {
    display: grid;
    gap: 1.5rem;
}

.event-form .form-group {
    position: relative;
}

.event-form input,
.event-form select,
.event-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #f8f9fa;
    color: var(--text-dark);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.event-form input::placeholder,
.event-form textarea::placeholder {
    color: var(--text-light);
}

.event-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232d7d1f' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.event-form select option {
    background: white;
    color: var(--text-dark);
    padding: 0.5rem;
}

.event-form input:focus,
.event-form select:focus,
.event-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 125, 31, 0.1);
}

.event-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
    margin: 0;
}

.event-form .submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.event-form .submit-btn:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 125, 31, 0.3);
}

.event-form .submit-btn:active {
    transform: translateY(-1px);
}

/* Events form states - Loading, Error, Success */
#event-loading,
#event-error {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

#event-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(45, 125, 31, 0.1);
    color: var(--primary-green);
}

#event-loading i {
    font-size: 1.5rem;
}

#event-error {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid #dc3545;
    color: #dc3545;
}

#event-error i {
    font-size: 1.5rem;
}

#event-success {
    text-align: center;
    padding: 2rem;
    background: rgba(45, 125, 31, 0.05);
    border-radius: 15px;
    border: 2px solid var(--light-green);
}

#event-success i {
    font-size: 3rem;
    color: var(--light-green);
    margin-bottom: 1rem;
}

#event-success h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

#event-success p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 0.2rem;
    min-width: 24px;
}

.contact-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

.social-media {
    background: var(--gradient-primary);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.social-media h3 {
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.5rem;
}

.instagram:hover i {
    color: #E4405F;
}

.facebook:hover i {
    color: #1877F2;
}

.twitter:hover i {
    color: #1DA1F2;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bbb;
    line-height: 1.8;
}

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

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

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 70px;
        /* Slightly less padding on mobile */
        background: linear-gradient(135deg, rgba(45, 125, 31, 0.9) 0%, rgba(76, 175, 80, 0.8) 100%),
            url('https://images.unsplash.com/photo-1544148103-0773bf10d330?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
        background-size: cover;
        background-position: center;
    }

    /* Hide video on mobile for performance */
    .hero-video {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

    .vip-benefits {
        grid-template-columns: 1fr;
    }

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

    .timeline-item {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        margin-bottom: 2rem;
    }

    .timeline-item::before {
        display: none;
    }

    .timeline-icon {
        margin: 0 0 1rem 0;
        position: relative;
        left: auto;
        transform: none;
    }

    /* Reset alternating layout on mobile */
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        text-align: center;
        padding: 0;
        margin: 0;
        max-width: 100%;
    }

    .timeline-content {
        margin-top: 0 !important;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .vip-content h2 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-item {
        padding: 1.5rem;
    }
}