/* Frera Safaris Website - Main Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Product+Sans:wght@400;500;700&display=swap');

:root {
    --primary-color: #013400;
    --secondary-color: #013400;
    --accent-color: #3498db;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Product Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

/* ================= TYPOGRAPHY ================= */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

/* Language Notice */
.language-notice {
    background-color: rgba(232, 168, 13, 0.1);
    border: 1px solid #e8a80d;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
}

.language-notice p {
    color: #e8a80d;
    margin: 0;
    font-size: 0.95rem;
}

.language-notice i {
    margin-right: 8px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

h4 {
    font-size: 1.3rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-book {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-book:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(1, 52, 0, 0.3);
}

/* ================= NAVIGATION ================= */
.navbar {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-color);
    gap: 10px;
}

.nav-logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

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

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.language-selector {
    margin-left: auto;
    margin-right: 20px;
}

.language-selector select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    background-color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

/* ================= PAGE HEADER ================= */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ================= FEATURED TOURS SECTION ================= */
.featured-tours {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    text-align: center;
}

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

.tour-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.tour-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tour-info {
    padding: 20px;
}

.tour-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

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

.tour-rating {
    margin: 10px 0;
}

.stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-text {
    color: #999;
    font-size: 0.85rem;
    margin-left: 5px;
}

/* ================= WHY US SECTION ================= */
.why-us {
    padding: 80px 20px;
}

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

.benefit-card {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ================= TRIPADVISOR RATINGS ================= */
.tripadvisor-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

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

.rating-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.rating-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.rating-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin: 0;
    font-size: 1rem;
}

.reviewer-info .location {
    color: #999;
    font-size: 0.85rem;
}

.ta-logo {
    margin-left: auto;
    font-size: 0.85rem;
    color: #00a699;
    font-weight: 600;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.review-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.ta-badge {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
}

.ta-badge img {
    height: 40px;
    margin-bottom: 10px;
}

/* ================= SUSTAINABILITY SECTION ================= */
.sustainability {
    padding: 80px 20px;
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 3rem;
}

.sustainability-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.sustainability-list {
    list-style: none;
}

.sustainability-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
}

.sustainability-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.sustainability-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* ================= STAKEHOLDERS LOGOS ================= */
.stakeholders {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 3rem;
    align-items: center;
}

.logo-item {
    text-align: center;
    padding: 20px;
}

.logo-item img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item:hover img {
    opacity: 1;
}

/* ================= NEWSLETTER SECTION ================= */
.newsletter {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.newsletter h2 {
    color: white;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 20px auto 0;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px 16px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 28px;
}

/* ================= TOUR PACKAGES DETAIL ================= */
.tour-filters {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.filter-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tours-container {
    padding: 60px 20px;
}

.tour-package {
    margin-bottom: 80px;
    background: white;
}

.tour-header-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.tour-header-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
}

.tour-header-overlay h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.tour-header-overlay .duration {
    font-size: 1.1rem;
    opacity: 0.9;
}

.tour-content {
    padding: 40px;
}

.tour-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
    text-align: justify;
}

.tour-details {
    margin-top: 30px;
}

.detail-section {
    margin-bottom: 50px;
}

.detail-section h3 {
    margin-bottom: 25px;
    color: var(--dark-color);
    font-size: 1.6rem;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.inclusion-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.inclusion-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.inclusion-item h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.inclusion-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.activities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.activity-item {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.activity-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.activity-item h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.activity-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.highlights-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.highlights-list li {
    padding: 12px 0;
    color: #555;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
}

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

.tour-pricing {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

.tour-pricing h3 {
    color: white;
    margin-bottom: 20px;
}

.price-card {
    text-align: center;
}

.price-card .price {
    font-size: 1rem;
    opacity: 0.9;
}

.price-card .amount {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px 0;
}

.price-card .per-person {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* ================= CTA SECTION ================= */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ================= FOOTER ================= */
.footer {
    background-color: #013400;
    color: #e8a80d;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    color: #e8a80d;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(232, 168, 13, 0.8);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(232, 168, 13, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e8a80d;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(232, 168, 13, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(232, 168, 13, 0.8);
    font-size: 0.9rem;
}

/* ================= ABOUT PAGE ================= */
.company-story {
    padding: 80px 20px;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.mission-vision {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

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

.mvv-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mvv-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mvv-card h3 {
    margin-bottom: 15px;
}

.mvv-card p,
.mvv-card ul {
    color: #666;
    font-size: 0.95rem;
}

.mvv-card ul {
    list-style: none;
    text-align: left;
}

.mvv-card ul li {
    margin-bottom: 10px;
}

/* ================= TEAM SECTION ================= */
.team-section {
    padding: 80px 20px;
}

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

.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.bio {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill {
    background-color: #f0f0f0;
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ================= AWARDS SECTION ================= */
.awards-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

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

.award-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.award-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.award-item h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.award-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* ================= IMPACT SECTION ================= */
.impact-section {
    padding: 80px 20px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 3rem 0 5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1rem;
    margin: 0;
}

.impact-content {
    max-width: 900px;
}

.impact-list {
    list-style: none;
}

.impact-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

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

.impact-list strong {
    color: var(--dark-color);
}

/* ================= WELLNESS PAGE ================= */
.wellness-intro {
    padding: 80px 20px;
}

.wellness-intro h2 {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.wellness-intro p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

.wellness-programs {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

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

.wellness-package {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.wellness-package:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wellness-package:hover .package-image img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-content {
    padding: 25px;
}

.package-content h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.package-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.program-details {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.program-details h4 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.program-details ul {
    list-style: none;
}

.program-details ul li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: #666;
}

.program-duration,
.program-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.program-duration:last-of-type {
    border-bottom: none;
}

.duration-label,
.price-label {
    font-weight: 600;
    color: var(--dark-color);
}

.duration-value {
    color: var(--primary-color);
    font-weight: 600;
}

.price-value {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.price-note {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-top: 3px;
}

/* ================= COMMUNITY WELLNESS ================= */
.community-wellness {
    padding: 80px 20px;
}

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

.community-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.community-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.community-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.community-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* ================= WELLNESS BENEFITS ================= */
.wellness-benefits {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.wellness-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.wellness-benefits .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.benefit-item {
    text-align: left;
    padding: 25px;
}

.benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.benefit-item h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* ================= BOOKING PAGE ================= */
.booking-section {
    padding: 60px 20px;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.booking-form-container h2 {
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
}

fieldset {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
}

legend {
    padding: 0 10px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
}

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

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.1);
}

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

.form-group.checkbox {
    margin-bottom: 20px;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
    margin-bottom: 0;
}

.form-group.checkbox label {
    display: inline;
    margin-bottom: 0;
    font-weight: normal;
}

.form-message {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ================= BOOKING SUMMARY SIDEBAR ================= */
.booking-summary {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.booking-summary h3 {
    margin-bottom: 25px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.summary-item .label {
    font-weight: 600;
    color: var(--dark-color);
}

.summary-item .value {
    color: #666;
}

.price-summary {
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin: 25px 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.price-row:last-child {
    margin-bottom: 0;
    border-top: 2px solid #eee;
    padding-top: 10px;
    font-weight: bold;
    color: var(--dark-color);
}

.total-amount {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.help-section {
    background: white;
    padding: 20px;
    border-radius: 6px;
}

.help-section h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.help-section p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #666;
}

/* ================= WHY BOOK SECTION ================= */
.why-book {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.why-book h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

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

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        gap: 1rem;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .language-selector {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-summary {
        position: static;
        top: auto;
    }

    .sustainability-content {
        grid-template-columns: 1fr;
    }

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

    .tour-card,
    .benefit-card,
    .team-member {
        margin-bottom: 20px;
    }
}

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

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .tours-grid,
    .benefits-grid,
    .team-grid,
    .wellness-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    fieldset {
        padding: 15px;
    }

    .logo-item img {
        max-height: 60px;
    }
}
