/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

/* ===== HEADER ===== */
.site-header {
    background: #fff;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* ===== LOGO ===== */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    color: #2c7a4b;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    justify-content: center;
}

.logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c7a4b;
    text-align: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2c7a4b;
}

/* ===== HERO ===== */
.hero {
background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
            url('https://images.unsplash.com/photo-1518509562904-e7ef99cdcc86?w=1600&q=80') center/cover no-repeat;
    background-color: #2c7a4b;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: #2c7a4b;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: #235f3a;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid #2c7a4b;
    color: #2c7a4b;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #2c7a4b;
    color: #fff;
}

/* ===== TOURS SECTION ===== */
.tours {
    padding: 80px 40px;
    background: #f9f9f9;
}

.tours h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c7a4b;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.tour-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.tour-info {
    padding: 25px;
}

.tour-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.tour-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .nav-menu {
        gap: 15px;
    }
}

/* ===== BOOKING FORM ===== */
.booking-form {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
}

.booking-field {
    margin-bottom: 20px;
}

.booking-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.booking-field .required {
    color: #e74c3c;
}

.booking-field input[type="date"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.3s;
}

.booking-field input[type="date"]:focus {
    border-color: #2c7a4b;
    outline: none;
}

/* Participant Counter */
.participant-counter {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.counter-btn {
    background: #2c7a4b;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.3s;
}

.counter-btn:hover {
    background: #235f3a;
}

.participant-counter input[type="number"] {
    width: 70px;
    text-align: center;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px;
    appearance: textfield;
    -moz-appearance: textfield;
}

.participant-counter input[type="number"]::-webkit-outer-spin-button,
.participant-counter input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Booking Summary */
.booking-summary {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #666;
}

.total-row {
    border-top: 2px solid #e0e0e0;
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
}

/* Book Now Button */
.book-now-btn {
    width: 100%;
    background: #2c7a4b !important;
    color: #fff !important;
    padding: 16px !important;
    border-radius: 50px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s !important;
}

.book-now-btn:hover {
    background: #235f3a !important;
    transform: translateY(-2px);
}

/* ===== PAGE CONTENT ===== */
.page-content {
    padding: 60px 20px;
    min-height: 60vh;
}

/* ===== SHOP PAGE ===== */
.woocommerce-products-header__title,
.woocommerce-shop .page-title,
.woocommerce-result-count,
.woocommerce-ordering {
    display: none;
}

ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    list-style: none !important;
    padding: 40px 0 !important;
    margin: 0 !important;
}

ul.products li.product {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 0 !important;
    float: none !important;
    width: auto !important;
}

ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

ul.products li.product img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

ul.products li.product .price,
ul.products li.product .price .amount {
    color: #2c7a4b !important;
    font-weight: 600;
}
ul.products::before,
ul.products::after {
    display: none !important;
}

ul.products li.product {
    clear: none !important;
}

.woocommerce .page-content {
    padding-top: 40px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}

ul.products li.product h2.woocommerce-loop-product__title {
    font-size: 1.1rem;
    padding: 15px 20px 5px;
    color: #222;
    font-weight: 700;
}

ul.products li.product .price {
    padding: 0 20px 15px;
}

ul.products li.product a.button {
    display: block !important;
    margin: 0 20px 20px !important;
    background: transparent !important;
    color: #2c7a4b !important;
    border: 2px solid #2c7a4b !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-align: center !important;
    transition: all 0.3s !important;
    font-size: 0.95rem !important;
}

ul.products li.product a.button:hover {
    background: #2c7a4b !important;
    color: #fff !important;
}

ul.products li.product h2.woocommerce-loop-product__title {
    padding: 15px 20px 5px 20px !important;
    margin: 0 !important;
}

ul.products li.product .price {
    padding: 0 20px 15px 20px !important;
    margin: 0 !important;
}

ul.products li.product a.button {
    margin: 0 20px 20px 20px !important;
    width: calc(100% - 40px) !important;
    box-sizing: border-box !important;
}

/* ===== SECTION SHARED ===== */
.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-top: -30px;
    margin-bottom: 50px;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    padding: 80px 40px;
    background: #fff;
}

.why-us h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c7a4b;
    margin-bottom: 15px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.why-us-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.why-us-card h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 10px;
    font-weight: 700;
}

.why-us-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== TOURS CTA ===== */
.tours-cta {
    text-align: center;
    margin-top: 50px;
}

.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.tour-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c7a4b;
}

/* ===== ABOUT US ===== */
.about-us {
    padding: 80px 40px;
    background: #f9f9f9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    height: 450px;
}

.about-content h2 {
    font-size: 2.2rem;
    color: #2c7a4b;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 35px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #2c7a4b;
}

.stat-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 40px;
    background: #fff;
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c7a4b;
    margin-bottom: 15px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question {
    font-weight: 700;
    font-size: 1rem;
    color: #222;
    padding-right: 30px;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.3rem;
    color: #2c7a4b;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    padding-top: 12px;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

    .about-stats {
        gap: 20px;
    }
}

.wc-block-cart__submit-button {
    border: 1px solid;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {

    /* Header */
    .site-header {
        padding: 15px 20px;
    }

    .header-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .custom-logo {
        height: 45px !important;
    }

    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Hero */
    .hero {
        min-height: 60vh;
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Why Choose Us */
    .why-us {
        padding: 50px 20px;
    }

    .why-us h2 {
        font-size: 1.8rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-us-card {
        padding: 25px 20px;
    }

    /* Tours Section */
    .tours {
        padding: 50px 20px;
    }

    .tours h2 {
        font-size: 1.8rem;
    }

    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tour-card {
        display: flex;
        flex-direction: column;
    }

    .tour-image img {
        height: 200px;
    }

    .tour-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* About Us */
    .about-us {
        padding: 50px 20px;
    }

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

    .about-image img {
        height: 250px;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-stats {
        gap: 20px;
        justify-content: space-between;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    /* FAQ */
    .faq {
        padding: 50px 20px;
    }

    .faq h2 {
        font-size: 1.8rem;
    }

    .faq-list {
        padding: 0;
    }

    /* Footer */
    .site-footer {
        padding: 40px 20px;
    }

    /* Section subtitles */
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    /* Page content */
    .page-content {
        padding: 30px 15px;
    }

    /* Shop grid */
    ul.products {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 20px 0 !important;
    }

    /* Single product */
    .woocommerce div.product {
        flex-direction: column;
    }

    .booking-form {
        padding: 20px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    ul.products {
        grid-template-columns: 1fr !important;
    }
}