body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;

    /* base background matching the example provided by user */
    background-image: url('/assets/images/bg.jpg');
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: 
}   

.alert-success{
    background:#d1fae5;
    color:#065f46;
    padding:12px;
    border-radius:8px;
    margin-bottom:20px;
}

.logo img {
    width: 80px;
    height: 80px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
    height: 90px;
    background: #704721;
    color: #FAF3E0;
    position: sticky;
  top: 0;
  /* overflow: hidden; */
  scroll-behavior: smooth;
  z-index: 1000; /* Ensures it stays on top of other content */
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
}
.navbar a:hover {
    text-decoration: underline;
}
.btn {
    background: #F57C00;
    padding: 8px 15px;
    text-decoration: none;
    color: black;
    border-radius: 5px;
}

.hero {
    min-height: 100vh;
    padding: 120px 20px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    position: relative;
}
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 100px 20px;
        background-position: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding: 80px 15px;
    }
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* make travel guide images circular on about page */
.about-section .cards .card-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}

/* simple blog listing styles */
.page-header {
    text-align: center;
    padding: 60px 20px 30px;
    background: #f5f5f5;
}
.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.page-header p {
    color: #666;
    font-size: 1rem;
}
.blog-section {
    padding: 40px 20px;
}
.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.blog-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.blog-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
}
.blog-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-content h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
}
.blog-meta {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 15px;
}
.blog-content p {
    flex: 1;
    margin-bottom: 15px;
    color: #444;
}
.blog-readmore {
    align-self: flex-start;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}
.blog-readmore:hover {
    text-decoration: underline;
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #F57C00;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card h3 {
    margin: 0 0 12px 0;
    font-size: 1.5em;
    color: #333;
}

.card-description {
    margin: 0 0 18px 0;
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

.card-details {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
}

.detail-item {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.8em;
    color: #999;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 0.95em;
    color: #333;
    font-weight: 600;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
}

.price {
    font-size: 1.3em;
    font-weight: bold;
    color: #F57C00;
}

.card-btn {
    background: #704721;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-weight: bold;
}

.card-btn:hover {
    background: #5a3818;
}

@media (max-width: 1024px) {
    .cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        padding: 30px;
    }

    .card-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .cards {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .card-image {
        height: 200px;
    }

    .card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .card-content {
        padding: 20px;
    }

    .card-description,
    .detail-label,
    .detail-value,
    .price {
        font-size: 0.95em;
    }

    .card-btn {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
}

.card-highlights {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin: 16px 0;
    border-left: 4px solid #F57C00;
}

.card-highlights p {
    margin: 0 0 10px 0;
    font-weight: bold;
    color: #333;
}

.card-highlights ul {
    margin: 0;
    padding-left: 20px;
    list-style-position: inside;
}

.card-highlights li {
    color: #555;
    margin-bottom: 6px;
    font-size: 0.95em;
}

.destinations-section {
    background: #fafafa;
    padding: 40px 0;
}

.card img {
    width: 100%;
    height: auto;
}

.footer {
    background: #222;
    color: white;
    padding: 40px;
    text-align: center;
    margin-top: auto;
}

.page-header {
    text-align: center;
    padding: 60px 20px;
    background: #e9ecef;
}

.content {
    padding: 40px;
    margin-left: 50px;
    text-align: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 40px;
    max-width: 600px;
    margin: auto;
}

.booking-form input,
.booking-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
}

.featured h2 {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.testimonials-window {
  width: 100%;
  overflow: hidden; /* This hides the cards that aren't in view */
}

.testimonials {
  display: flex;
  gap: 20px;
  padding: 20px;
  width: 50%; /* (Number of slides * 100) */
  animation: scrollTestimonials 10s infinite ease-in-out;
}

/* Gallery Styles */
.gallery-section {
    padding: 40px 20px;
    background: #f9f9f9;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #704721;
    background: white;
    color: #704721;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 0.95em;
}

.filter-btn:hover {
    background: #704721;
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #F57C00;
    border-color: #F57C00;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    aspect-ratio: 1 / 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.whatsapp-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    background: #25D366;
    border-radius: 50px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.whatsapp-widget a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 18px;
    font-weight: 600;
    font-size: 0.95rem;
}

.whatsapp-widget-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.whatsapp-widget-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.whatsapp-widget-text {
    text-transform: lowercase;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.whatsapp-widget:hover {
    transform: translateY(-2px);
    opacity: 0.98;
}

@media (max-width: 640px) {
    .whatsapp-widget {
        right: 12px;
        bottom: 12px;
    }

    .whatsapp-widget a {
        padding: 12px 16px;
        font-size: 0.87rem;
    }

    .whatsapp-widget-text {
        display: none;
    }
}

.gallery-overlay h3 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
}

.gallery-overlay p {
    margin: 0 0 20px 0;
    font-size: 0.95em;
    color: #ddd;
}

.lightbox-btn {
    padding: 10px 25px;
    background: #F57C00;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.lightbox-btn:hover {
    background: #e06e00;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

#lightbox-image {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #F57C00;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #F57C00;
}

#lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    font-size: 1.1em;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 5px;
}

.testimonials::-webkit-scrollbar {
    display: none; /* Hides scrollbar on Chrome, Safari, and Edge */
}

.testimonial-item {
  flex: 0 0 50%; /* Each card takes up 80% of the container width */
  scroll-snap-align: center; /* Snaps card to the center */
  background: #f4f4f4;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}
.testimonial-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

@keyframes scrollTestimonials {
  0%, 30% { transform: translateX(0); } /* Stay at 1st slide */
  33%, 63% { transform: translateX(calc(-33.33% - 6px)); } /* Move to 2nd slide */
  66%, 96% { transform: translateX(calc(-66.66% - 14px)); } /* Move to 3rd slide */
  100% { transform: translateX(0); } /* Snap back to start */
}

/* Pause when someone is reading */
.testimonials:hover {
  animation-play-state: paused;
}

/* Services Styles */
.services-section {
    padding: 40px 20px;
    background: #fafafa;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-intro h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.services-intro p {
    font-size: 1.05em;
    color: #666;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-align: center;
}

.service-card h3 {
    font-size: 1.5em;
    color: #333;
    margin: 0 0 15px 0;
    text-align: center;
}

.service-description {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #F57C00;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features ul {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

.service-features li {
    color: #555;
    margin-bottom: 8px;
    font-size: 0.9em;
    padding-left: 20px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F57C00;
    font-weight: bold;
}

.service-btn {
    background: #704721;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background 0.3s ease;
    font-weight: bold;
    margin-top: auto;
}

.service-btn:hover {
    background: #5a3818;
}

/* Booking Page Styles */
.booking-section {
    padding: 40px 20px;
    background: #f9f9f9;
}

.booking-container {
    max-width: 1400px;
    margin: 0 auto;
}

.booking-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ddd;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #F57C00;
    color: white;
    box-shadow: 0 4px 10px rgba(245, 124, 0, 0.3);
}

.step-label {
    font-weight: bold;
    color: #333;
    font-size: 0.9em;
    text-align: center;
}

.step-connector {
    width: 40px;
    height: 3px;
    background: #ddd;
    margin: 10px 0;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

.booking-form-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.booking-form h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 1.5em;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95em;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F57C00;
    box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #e74c3c;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.package-selection {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.package-option {
    cursor: pointer;
}

.package-option input[type="radio"] {
    display: none;
}

.package-card {
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.package-option input[type="radio"]:checked + .package-card {
    border-color: #F57C00;
    background: #fff8f0;
    box-shadow: 0 4px 12px rgba(245, 124, 0, 0.2);
}

.package-card h4 {
    margin: 0 0 8px 0;
    color: #333;
}

.package-card p {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 0.9em;
}

.package-price {
    font-weight: bold;
    color: #F57C00;
    font-size: 1.1em;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
    margin: 0;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    margin-right: 10px;
}

.checkbox label {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    cursor: pointer;
}

.checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-card {
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    background: white;
    transition: all 0.3s ease;
}

.payment-option input[type="radio"]:checked + .payment-card {
    border-color: #F57C00;
    background: #fff8f0;
}

.payment-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.payment-card h5 {
    margin: 10px 0 5px 0;
    color: #333;
}

.payment-card p {
    margin: 0;
    color: #666;
    font-size: 0.85em;
}

.payment-details {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #F57C00;
    margin-bottom: 20px;
}

.payment-details h5 {
    margin-top: 0;
    color: #333;
}

.detail-box {
    background: white;
    padding: 15px;
    border-radius: 6px;
}

.detail-box p {
    margin: 8px 0;
    color: #555;
    font-size: 0.9em;
}

.security-info {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 6px;
    color: #2e7d32;
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
}

.form-navigation {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.btn-primary,
.btn-secondary,
.btn-success {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #F57C00;
    color: white;
}

.btn-primary:hover {
    background: #e06e00;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #704721;
    border: 2px solid #704721;
}

.btn-secondary:hover {
    background: #f9f9f9;
}

.btn-success {
    background: #27ae60;
    color: white;
    font-size: 1.05em;
}

.btn-success:hover {
    background: #229954;
    transform: translateY(-2px);
}

/* Booking Info Section */
.booking-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.info-card h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.1em;
}

.info-card ul {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

.info-card li {
    margin-bottom: 10px;
    color: #666;
    padding-left: 20px;
    position: relative;
}

.info-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F57C00;
    font-weight: bold;
}

.faq-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h5 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 0.95em;
}

.faq-item p {
    margin: 0;
    color: #666;
    font-size: 0.85em;
}

.testimonial-card {
    background: linear-gradient(135deg, #F57C00 0%, #e06e00 100%);
    padding: 25px;
    border-radius: 12px;
    color: white;
    text-align: center;
}

.testimonial-card h4 {
    margin: 0 0 15px 0;
}

.testimonial-card p {
    margin: 10px 0;
    font-style: italic;
}

.testimonial-card .author {
    font-weight: bold;
    font-style: normal;
    margin-top: 15px;
}

.booking-summary-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #F57C00;
    margin-bottom: 25px;
}

.booking-summary-box h4 {
    margin: 0 0 15px 0;
    color: #333;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.summary-item.total {
    border-bottom: none;
    padding-top: 15px;
    border-top: 2px solid #F57C00;
    font-size: 1.15em;
    font-weight: bold;
    color: #F57C00;
}

/* Responsive Design */
@media (max-width: 968px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form-section {
        padding: 25px;
    }

    .booking-steps {
        gap: 10px;
    }

    .step-label {
        font-size: 0.8em;
    }
}

@media (max-width: 600px) {
    .booking-form-section {
        padding: 15px;
    }

    .form-navigation {
        flex-direction: column-reverse;
    }

    .btn-primary,
    .btn-secondary,
    .btn-success {
        width: 100%;
    }

    .booking-steps {
        gap: 5px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9em;
    }
}

/* About Page Styles */
.about-section {
    padding: 40px 20px;
    background: #fafafa;
}

.about-welcome {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.welcome-content h2 {
    font-size: 2.2em;
    color: #333;
    margin: 0 0 20px 0;
}

.welcome-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1em;
}

.welcome-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background: linear-gradient(135deg, #F57C00 0%, #e06e00 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.stat-box h3 {
    font-size: 2.5em;
    margin: 0 0 10px 0;
}

.stat-box p {
    margin: 0;
    font-size: 0.95em;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mission-card,
.vision-card,
.values-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #F57C00;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.4em;
}

.mission-card p,
.vision-card p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}

.values-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.values-card li {
    padding: 8px 0;
    color: #666;
    line-height: 1.6;
}

.values-card strong {
    color: #333;
}

/* Travel Tips Section */
.travel-tips-section {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.travel-tips-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.tip-icon {
    font-size: 3em;
    margin-bottom: 15px;
    display: block;
}

.tip-card h4 {
    color: #333;
    margin: 0 0 15px 0;
    font-size: 1.2em;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Page Styles */
.contact-section {
    padding: 40px 20px;
    background: #fafafa;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #F57C00;
}

.contact-info-card h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.1em;
}

.contact-info-card p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 0.95em;
}

.contact-info-card a {
    color: #F57C00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #e06e00;
}

.social {
    border-left: none;
    border-top: 4px solid #F57C00;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #F57C00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

.social-icon:hover {
    background: #e06e00;
    transform: translateY(-3px);
}

.contact-form-column {
    width: 100%;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-card h3 {
    color: #333;
    margin: 0 0 10px 0;
    font-size: 1.5em;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: Arial, sans-serif;
    font-size: 0.95em;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #F57C00;
    box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.1);
}

.contact-form .checkbox {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.contact-form .checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    margin-bottom: 0;
}

.contact-form .checkbox label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #F57C00;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #e06e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 124, 0, 0.3);
}

/* Contact Benefits */
.contact-benefits {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-benefits h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.benefit-card h4 {
    color: #333;
    margin: 0 0 12px 0;
    font-size: 1.2em;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-welcome {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .welcome-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .about-welcome {
        padding: 20px;
    }

    .welcome-stats {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 20px;
    }

    .contact-info-card {
        padding: 15px;
    }
}

/* Team Section Styles */
.team-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.team-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

.team-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member-simple {
    text-align: center;
    transition: all 0.3s ease;
}

.team-member-simple:hover {
    transform: translateY(-8px);
}

.member-image-simple {
    width: 220px;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin: 0 auto 15px auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.team-member-simple h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.1em;
}

.team-member-simple p {
    margin: 0;
    color: #F57C00;
    font-weight: 600;
    font-size: 0.9em;
}



/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 5px;
    transition: 0.3s ease;
}

/* X ANIMATION */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* HIDE MOBILE BOOK BTN ON DESKTOP */
.mobile-book {
    display: none;
}

/* MOBILE NAV */
@media (max-width: 768px) {

    .navbar {
        padding: 15px 20px;
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    .desktop-btn {
        display: none;
    }

    nav {
        position: absolute;
        top: 90px;
        right: 0;
        width: 100%;
        background: #704721;

        max-height: 0;
        overflow-y: auto;
        
        transition: max-height 0.4s ease;
    }

    nav.active {
        max-height: 600px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        margin: 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    nav ul li a {
        display: block;
        width: 100%;
    }

    .mobile-book {
        display: block;
        margin-top: 15px;
    }
}