/* ============================================ */
/* CSS VARIABLES & RESET */
/* ============================================ */
:root {
    --primary-green: #1a4d3a;
    --secondary-green: #2d7a5f;
    --accent-green: #3ea572;
    --light-green: #e8f5f0;
    --dark-green: #0f3429;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-light: #f8f9fa;
    --gray: #6c757d;
    --font-primary: "Manrope", sans-serif;
    --shadow: rgba(26, 77, 58, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

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

/* ============================================ */
/* HEADER STYLES */
/* ============================================ */
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.top-bar {
    background: var(--dark-green);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
}

.top-bar strong {
    color: var(--accent-green);
}

.promo-link {
    color: var(--white);
    font-weight: 600;
    text-decoration: underline;
    margin-left: 10px;
}

.main-nav {
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 70px;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s;
}

.logo:hover .logo-img {
    opacity: 0.8;
}

.logo .highlight {
    color: var(--accent-green);
}

/* Logo responsive styles */
@media (max-width: 768px) {
    .logo {
        height: 55px;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .footer-logo {
        height: 70px;
    }
    
    .footer-logo-img {
        height: 70px;
    }
}

.desktop-nav {
    display: none;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: block;
    }
}

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

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-green);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 600px;
    max-width: 800px;
    max-height: 600px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 20px;
    z-index: 1000;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dropdown-content {
    padding: 30px;
    overflow-y: auto;
    max-height: 540px;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-green) var(--gray-light);
}

.dropdown-content::-webkit-scrollbar {
    width: 8px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 10px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: var(--accent-green);
    border-radius: 10px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
}

/* Scroll Buttons */
.dropdown-scroll-wrapper {
    position: relative;
}

.dropdown-scroll-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

/* Show scroll buttons when wrapper is hovered or when content has overflow */
.dropdown-scroll-wrapper:hover .dropdown-scroll-btn,
.dropdown-scroll-wrapper.has-overflow .dropdown-scroll-btn {
    opacity: 1;
    visibility: visible;
}

/* Always show scroll buttons when content is scrollable (for better UX) */
.dropdown-scroll-wrapper.has-overflow .dropdown-scroll-btn {
    opacity: 0.8;
}

.dropdown-scroll-wrapper.has-overflow:hover .dropdown-scroll-btn {
    opacity: 1;
}

.dropdown-scroll-btn:hover {
    background: var(--primary-green);
    transform: translateX(-50%) scale(1.1);
}

.dropdown-scroll-btn.scroll-up {
    top: -20px;
}

.dropdown-scroll-btn.scroll-down {
    bottom: -20px;
}

.dropdown-scroll-btn i {
    font-size: 1rem;
}

.dropdown-scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.dropdown-scroll-btn:disabled:hover {
    transform: translateX(-50%) scale(1);
    background: var(--accent-green);
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-light);
}

.dropdown-header h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin: 0;
    font-weight: 700;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.view-all:hover {
    gap: 12px;
    color: var(--primary-green);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dropdown-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--gray-light);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dropdown-item:hover {
    background: var(--white);
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dropdown-item-image {
    width: 100px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.dropdown-item:hover .dropdown-item-image img {
    transform: scale(1.1);
}

.dropdown-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dropdown-item-content h4 {
    font-size: 1rem;
    color: var(--primary-green);
    margin: 0 0 8px 0;
    font-weight: 700;
    line-height: 1.3;
}

.dropdown-item-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--gray);
}

.dropdown-item-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-item-meta i {
    color: var(--accent-green);
    font-size: 0.8rem;
}

.dropdown-item-link {
    color: var(--accent-green);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.dropdown-item:hover .dropdown-item-link {
    gap: 10px;
}

.dropdown-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: var(--gray);
}

/* Responsive Dropdown */
@media (max-width: 1200px) {
    .dropdown-menu {
        min-width: 500px;
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        min-width: auto;
        max-width: none;
    }
    
    .nav-item-dropdown:hover .dropdown-menu {
        transform: none;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-cta {
    background: var(--accent-green);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(61, 165, 114, 0.3);
}

.mobile-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

@media (min-width: 992px) {
    .mobile-toggle {
        display: none;
    }
}

.hamburger {
    width: 25px;
    height: 20px;
    position: relative;
}

.hamburger span,
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--black);
    transition: all 0.3s;
}

.hamburger span {
    top: 9px;
}

.hamburger::before {
    top: 0;
}

.hamburger::after {
    top: 18px;
}

.hamburger.active span {
    opacity: 0;
}

.hamburger.active::before {
    top: 9px;
    transform: rotate(45deg);
}

.hamburger.active::after {
    top: 9px;
    transform: rotate(-45deg);
}

.mobile-nav {
    display: none;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    display: block;
}

.mobile-menu {
    list-style: none;
}

.mobile-menu li {
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
}

.mobile-menu a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
}

/* ============================================ */
/* HERO SECTION WITH SLIDER */
/* ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    margin-top: 0;
    overflow: visible;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
}

/* Ensure 16:9 aspect ratio for 1920x1080 images */
@media (min-width: 1920px) {
    .hero-slider {
        height: 1080px;
        min-height: 1080px;
    }
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure full width coverage on all screen sizes */
@media (min-width: 1920px) {
    .slider-slide {
        background-size: 100% auto;
    }
}

/* For screens wider than image, scale to fill width */
@media (min-width: 1921px) {
    .slider-slide {
        background-size: 100% auto;
    }
}

.slider-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 77, 58, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Different Overlay Types */
.overlay-type-1 {
    background: linear-gradient(135deg, rgba(26, 77, 58, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.overlay-type-2 {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(26, 77, 58, 0.8) 100%);
}

.overlay-type-3 {
    background: radial-gradient(circle at center, rgba(26, 77, 58, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.overlay-type-4 {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, rgba(26, 77, 58, 0.6) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.overlay-type-5 {
    background: linear-gradient(to bottom, rgba(26, 77, 58, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(26, 77, 58, 0.8) 100%);
}

.overlay-type-6 {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(26, 77, 58, 0.7) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.overlay-type-7 {
    background: linear-gradient(90deg, rgba(26, 77, 58, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(26, 77, 58, 0.7) 100%);
}

.overlay-type-8 {
    background: linear-gradient(225deg, rgba(0, 0, 0, 0.4) 0%, rgba(26, 77, 58, 0.8) 100%);
}

/* Animation Type 1: Fade In Up */
.content-animation-1 {
    animation: fadeInUp 1s ease-out;
}

.badge-animation-1 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-animation-1 {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.subtitle-animation-1 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.actions-animation-1 {
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Animation Type 2: Slide In From Left */
.content-animation-2 {
    animation: slideInLeft 1.2s ease-out;
}

.badge-animation-2 {
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.title-animation-2 {
    animation: slideInLeft 1s ease-out 0.4s both;
}

.subtitle-animation-2 {
    animation: slideInLeft 1s ease-out 0.6s both;
}

.actions-animation-2 {
    animation: slideInLeft 1s ease-out 0.8s both;
}

/* Animation Type 3: Slide In From Right */
.content-animation-3 {
    animation: slideInRight 1.2s ease-out;
}

.badge-animation-3 {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.title-animation-3 {
    animation: slideInRight 1s ease-out 0.4s both;
}

.subtitle-animation-3 {
    animation: slideInRight 1s ease-out 0.6s both;
}

.actions-animation-3 {
    animation: slideInRight 1s ease-out 0.8s both;
}

/* Animation Type 4: Zoom In */
.content-animation-4 {
    animation: zoomIn 1s ease-out;
}

.badge-animation-4 {
    animation: zoomIn 0.8s ease-out 0.2s both;
}

.title-animation-4 {
    animation: zoomIn 1s ease-out 0.4s both;
}

.subtitle-animation-4 {
    animation: zoomIn 1s ease-out 0.6s both;
}

.actions-animation-4 {
    animation: zoomIn 1s ease-out 0.8s both;
}

/* Animation Type 5: Fade In with Scale */
.content-animation-5 {
    animation: fadeInScale 1.2s ease-out;
}

.badge-animation-5 {
    animation: fadeInScale 0.8s ease-out 0.2s both;
}

.title-animation-5 {
    animation: fadeInScale 1s ease-out 0.4s both;
}

.subtitle-animation-5 {
    animation: fadeInScale 1s ease-out 0.6s both;
}

.actions-animation-5 {
    animation: fadeInScale 1s ease-out 0.8s both;
}

/* Animation Type 6: Rotate In */
.content-animation-6 {
    animation: rotateIn 1s ease-out;
}

.badge-animation-6 {
    animation: rotateIn 0.8s ease-out 0.2s both;
}

.title-animation-6 {
    animation: rotateIn 1s ease-out 0.4s both;
}

.subtitle-animation-6 {
    animation: rotateIn 1s ease-out 0.6s both;
}

.actions-animation-6 {
    animation: rotateIn 1s ease-out 0.8s both;
}

/* Animation Type 7: Slide Up with Bounce */
.content-animation-7 {
    animation: slideUpBounce 1.2s ease-out;
}

.badge-animation-7 {
    animation: slideUpBounce 0.8s ease-out 0.2s both;
}

.title-animation-7 {
    animation: slideUpBounce 1s ease-out 0.4s both;
}

.subtitle-animation-7 {
    animation: slideUpBounce 1s ease-out 0.6s both;
}

.actions-animation-7 {
    animation: slideUpBounce 1s ease-out 0.8s both;
}

/* Animation Type 8: Fade In with Slide Down */
.content-animation-8 {
    animation: fadeInSlideDown 1s ease-out;
}

.badge-animation-8 {
    animation: fadeInSlideDown 0.8s ease-out 0.2s both;
}

.title-animation-8 {
    animation: fadeInSlideDown 1s ease-out 0.4s both;
}

.subtitle-animation-8 {
    animation: fadeInSlideDown 1s ease-out 0.6s both;
}

.actions-animation-8 {
    animation: fadeInSlideDown 1s ease-out 0.8s both;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes slideUpBounce {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reset animations when slide becomes active */
.slider-slide.active .hero-content,
.slider-slide.active .hero-badge,
.slider-slide.active .hero-title,
.slider-slide.active .hero-subtitle,
.slider-slide.active .hero-actions {
    animation-play-state: running;
}

.slider-slide:not(.active) .hero-content,
.slider-slide:not(.active) .hero-badge,
.slider-slide:not(.active) .hero-title,
.slider-slide:not(.active) .hero-subtitle,
.slider-slide:not(.active) .hero-actions {
    animation: none;
    opacity: 0;
}

/* Different Slide Type Styles */
.slide-type-1 .hero-content {
    text-align: center;
}

.slide-type-2 .hero-content {
    text-align: left;
    max-width: 700px;
    margin-left: 10%;
}

.slide-type-3 .hero-content {
    text-align: right;
    max-width: 700px;
    margin-right: 10%;
    margin-left: auto;
}

.slide-type-4 .hero-content {
    text-align: center;
    max-width: 1000px;
}

.slide-type-5 .hero-content {
    text-align: left;
    max-width: 800px;
    margin-left: 5%;
}

.slide-type-6 .hero-content {
    text-align: center;
    max-width: 950px;
}

.slide-type-7 .hero-content {
    text-align: right;
    max-width: 750px;
    margin-right: 5%;
    margin-left: auto;
}

.slide-type-8 .hero-content {
    text-align: center;
    max-width: 900px;
}

/* Responsive adjustments for slide types */
@media (max-width: 992px) {
    .slide-type-2 .hero-content,
    .slide-type-3 .hero-content,
    .slide-type-5 .hero-content,
    .slide-type-7 .hero-content {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Enhanced badge styles for different slides */
.slide-type-1 .hero-badge {
    background: rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.5);
}

.slide-type-2 .hero-badge {
    background: rgba(61, 165, 114, 0.3);
    border-color: rgba(61, 165, 114, 0.5);
}

.slide-type-3 .hero-badge {
    background: rgba(33, 150, 243, 0.3);
    border-color: rgba(33, 150, 243, 0.5);
}

.slide-type-4 .hero-badge {
    background: rgba(255, 193, 7, 0.3);
    border-color: rgba(255, 193, 7, 0.5);
}

.slide-type-5 .hero-badge {
    background: rgba(156, 39, 176, 0.3);
    border-color: rgba(156, 39, 176, 0.5);
}

.slide-type-6 .hero-badge {
    background: rgba(244, 67, 54, 0.3);
    border-color: rgba(244, 67, 54, 0.5);
}

.slide-type-7 .hero-badge {
    background: rgba(0, 188, 212, 0.3);
    border-color: rgba(0, 188, 212, 0.5);
}

.slide-type-8 .hero-badge {
    background: rgba(255, 152, 0, 0.3);
    border-color: rgba(255, 152, 0, 0.5);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-hero-primary {
    background: var(--accent-green);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(61, 165, 114, 0.4);
}

.btn-hero-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(61, 165, 114, 0.5);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 20px;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-next {
    right: 20px;
}

.slider-prev {
    left: 20px;
}

.slider-pagination-container {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.slider-pagination {
    position: relative;
    text-align: center;
    z-index: 100;
    pointer-events: all;
}

.slider-pagination-bullet {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-pagination-bullet.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* ============================================ */
/* SEARCH MODAL */
/* ============================================ */
.hero-search-container {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.btn-search-modal {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 15px 30px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.btn-search-modal:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-search-modal i {
    font-size: 1.1rem;
    color: var(--accent-green);
}

/* Search Modal Overlay */
.search-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.search-modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.search-modal-overlay.active .search-modal-content {
    transform: scale(1);
}

.search-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gray-light);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s;
    font-size: 1.1rem;
    z-index: 10;
}

.search-modal-close:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: rotate(90deg);
}

.search-modal-body {
    padding: 50px 40px 40px;
    text-align: center;
}

.search-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2.5rem;
}

.search-modal-body h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 20px;
}

.search-modal-message {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.search-modal-message .phone-link {
    color: var(--accent-green);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.search-modal-message .phone-link:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.search-modal-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-search-call,
.btn-search-contact {
    flex: 1;
    min-width: 150px;
    padding: 14px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-search-call {
    background: var(--accent-green);
    color: var(--white);
}

.btn-search-call:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(61, 165, 114, 0.3);
}

.btn-search-contact {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-search-contact:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.search-modal-quick-links {
    padding-top: 25px;
    border-top: 2px solid var(--gray-light);
}

.search-modal-quick-links p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 15px;
    font-weight: 600;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.quick-links-grid a {
    padding: 10px 15px;
    background: var(--gray-light);
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    font-weight: 600;
}

.quick-links-grid a:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Search Modal Responsive */
@media (max-width: 768px) {
    .search-modal-content {
        max-width: 95%;
        margin: 20px;
    }
    
    .search-modal-body {
        padding: 40px 25px 30px;
    }
    
    .search-modal-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .search-modal-body h2 {
        font-size: 1.5rem;
    }
    
    .search-modal-message {
        font-size: 0.95rem;
    }
    
    .search-modal-actions {
        flex-direction: column;
    }
    
    .btn-search-call,
    .btn-search-contact {
        width: 100%;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    
    .search-modal-content {
        padding: 20px;
        max-width: 95%;
    }
    
    .search-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .btn-search-modal {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .btn-search-modal span {
        display: none;
    }
}

/* ============================================ */
/* TRUST SECTION */
/* ============================================ */
.trust-section {
    padding: 80px 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--gray-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: var(--light-green);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
    line-height: 1;
}

.trust-label {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 5px 0 0;
}

.certifications {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-light);
}

.cert-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 15px;
    font-weight: 600;
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--light-green);
    color: var(--primary-green);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================ */
/* SECTION STYLES */
/* ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--light-green);
    color: var(--primary-green);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================ */
/* FEATURED TOURS */
/* ============================================ */
.featured-tours-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tour-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

.tour-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-green);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.tour-card-content {
    padding: 25px;
}

.tour-card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.tour-duration,
.tour-rating {
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-rating {
    color: #FFA500;
}

.tour-card-title {
    font-size: 1.5rem;
    margin: 0 0 8px;
    color: var(--primary-green);
    font-weight: 700;
}

.tour-card-location {
    color: var(--gray);
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-card-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tour-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-light);
}

.tour-card-features span {
    font-size: 0.85rem;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.price-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-green);
    line-height: 1;
}

.price-note {
    font-size: 0.8rem;
    color: var(--gray);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.section-footer {
    text-align: center;
    margin-top: 50px;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(61, 165, 114, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(61, 165, 114, 0.4);
}

/* ============================================ */
/* WHY CHOOSE US */
/* ============================================ */
.why-choose-us-section {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 600;
}

.feature-item {
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: var(--gray-light);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-description {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================ */
/* DESTINATIONS */
/* ============================================ */
.destinations-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.destination-card {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition: transform 0.3s;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.destination-card:hover img {
    transform: scale(1.15);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
    color: white;
}

.destination-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.destination-tours {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ============================================ */
/* TESTIMONIALS */
/* ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    color: white;
}

.testimonials-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 700;
    display: block;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.author-location {
    font-size: 0.85rem;
    opacity: 0.8;
    display: block;
    margin-bottom: 3px;
}

.author-tour {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

/* ============================================ */
/* CTA SECTION */
/* ============================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    text-align: center;
}

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

.cta-title {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-btn {
    padding: 15px 35px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-light);
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

.cta-features i {
    color: var(--accent-green);
}

/* ============================================ */
/* FOOTER */
/* ============================================ */
.footer-main {
    background: var(--dark-green);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.footer-main > * {
    position: relative;
    z-index: 2;
}

.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.newsletter-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--white);
}

.newsletter-text p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.newsletter-form .form-group {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding-left: 20px;
}

.newsletter-form .form-group i {
    color: var(--gray);
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 16px;
    outline: none;
    min-width: 250px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-btn {
    padding: 12px 30px;
    background: var(--accent-green);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: var(--secondary-green);
}

.footer-content {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-green);
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 15px;
    height: 80px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s;
}

.footer-logo:hover .footer-logo-img {
    opacity: 0.8;
}

.footer-logo .highlight {
    color: var(--accent-green);
}

.company-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--accent-green);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
    color: var(--white);
}

/* ============================================ */
/* BACK TO TOP BUTTON */
/* ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(61, 165, 114, 0.4);
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .search-row {
        grid-template-columns: 1fr;
    }
    
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================ */
/* LOADING ANIMATION */
/* ============================================ */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--gray-light);
    border-top: 5px solid var(--accent-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================ */
/* QUICK CONTACT WIDGET */
/* ============================================ */
.quick-contact-widget {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 1000;
    font-family: var(--font-primary);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.contact-icon-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.contact-icon-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.contact-icon-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-icon-btn.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.contact-icon-btn.email {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-green) 100%);
}

.contact-icon-btn.email:hover {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    box-shadow: 0 8px 30px rgba(61, 165, 114, 0.5);
}

.contact-icon-btn.call {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
}

.contact-icon-btn.call:hover {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-green) 100%);
    box-shadow: 0 8px 30px rgba(61, 165, 114, 0.5);
}

.contact-icon-btn.form {
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--accent-green) 100%);
}

.contact-icon-btn.form:hover {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--secondary-green) 100%);
    box-shadow: 0 8px 30px rgba(61, 165, 114, 0.5);
}

@media (max-width: 768px) {
    .quick-contact-widget {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .contact-icon-btn {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}


@media (max-width: 768px) {
    .quick-contact-widget {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .contact-icon-btn {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

/* ============================================ */
/* HOME PAGE IMPROVEMENTS */
/* ============================================ */
.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

.section-badge i {
    margin-right: 8px;
}

.tour-card {
    transition: all 0.3s;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.tour-card-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.tour-card-image img {
    transition: transform 0.5s;
}

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

.stats-section {
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.stats-grid {
    position: relative;
    z-index: 1;
}

