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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-sticky {
    position: sticky;
}

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

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

.logo-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E7D32, #1565C0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    color: #2E7D32;
    font-weight: 600;
    font-size: 1rem;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #666;
}

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

.nav-link {
    color: #555;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #2E7D32;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.back-link:hover {
    color: #2E7D32;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #2E7D32;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #1b5e20;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

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

.btn-whatsapp:hover {
    background-color: #20BD5A;
}

.btn-gradient {
    background: linear-gradient(135deg, #2E7D32, #1565C0);
    color: white;
}

.btn-gradient:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
}

.hero-text {
    max-width: 48rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Section */
.section {
    padding: 5rem 0;
}

.section-gray {
    background-color: #f9fafb;
}

.section-gradient {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(21, 101, 192, 0.05));
}

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

.section-title {
    color: #111;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #666;
}

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

.heritage-card {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.heritage-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.heritage-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

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

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

.heritage-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.heritage-badge i {
    width: 1.25rem;
    height: 1.25rem;
    color: #2E7D32;
}

.heritage-content {
    padding: 1.5rem;
}

.heritage-content h3 {
    margin-bottom: 0.5rem;
    color: #111;
}

.heritage-content p {
    color: #666;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, #f9fafb, white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.benefit-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #2E7D32, #1565C0);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.benefit-icon i {
    width: 2rem;
    height: 2rem;
    color: white;
}

.benefit-card h3 {
    margin-bottom: 0.75rem;
    color: #111;
}

.benefit-card p {
    color: #666;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #D4AF37;
    font-size: 1.25rem;
}

.testimonial-text {
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.author-name {
    color: #111;
    font-weight: 600;
}

.author-country {
    font-size: 0.875rem;
    color: #666;
}

/* About Section */
.about-section {
    background-color: white;
}

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

.about-content {
    padding-right: 2rem;
}

.about-text {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-label {
    color: #666;
}

.about-image {
    height: 31.25rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #555;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #2E7D32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

textarea.form-input {
    resize: none;
    font-family: inherit;
}

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

.contact-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-icon {
    background-color: rgba(46, 125, 50, 0.1);
}

.phone-icon i {
    color: #2E7D32;
}

.email-icon {
    background-color: rgba(21, 101, 192, 0.1);
}

.email-icon i {
    color: #1565C0;
}

.location-icon {
    background-color: rgba(212, 175, 55, 0.1);
}

.location-icon i {
    color: #D4AF37;
}

.contact-details h3 {
    margin-bottom: 0.25rem;
    color: #111;
}

.contact-details p {
    color: #666;
    font-size: 0.95rem;
}

.map-placeholder {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    padding: 1.5rem;
    border-radius: 1rem;
    height: 16rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6b7280;
}

.map-placeholder i {
    width: 3rem;
    height: 3rem;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.map-subtitle {
    font-size: 0.875rem;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-text {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-col h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

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

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Booking Page Styles */
.booking-page {
    min-height: 100vh;
    background-color: #f9fafb;
    padding: 3rem 0;
}

.booking-header {
    margin-bottom: 2rem;
}

.booking-header h1 {
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 0.75rem;
}

.booking-header p {
    font-size: 1.25rem;
    color: #666;
}

.booking-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.booking-form-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #2E7D32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.date-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.date-input-wrapper i {
    position: absolute;
    left: 1rem;
    color: #9ca3af;
    pointer-events: none;
}

.date-input {
    padding-left: 3rem !important;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.place-card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
}

.place-card:hover {
    border-color: #d1d5db;
}

.place-card.selected {
    border-color: #2E7D32;
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.2);
}

.place-image {
    position: relative;
    height: 8rem;
}

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

.place-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.place-info {
    position: absolute;
    bottom: 0.5rem;
    left: 0.75rem;
    color: white;
}

.place-name {
    font-size: 0.875rem;
    font-weight: 600;
}

.place-duration {
    font-size: 0.75rem;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.place-check {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 2rem;
    height: 2rem;
    background-color: #2E7D32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.place-check i {
    color: white;
    width: 1.25rem;
    height: 1.25rem;
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-card:hover {
    border-color: #d1d5db;
}

.service-card.selected {
    border-color: #2E7D32;
    background-color: rgba(46, 125, 50, 0.05);
}

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

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
    transition: all 0.3s;
}

.service-card.selected .service-icon {
    background-color: #2E7D32;
}

.service-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: #6b7280;
}

.service-card.selected .service-icon i {
    color: white;
}

.service-title {
    color: #111;
    font-weight: 600;
}

.service-description {
    font-size: 0.875rem;
    color: #666;
}

.service-price {
    text-align: right;
}

.price {
    color: #D4AF37;
    font-weight: 600;
    font-size: 1.125rem;
}

.price-label {
    font-size: 0.75rem;
    color: #666;
}

/* Meals Grid */
.meals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.meal-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.meal-card:hover {
    border-color: #d1d5db;
}

.meal-card.selected {
    border-color: #2E7D32;
    background-color: rgba(46, 125, 50, 0.05);
}

.meal-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
    margin: 0 auto 0.75rem;
    transition: all 0.3s;
}

.meal-card.selected .meal-icon {
    background-color: #2E7D32;
}

.meal-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: #6b7280;
}

.meal-card.selected .meal-icon i {
    color: white;
}

.meal-title {
    color: #111;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.meal-price {
    color: #D4AF37;
    font-weight: 600;
}

/* Details Form */
.details-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.full-width {
    grid-column: 1 / -1;
}

/* Booking Summary */
.booking-summary-column {
    position: relative;
}

.booking-summary {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 7rem;
}

.booking-summary h2 {
    font-size: 1.5rem;
    color: #111;
    margin-bottom: 1.5rem;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.summary-item i {
    width: 1.25rem;
    height: 1.25rem;
    color: #2E7D32;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.summary-label {
    font-size: 0.875rem;
    color: #666;
}

.summary-value {
    color: #111;
    font-weight: 500;
}

.summary-places {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-places div {
    font-size: 0.875rem;
    color: #111;
}

.summary-pricing {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    color: #666;
}

.price-total {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-total span:first-child {
    font-size: 1.25rem;
    color: #111;
    font-weight: 600;
}

.total-amount {
    font-size: 1.875rem;
    color: #D4AF37;
    font-weight: 600;
}

.cancellation-policy {
    margin-top: 1rem;
    padding: 1rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.cancellation-policy i {
    width: 1.25rem;
    height: 1.25rem;
    color: #D4AF37;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.cancellation-policy div {
    font-size: 0.875rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-summary {
        position: static;
    }

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

    .about-content {
        padding-right: 0;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero-description {
        font-size: 1.125rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

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

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

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

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

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

    .booking-header h1 {
        font-size: 2rem;
    }

    .booking-card {
        padding: 1.5rem;
    }
}
