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

/* Lazy Loading */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

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

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

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Header/Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo-img {
    height: 90px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #666633;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    list-style: none;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #666633;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #666633;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #444422;
    transform: translateY(-2px);
}

.contact-btn {
    background: #666633;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-btn:hover {
    background: #444422;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 102, 51, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: none;
    border: none;
    padding: 4px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 75vh;
    min-height: 480px;
    max-height: 700px;
    overflow: hidden;
    margin-top: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100%;
    gap: 2px;
}

.hero-grid.hero-single {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 0;
}

.hero-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    color: white;
    text-align: center;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    white-space: nowrap;
    padding: 0 1rem;
}

/* Curved Dividers */
.divider-white,
.divider-dark {
    height: 80px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.divider-white {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,80 Q600,0 1200,80 L1200,0 L0,0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.divider-dark {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,80 Q600,0 1200,80 L1200,0 L0,0 Z' fill='%23000000'/%3E%3C/svg%3E");
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: white;
}

.content-block {
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #666633;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.book-tour-btn {
    display: inline-block;
    background: #666633;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 102, 51, 0.2);
}

.book-tour-btn:hover {
    background: #444422;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 102, 51, 0.4);
}

/* Dark Sections */
.dark-section {
    background: #000;
    color: white;
    padding: 5rem 0;
}

.dark-section .section-title {
    color: white;
}

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

.event-card {
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card-overlay h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.card-overlay p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.card-link {
    background: rgba(102, 102, 51, 0.9);
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.event-card:hover .card-link {
    opacity: 1;
    transform: translateY(0);
}

.card-link:hover {
    background: rgba(102, 102, 51, 1);
}

/* Nature Section */
.nature-section {
    padding: 5rem 0;
    background: white;
}

.nature-image-large {
    margin-bottom: 3rem;
    text-align: center;
}

.nature-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

/* Experience Section */
.experience-section {
    text-align: center;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-slide {
    display: none;
    position: relative;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(102, 102, 51, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(102, 102, 51, 1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-col h3,
.footer-col h4 {
    color: #666633;
    margin-bottom: 1rem;
}

.footer-col address {
    font-style: normal;
    line-height: 1.6;
}

.footer-col a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #666633;
}

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

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

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        padding: 0.5rem 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: clamp(1.1rem, 5.5vw, 2rem);
        white-space: normal;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-right {
        gap: 0.75rem;
    }

    /* Hide social icons in header on mobile — still visible in footer */
    .nav-right .social-icons {
        display: none;
    }
    
    .contact-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .mobile-menu-toggle {
        margin-left: 8px;
        flex-shrink: 0;
    }

    .logo-img {
        height: 60px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 70px;
    }
    
    .hero-grid {
        gap: 1px;
    }
    
    .hero-title {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .content-block h3 {
        font-size: 1.5rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
    
    .event-card {
        height: 300px;
    }
    
    .card-overlay {
        padding: 1.5rem;
    }
    
    .carousel-slide img {
        height: 300px;
    }
}

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

.content-block,
.event-card,
.nature-image {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Page Hero Styles */
.page-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/hero-1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.hero-content {
    text-align: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Pricing Section Styles */
.pricing-section {
    padding: 5rem 0;
    background: white;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.package-summary {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
    list-style: none;
}

.package-summary li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.package-summary li:before {
    content: "•";
    color: #666633;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.pricing-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border-color: #666633;
    transform: scale(1.02);
}

.pricing-card.featured .card-header {
    background: linear-gradient(135deg, #666633, #888844);
    color: white;
}

.pricing-card.premium {
    border-color: #444422;
}

.pricing-card.premium .card-header {
    background: linear-gradient(135deg, #444422, #666633);
    color: white;
}

.card-header {
    background: linear-gradient(135deg, #666633, #888844);
    padding: 2rem;
    text-align: center;
    border-bottom: none;
}

.pricing-card.featured .card-header,
.pricing-card.premium .card-header {
    border-bottom: none;
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.pricing-card.featured .card-header h3,
.pricing-card.premium .card-header h3 {
    color: white;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.pricing-card.featured .price,
.pricing-card.premium .price {
    color: white;
}

.price-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    margin-top: 0.25rem;
}

.pricing-card.featured .price-label,
.pricing-card.premium .price-label {
    color: rgba(255,255,255,0.8);
}

.duration {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.pricing-card.featured .duration,
.pricing-card.premium .duration {
    color: rgba(255,255,255,0.9);
}

.additional {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.pricing-card.premium .additional {
    color: rgba(255,255,255,0.8);
}

.subtitle {
    font-style: italic;
    color: #666;
    margin-top: 0.5rem;
}

.pricing-card.premium .subtitle {
    color: rgba(255,255,255,0.9);
}

.card-body {
    padding: 2rem;
}

.package-features {
    list-style: none;
    margin: 1.5rem 0;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li:before {
    content: "✓";
    color: #666633;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.package-features li:last-child {
    border-bottom: none;
}

.note {
    font-size: 0.9rem;
    color: #e74c3c;
    margin-top: 1rem;
    font-style: italic;
}

.disclaimer {
    font-size: 0.8rem;
    color: #999;
    margin-top: 1rem;
    font-style: italic;
}

/* Included Features Section */
.included-features {
    text-align: center;
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: #666633;
    margin-bottom: 1rem;
}

.feature-item p {
    color: white;
    line-height: 1.5;
}

/* Additional Info Section */
.additional-info {
    padding: 5rem 0;
    background: white;
}

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

.info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #666633;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.info-link {
    display: inline-block;
    background: #666633;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-link:hover {
    background: #444422;
    transform: translateY(-2px);
}

/* Contact Page Styles */
.hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 400;
}

.contact-section {
    padding: 5rem 0;
    background: white;
}

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

.contact-form-wrapper h2,
.contact-info h2 {
    color: #666633;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-form-wrapper p {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #666;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #666633;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400 !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.submit-btn {
    background: #666633;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #444422;
    transform: translateY(-2px);
}

/* Contact Info Styles */
.contact-info {
    padding: 2rem 0;
}

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

.contact-icon {
    background: #666633;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p,
.contact-details a {
    color: #666;
    line-height: 1.5;
    text-decoration: none;
}

.contact-details a:hover {
    color: #666633;
}

.social-connect {
    margin: 2rem 0;
}

.social-connect h3 {
    color: #333;
    margin-bottom: 1rem;
}

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

.social-icons-large .social-link {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
}

.map-embed {
    margin-top: 2rem;
}

.map-embed h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Why Choose Contact Section */
.why-choose-contact {
    text-align: center;
}

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

.reason-item {
    padding: 2rem 1rem;
}

.reason-item i {
    font-size: 3rem;
    color: #666633;
    margin-bottom: 1rem;
}

.reason-item h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.reason-item p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* Responsive Contact Styles */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        align-items: center;
        text-align: center;
        flex-direction: column;
    }
}

/* Events Page Styles */
.events-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-events.jpg');
}

.events-showcase {
    padding: 5rem 0;
    background: white;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.intro-content h2 {
    color: #666633;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
}

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

.main-event-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 500px;
}

.main-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.event-image {
    position: relative;
    height: 100%;
    width: 100%;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.event-content {
    color: white;
    text-align: left;
    width: 100%;
}

.event-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.event-content > p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
}

.event-highlights {
    list-style: none;
    margin: 1rem 0 1.5rem;
}

.event-highlights li {
    padding: 0.25rem 0;
    color: rgba(255,255,255,0.8);
    position: relative;
    padding-left: 1rem;
}

.event-highlights li:before {
    content: "•";
    color: #666633;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.event-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.primary-btn {
    background: #666633;
    color: white;
}

.primary-btn:hover {
    background: #444422;
}

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

.secondary-btn:hover {
    background: white;
    color: #333;
}

.additional-events {
    text-align: center;
}

.section-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

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

.additional-event-item {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

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

.additional-event-item i {
    font-size: 3rem;
    color: #666633;
    margin-bottom: 1rem;
}

.additional-event-item h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.additional-event-item p {
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.why-choose-events {
    padding: 5rem 0;
    background: white;
}

.features-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.feature-large {
    order: 2;
}

.feature-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.features-list {
    order: 1;
}

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

.feature-point i {
    color: #666633;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-point h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-point p {
    color: #666;
    line-height: 1.6;
}

/* Events Page Responsive */
@media (max-width: 768px) {
    .main-events-grid {
        grid-template-columns: 1fr;
    }
    
    .main-event-card {
        height: 400px;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-large {
        order: 1;
    }
    
    .features-list {
        order: 2;
    }
    
    .additional-events-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

/* Weddings Page Styles */
.weddings-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-weddings.jpg');
}

.wedding-intro {
    padding: 5rem 0;
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content h2 {
    color: #666633;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.wedding-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #666633;
    color: white;
}

.highlight-item:hover i {
    color: white;
}

.highlight-item i {
    color: #666633;
    font-size: 1.25rem;
}

.highlight-item span {
    font-weight: 600;
}

.wedding-packages {
    text-align: center;
}

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

.package-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.2);
}

.featured-package {
    border-color: #666633;
    transform: scale(1.05);
}

.featured-package .package-header {
    background: linear-gradient(135deg, #666633, #888844);
}

.package-header {
    background: linear-gradient(135deg, #666633, #888844);
    color: white;
    padding: 2rem;
    text-align: center;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.package-duration {
    font-size: 0.9rem;
    opacity: 0.8;
}

.package-features {
    padding: 2rem;
    text-align: left;
}

.package-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #333;
}

.package-features li:before {
    content: "✓";
    color: #666633;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.package-note {
    font-size: 0.9rem;
    color: #e74c3c;
    font-style: italic;
}

.ceremony-locations {
    padding: 5rem 0;
    background: white;
}

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

.location-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

.location-content {
    padding: 2rem;
}

.location-content h3 {
    color: #666633;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.location-content p {
    color: #666;
    line-height: 1.6;
}

.whats-included {
    text-align: center;
}

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

.included-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.included-list {
    list-style: none;
    text-align: left;
}

.included-list li {
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.9);
    position: relative;
    padding-left: 1.5rem;
}

.included-list li:before {
    content: "•";
    color: #666633;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.wedding-planning {
    padding: 5rem 0;
    background: white;
}

.planning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.planning-text h2 {
    color: #666633;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.planning-text > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.planning-steps {
    margin-top: 2rem;
}

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

.step-number {
    background: #666633;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    color: #666;
    line-height: 1.5;
}

/* Wedding Page Responsive */
@media (max-width: 768px) {
    .intro-grid,
    .planning-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .wedding-highlights {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-package {
        transform: none;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Gallery Styles */
.gallery-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-gallery.jpg');
}

.gallery-section {
    padding: 5rem 0;
    background: white;
}

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

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-about.jpg');
}

.about-content {
    padding: 5rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-grid .about-image {
        order: 2;
    }
    .about-grid .about-text {
        order: 1;
    }
}

.about-text h2,
.about-text h3 {
    color: #666633;
    margin-bottom: 1rem;
}

.about-text h2 {
    font-size: 2.5rem;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.property-features {
    text-align: center;
}

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

.feature-card {
    padding: 2rem;
}

.feature-card i {
    font-size: 3rem;
    color: #666633;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* FAQs Styles */
.faqs-section {
    padding: 5rem 0;
    background: white;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid #666633;
}

.faq-item h3 {
    color: #666633;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}
/* ==========================================
   SAMPLE TIMELINES SECTION
   ========================================== */
.sample-timelines {
    padding: 5rem 0;
}

.timelines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    overflow: hidden;
}

.featured-timeline {
    border-color: #c9a96e;
    box-shadow: 0 4px 24px rgba(201,169,110,0.18);
}

.timeline-header {
    background: rgba(201,169,110,0.12);
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.featured-timeline .timeline-header {
    background: rgba(201,169,110,0.22);
}

.timeline-header h3 {
    color: #c9a96e;
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.timeline-duration {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
}

.timeline-list {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
}

.timeline-list li {
    display: flex;
    gap: 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    align-items: flex-start;
}

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

.tl-time {
    color: #c9a96e;
    font-weight: 600;
    font-size: 0.85rem;
    min-width: 72px;
    padding-top: 1px;
}

.tl-item {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .timelines-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}
