/* 
=============================================
Suối Camp - Main CSS Stylesheet
Author: [Author Name]
Version: 1.0
=============================================
*/

/* 
=============================================
Table of Contents:
1. General Styles
2. Typography
3. Header & Navigation
4. Hero Section
5. Common Section Styles
6. Home Page Sections
7. About Page Styles
8. Services Page Styles
9. Experiences Page Styles
10. Pricing Page Styles
11. Contact Page Styles
12. Forms & Buttons
13. Cards & Boxes
14. Footer
15. Responsive Adjustments
=============================================
*/

/*=============================================
1. General Styles (Mobile First)
=============================================*/
:root {
    --primary-color: #3c6e71; /* Forest green */
    --secondary-color: #d9c2a3; /* Sandy beige */
    --accent-color: #e76f51; /* Terracotta */
    --dark-color: #284b63; /* Deep blue */
    --light-color: #f8f9fa; /* Off-white */
    --text-color: #333333;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Roboto', 'Arial', 'Helvetica Neue', Helvetica, Tahoma, Verdana, sans-serif;
    color: #222;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced touch targets for mobile */
a, button, [role="button"], input, textarea, select {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
}

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

a:hover, a:focus {
    color: var(--accent-color);
}

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

.bg-light {
    background-color: #f8f9fa !important;
}

/* Improved container spacing for mobile */
.container {
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/*=============================================
2. Typography (Mobile First)
=============================================*/
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', 'Arial', 'Helvetica Neue', Helvetica, Tahoma, Verdana, sans-serif;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 1.8rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.3rem;
}

h4 {
    font-size: 1.1rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.9rem;
}

.section-title {
    position: relative;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Responsive typography */
@media (min-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
}

.section-heading {
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
}

/*=============================================
3. Header & Navigation (Mobile First)
=============================================*/
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 10px 0;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    padding: 8px 0;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    padding: 0;
    margin-right: auto;
}

.navbar-brand .logo {
    height: 35px;
    width: auto;
    transition: height 0.3s ease;
}

/* Hamburger menu styling */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

.site-header.scrolled .navbar-toggler {
    background: rgba(60, 110, 113, 0.1);
}

.site-header.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2860, 110, 113, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navigation menu */
.navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-header.scrolled .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
}

.navbar-nav {
    padding: 1rem 0;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 600;
    padding: 12px 20px;
    position: relative;
    border-radius: 8px;
    margin: 2px 8px;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(60, 110, 113, 0.1);
    transform: translateX(5px);
}

/* Desktop styles */
@media (min-width: 992px) {
    .site-header {
        padding: 20px 0;
    }
    
    .site-header.scrolled {
        padding: 15px 0;
    }
    
    .navbar-brand .logo {
        height: 50px;
    }
    
    .navbar-toggler {
        display: none;
    }
    
    .navbar-collapse {
        background: none !important;
        backdrop-filter: none !important;
        border-radius: 0;
        margin-top: 0;
        box-shadow: none !important;
        border: none !important;
    }
    
    .navbar-nav {
        padding: 0;
        flex-direction: row;
    }
    
    .navbar-light .navbar-nav .nav-link {
        color: #fff;
        background: none !important;
        margin: 0;
        padding: 10px 20px;
    }
    
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--secondary-color);
        background: none !important;
        transform: none;
    }
    
    .site-header.scrolled .navbar-light .navbar-nav .nav-link {
        color: var(--text-color);
    }
    
    .site-header.scrolled .navbar-light .navbar-nav .nav-link:hover,
    .site-header.scrolled .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary-color);
    }
}

/* --- HEADER & HAMBURGER MOBILE IMPROVEMENTS --- */
@media (max-width: 991px) {
  .site-header {
    background: rgba(255,255,255,0.97) !important;
    box-shadow: 0 2px 12px rgba(44,62,80,0.08);
    border-bottom: 1.5px solid #e0e0e0;
    padding: 8px 0;
  }
  .navbar-brand .logo {
    height: 36px;
    filter: drop-shadow(0 2px 4px rgba(44,62,80,0.08));
  }
  .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #3c6e71;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    width: 48px;
    height: 48px;
    margin-left: auto;
    transition: background 0.2s, border 0.2s, box-shadow 0.2s;
    z-index: 1100;
    position: relative;
  }
  .navbar-toggler:focus, .navbar-toggler:hover {
    background: #f2f6f7;
    border-color: #e76f51;
    box-shadow: 0 4px 16px rgba(231,111,81,0.12);
  }
  .navbar-toggler-icon {
    width: 2rem;
    height: 2rem;
    background-image: none !important;
    position: relative;
    display: inline-block;
  }
  .navbar-toggler-icon::before, .navbar-toggler-icon::after, .navbar-toggler-icon span {
    content: '';
    display: block;
    height: 3.5px;
    width: 28px;
    background: #3c6e71;
    border-radius: 2px;
    margin: 6px 0;
    transition: all 0.3s;
  }
  .navbar-toggler-icon span {
    margin: 0;
  }
}


/*=============================================
4. Hero Section
=============================================*/
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.hero-buttons .btn {
    margin: 0.25rem;
}

/*=============================================
5. Common Section Styles
=============================================*/
.page-banner {
    position: relative;
    background: url('../../images/banner/banner.jpg') no-repeat center center;
    background-size: cover;
    padding: 150px 0 80px;
    color: #fff;
    text-align: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.page-banner h1 {
    font-size: 2.5rem;
    color: #fff;
    position: relative;
    z-index: 2;
}

.page-banner .breadcrumb {
    position: relative;
    z-index: 2;
    justify-content: center;
    background: transparent;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item.active,
.page-banner .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
}

.cta-section {
    background-color: var(--primary-color);
    color: #fff;
    padding: 3rem 0;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-section p {
    margin-bottom: 0;
}

/*=============================================
6. Home Page Sections
=============================================*/
/* Highlights Section */
.highlights-section {
    padding: 5rem 0;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background: #fff;
    height: 100%;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.feature-icon i {
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

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

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 1rem;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-author h5 {
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/*=============================================
7. About Page Styles
=============================================*/
.about-section,
.glamping-section,
.location-section,
.nature-section,
.vision-section {
    padding: 5rem 0;
}

.about-image,
.glamping-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.location-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.location-details {
    padding: 2rem;
}

.location-details h4 {
    margin-top: 1.5rem;
}

.location-details ul {
    padding-left: 1rem;
}

.location-details ul li {
    margin-bottom: 0.5rem;
}

.nature-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.vision-card {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background: #fff;
    height: 100%;
}

/*=============================================
8. Services Page Styles
=============================================*/
.accommodation-section,
.facilities-section,
.amenities-section {
    padding: 5rem 0;
}

.accommodation-item {
    margin-bottom: 4rem;
}

.accommodation-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.accommodation-content h3 {
    margin-bottom: 1rem;
}

.accommodation-details {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.facility-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.facility-image {
    overflow: hidden;
}

.facility-image img {
    transition: transform 0.5s ease;
    width: 100%;
}

.facility-card:hover .facility-image img {
    transform: scale(1.05);
}

.facility-features {
    padding-left: 1.5rem;
    list-style-type: none;
}

.facility-features li {
    margin-bottom: 0.5rem;
}

.amenity-item {
    padding: 1.5rem;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

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

.amenity-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/*=============================================
9. Experiences Page Styles
=============================================*/
.intro-section,
.activities-section,
.gallery-section,
.testimonial-section,
.healing-section {
    padding: 5rem 0;
}

.activity-item {
    margin-bottom: 4rem;
}

.activity-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.activity-content h3 {
    margin-bottom: 1rem;
}

.activity-details {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.gallery-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gallery-card img {
    width: 100%;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-overlay i {
    font-size: 2rem;
}

/*=============================================
10. Pricing Page Styles
=============================================*/
.pricing-intro,
.pricing-section,
.policies-section,
.booking-section {
    padding: 5rem 0;
}

.pricing-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
}

.featured {
    border: 3px solid var(--primary-color);
}

.featured-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-bottom-left-radius: 10px;
}

.pricing-header {
    padding: 2rem;
    background-color: var(--light-color);
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-subtitle {
    color: #666;
}

.pricing-body {
    padding: 2rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 1rem;
    font-weight: 600;
    margin-right: 0.25rem;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: #666;
    margin-left: 0.25rem;
}

.price-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style-type: none;
    padding-left: 0;
}

.pricing-features li {
    margin-bottom: 0.75rem;
}

.pricing-features i {
    margin-right: 0.5rem;
}

.pricing-footer {
    padding: 1rem 2rem 2rem;
}

.policy-card {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.policy-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
}

.policy-content {
    flex: 1;
}

.policy-content h3 {
    margin-bottom: 1rem;
}

.policy-content ul {
    padding-left: 0;
    list-style-type: none;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
}

.booking-form-wrapper {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/*=============================================
11. Contact Page Styles
=============================================*/
.contact-info-section,
.map-section,
.contact-form-section,
.faq-section,
.newsletter-section {
    padding: 5rem 0;
}

.contact-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.directions-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.directions-card h3 {
    margin-bottom: 1.5rem;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.newsletter-box {
    background: #fff;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.social-link-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-5px);
}

/*=============================================
12. Forms & Buttons
=============================================*/
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.form-control {
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 1rem;
    border: 1px solid #ddd;
    box-shadow: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(60, 110, 113, 0.25);
}

textarea.form-control {
    border-radius: 20px;
}

/*=============================================
13. Cards & Boxes
=============================================*/
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.card-img, .card-img-top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(60, 110, 113, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(60, 110, 113, 0.25);
}

.accordion-item {
    border-color: #eee;
}

/*=============================================
14. Footer
=============================================*/
.site-footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 4rem 0 2rem;
}

.site-footer h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 1.5rem;
}

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

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.contact-info,
.opening-hours {
    list-style-type: none;
    padding-left: 0;
}

.contact-info li,
.opening-hours li {
    margin-bottom: 0.75rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

/*=============================================
15. Responsive Adjustments
=============================================*/
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .site-header {
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: relative;
    }
    
    .navbar-light .navbar-nav .nav-link {
        color: var(--text-color);
    }
    
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary-color);
    }
    
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .page-banner {
        padding: 120px 0 60px;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .policy-card {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .booking-form-wrapper,
    .contact-form-wrapper,
    .newsletter-box {
        padding: 1.5rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .accommodation-details,
    .activity-details {
        padding: 1rem;
    }
}

/*=============================================
16. Floating Action Button (FAB)
=============================================*/
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.fab-main {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}

.fab-main:hover {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.fab-main i {
    transition: transform 0.3s ease;
}

.fab-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 15px;
}

.fab-options.fab-open .fab-option {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fab-option {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s ease;
    transition-delay: 0.1s;
}

.fab-option:nth-child(2) {
    transition-delay: 0.2s;
}

.fab-link {
    display: flex;
    align-items: center;
    background: white;
    padding: 12px 16px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.fab-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.fab-link i {
    font-size: 16px;
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.fab-label {
    font-size: 14px;
    font-weight: 500;
}

/* Mobile responsiveness for FAB */
@media (max-width: 768px) {
    .fab-container {
        bottom: 20px;
        right: 20px;
    }
    
    .fab-main {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .fab-options {
        bottom: 60px;
    }
    
    .fab-link {
        padding: 10px 14px;
    }
    
    .fab-label {
        font-size: 13px;
    }
}

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