/* ========================================
   Ahira Eco Adventures - Main Stylesheet
   ======================================== */

/* ===== CSS Variables / Custom Properties ===== */
:root {
    /* Primary Colors */
    --color-forest-green: #1a4a3a;
    --color-leaf-green: #2d7a4f;
    --color-earth-brown: #6b4c3b;
    --color-warm-orange: #e8793e;
    --color-cream: #f5efe6;
    --color-white: #ffffff;
    
    /* Semantic Colors */
    --color-primary: var(--color-forest-green);
    --color-secondary: var(--color-leaf-green);
    --color-accent: var(--color-warm-orange);
    --color-background: var(--color-cream);
    --color-text: #2c2c2c;
    --color-text-light: #6c6c6c;
    --color-border: #e0d6cc;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 74, 58, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 74, 58, 0.12);
    --shadow-lg: 0 8px 40px rgba(26, 74, 58, 0.16);
    --shadow-xl: 0 12px 60px rgba(26, 74, 58, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    --spacing-4xl: 80px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 0;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-primary);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-lg);
}

h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

h4 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

h5 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto var(--spacing-2xl);
    text-align: center;
}

/* ===== Buttons ===== */
.btn {
    padding: 12px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: #d6662a;
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-success {
    background: #25D366;
    color: var(--color-white);
}

.btn-success:hover {
    background: #1da851;
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-book-now {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.btn-book-now:hover {
    background: #d6662a;
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--color-white);
}

.btn-whatsapp:hover {
    background: #1da851;
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ===== Navbar ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 12px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 50px;
    width: auto;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-primary);
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Navbar Toggler - Mobile Hamburger */
.navbar-toggler {
    border: 2px solid var(--color-primary);
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.navbar-toggler:hover {
    background: var(--color-background);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(26, 74, 58, 0.15);
    outline: 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(26, 74, 58, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 28px;
    height: 28px;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 8px 0;
}

.dropdown-item {
    padding: 10px 24px;
    font-weight: 500;
    transition: var(--transition-normal);
}

.dropdown-item:hover {
    background: var(--color-background);
    color: var(--color-accent);
}

.dropdown-item i {
    width: 20px;
    color: var(--color-accent);
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    border-top: 1px solid var(--color-border);
    display: none;
}

@media (max-width: 991.98px) {
    .mobile-sticky-bar {
        display: block !important;
    }
}

.mobile-sticky-bar .btn {
    font-size: 0.9rem;
    padding: 10px 12px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-sticky-bar .btn-book-now {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

.mobile-sticky-bar .btn-book-now:hover {
    background: #d6662a;
    border-color: #d6662a;
    color: white;
}

.mobile-sticky-bar .btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.mobile-sticky-bar .btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    color: white;
}

/* ===== Hero Section ===== */
.hero-section {
    padding-top: 80px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(26, 74, 58, 0.3), rgba(26, 74, 58, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    color: var(--color-white);
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    padding: 0;
}

.hero-dot.active {
    background: var(--color-white);
    transform: scale(1.2);
}

.hero-dot:hover {
    background: var(--color-white);
}

.hero-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--color-white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* ===== Cards ===== */
.feature-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--color-border);
    text-align: center;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card .card-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===== Sections ===== */
section {
    padding: var(--spacing-4xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
    margin-bottom: var(--spacing-sm);
}

/* ===== Quick Info Section ===== */
.quick-info {
    background: var(--color-background);
    padding: var(--spacing-3xl) 0;
}

.quick-info .feature-card {
    border: none;
    box-shadow: var(--shadow-sm);
}

/* ===== About Section ===== */
.about-section {
    background: var(--color-white);
}

.about-content {
    padding: var(--spacing-xl) 0;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-normal);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--color-background);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: var(--spacing-xs);
}

/* ===== Activities Section ===== */
.activities-section {
    background: var(--color-background);
}

.activity-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.activity-card .card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--color-background);
}

.activity-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.activity-card:hover .card-image img {
    transform: scale(1.05);
}

.activity-card .card-body {
    padding: var(--spacing-lg);
}

.activity-card .card-icon {
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
}

.activity-card .card-title {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.activity-card .card-text {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

/* ===== Education Section ===== */
.education-section {
    background: var(--color-white);
}

.education-card {
    background: var(--color-background);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid var(--color-border);
}

.education-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.education-card .edu-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.education-card ul {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-md);
    margin-bottom: 0;
}

.education-card ul li {
    padding: 4px 0;
    padding-left: 24px;
    position: relative;
}

.education-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

/* ===== Culinary Section ===== */
.culinary-section {
    background: var(--color-background);
}

/* ===== Add-ons Section ===== */
.addons-section {
    background: var(--color-white);
}

/* ===== Experience Design Section ===== */
.experience-design {
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-4xl) 0;
}

.experience-design h2 {
    color: var(--color-white);
}

.experience-design .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.experience-design .feature-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.experience-design .feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.experience-design .feature-item i {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
}

.experience-design .feature-item h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 0;
}

/* ===== Support Section ===== */
.support-section {
    background: var(--color-background);
}

.support-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.support-card i {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
}

.support-card h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.support-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--color-secondary);
    color: white;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Gallery ===== */
.gallery-section {
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    background: var(--color-background);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--color-white);
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.gallery-overlay .badge {
    background: var(--color-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
}

.gallery-categories {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.category-btn {
    padding: 8px 20px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--color-text);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.category-btn:hover,
.category-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* ===== Footer ===== */
.site-footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.site-footer h3,
.site-footer h4 {
    color: var(--color-white);
}

.footer-brand .footer-title {
    font-size: 1.5rem;
    margin-top: var(--spacing-sm);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-accent);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: var(--spacing-sm);
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-contact i {
    width: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--color-white);
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-4px);
}

.footer-newsletter .newsletter-text {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.footer-newsletter .form-control {
    background: transparent;
    border: none;
    color: var(--color-white);
    padding: 12px 16px;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter .form-control:focus {
    box-shadow: none;
    background: transparent;
}

.footer-newsletter .btn {
    padding: 12px 20px;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
}

.footer-newsletter .btn:hover {
    background: #d6662a;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.footer-bottom .copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--color-white);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1030;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--color-white);
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: var(--color-white);
    box-shadow: var(--shadow-xl);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== Booking Page ===== */
.booking-section {
    padding-top: 120px;
}

.booking-form {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.booking-form .form-control,
.booking-form .form-select {
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: var(--transition-normal);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 0.25rem rgba(45, 122, 79, 0.1);
}

.booking-form .form-label {
    font-weight: 500;
    color: var(--color-primary);
}

.booking-form .invalid-feedback {
    color: #dc3545;
    font-size: 0.85rem;
}

.booking-summary {
    background: var(--color-background);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    position: sticky;
    top: 100px;
}

.booking-summary .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.booking-summary .summary-item:last-of-type {
    border-bottom: none;
}

.booking-summary .summary-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    padding-top: var(--spacing-md);
}

/* ===== Booking Success ===== */
.booking-success {
    padding-top: 120px;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-lg);
}

.booking-details {
    background: var(--color-background);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
    text-align: left;
    max-width: 600px;
    margin: var(--spacing-xl) auto;
}

.booking-details .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.booking-details .detail-row:last-child {
    border-bottom: none;
}

.booking-details .detail-row .badge {
    font-size: 0.85rem;
    padding: 4px 12px;
}

/* ===== Contact Page ===== */
.contact-form-wrapper {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.contact-info {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--color-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h6 {
    margin-bottom: 4px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.contact-item p {
    margin-bottom: 0;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: var(--spacing-3xl) 0;
    }
    
    .hero-slider {
        height: calc(100vh - 70px);
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 991.98px) {
    /* Mobile Menu Styles */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        border-top: 3px solid var(--color-accent);
        z-index: 1050;
    }
    
    .navbar-collapse .navbar-nav {
        padding: 0;
        gap: 2px;
    }
    
    .navbar-collapse .nav-item {
        border-bottom: 1px solid var(--color-border);
    }
    
    .navbar-collapse .nav-item:last-child {
        border-bottom: none;
    }
    
    .navbar-collapse .nav-link {
        padding: 14px 16px !important;
        font-size: 1.05rem;
        display: flex;
        align-items: center;
        gap: 12px;
        border-radius: var(--radius-sm);
        transition: var(--transition-normal);
        color: var(--color-text);
        font-weight: 500;
    }
    
    .navbar-collapse .nav-link:hover {
        background: var(--color-background);
        color: var(--color-accent);
    }
    
    .navbar-collapse .nav-link i {
        width: 28px;
        text-align: center;
        font-size: 1.2rem;
        color: var(--color-accent);
    }
    
    .navbar-collapse .nav-link.active {
        background: var(--color-background);
        color: var(--color-accent);
    }
    
    .navbar-collapse .nav-link.active i {
        color: var(--color-accent);
    }
    
    /* Dropdown in mobile */
    .navbar-collapse .dropdown {
        position: relative;
    }
    
    .navbar-collapse .dropdown-menu {
        border: none;
        background: var(--color-background);
        border-radius: var(--radius-sm);
        padding: 8px 0;
        margin: 4px 0 8px 0;
        box-shadow: none;
        position: static !important;
        transform: none !important;
        width: 100%;
    }
    
    .navbar-collapse .dropdown-item {
        padding: 10px 16px 10px 56px;
        font-size: 0.95rem;
        color: var(--color-text);
        border-radius: var(--radius-sm);
        transition: var(--transition-normal);
    }
    
    .navbar-collapse .dropdown-item:hover {
        background: var(--color-white);
        color: var(--color-accent);
    }
    
    .navbar-collapse .dropdown-item i {
        width: 20px;
        color: var(--color-accent);
        margin-right: 8px;
    }
    
    .navbar-collapse .dropdown-toggle::after {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        transition: var(--transition-normal);
    }
    
    .navbar-collapse .dropdown.show .dropdown-toggle::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    /* Mobile CTA buttons in nav */
    .navbar-collapse .nav-item .btn {
        padding: 14px;
        font-weight: 600;
        border-radius: var(--radius-sm);
        text-transform: uppercase;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .navbar-collapse .nav-item .btn-primary {
        background: var(--color-accent);
        border-color: var(--color-accent);
        color: white;
    }
    
    .navbar-collapse .nav-item .btn-primary:hover {
        background: #d6662a;
        border-color: #d6662a;
        color: white;
    }
    
    .navbar-collapse .nav-item .btn-success {
        background: #25D366;
        border-color: #25D366;
        color: white;
    }
    
    .navbar-collapse .nav-item .btn-success:hover {
        background: #1da851;
        border-color: #1da851;
        color: white;
    }
    
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-slider {
        height: calc(100vh - 60px);
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-controls {
        bottom: 20px;
    }
    
    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .quick-info .row {
        gap: var(--spacing-md);
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
    }
    
    .stat-item {
        padding: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .experience-design .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: var(--spacing-sm);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .whatsapp-float {
        bottom: 80px;
        right: 16px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .booking-section {
        padding-top: 100px;
    }
    
    .booking-form {
        padding: var(--spacing-lg);
    }
    
    .booking-summary {
        margin-top: var(--spacing-xl);
        position: static;
    }
    
    .mobile-sticky-bar {
        padding: 8px 0;
    }
    
    .mobile-sticky-bar .btn {
        font-size: 0.8rem;
        padding: 8px 10px;
    }
    
    .brand-logo {
        height: 40px;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.7rem;
    }
    
    .hero-slider {
        min-height: 350px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .gallery-categories {
        gap: var(--spacing-xs);
    }
    
    .category-btn {
        padding: 6px 14px;
        font-size: 0.85rem;
    }
    
    .experience-design .feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
    }
    
    .experience-design .feature-item {
        padding: var(--spacing-md);
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .mobile-sticky-bar .btn {
        font-size: 0.75rem;
        padding: 6px 8px;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 1.7rem;
    }
    h2 {
        font-size: 1.4rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .experience-design .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .mobile-sticky-bar .btn {
        font-size: 0.7rem;
        padding: 6px 8px;
    }
    
    .mobile-sticky-bar .btn i {
        font-size: 0.8rem;
    }
}

/* ===== Utility Classes ===== */
.text-forest {
    color: var(--color-forest-green);
}

.text-leaf {
    color: var(--color-leaf-green);
}

.text-earth {
    color: var(--color-earth-brown);
}

.text-orange {
    color: var(--color-warm-orange);
}

.bg-forest {
    background-color: var(--color-forest-green);
}

.bg-leaf {
    background-color: var(--color-leaf-green);
}

.bg-earth {
    background-color: var(--color-earth-brown);
}

.bg-cream {
    background-color: var(--color-cream);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.shadow-hover {
    transition: var(--transition-normal);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-lg);
}

.section-padding {
    padding: var(--spacing-4xl) 0;
}

.section-padding-sm {
    padding: var(--spacing-3xl) 0;
}

.section-padding-lg {
    padding: var(--spacing-4xl) 0;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth mobile menu animation */
.navbar-collapse {
    transition: all 0.3s ease-in-out;
}

.navbar-collapse.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.navbar-collapse.show {
    transition: height 0.3s ease;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-background);
}

::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ===== Print Styles ===== */
@media print {
    .site-header,
    .mobile-sticky-bar,
    .whatsapp-float,
    .hero-controls,
    .navbar-cta,
    .btn {
        display: none !important;
    }
    
    .hero-section {
        padding-top: 0 !important;
        min-height: auto !important;
    }
    
    .hero-slider {
        height: auto !important;
        min-height: auto !important;
    }
    
    .hero-slide {
        position: relative !important;
        opacity: 1 !important;
        height: auto !important;
        padding: 40px 0;
        background: white !important;
    }
    
    .hero-slide::before {
        display: none !important;
    }
    
    .hero-content {
        color: var(--color-text) !important;
    }
    
    .hero-content h1 {
        color: var(--color-primary) !important;
    }
    
    .hero-content p {
        color: var(--color-text) !important;
    }
    
    section {
        padding: 30px 0 !important;
        page-break-inside: avoid;
    }
    
    .site-footer {
        page-break-before: always;
    }
}