/* Terra Firma Outfitters - Custom Styles */

:root {
    --sand-bg: #E4D6BC;
    --dark-brown: #3E2C1D;
    --forest-green: #4A7C59;
    --sky-blue: #6AA5B8;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--sand-bg);
    color: var(--dark-brown);
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Mobile-first improvements */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Improve touch targets for mobile */
.btn, .nav-link, .dropdown-item, .form-select, .form-control {
    min-height: 44px;
    touch-action: manipulation;
}

/* Smooth scrolling for mobile */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--forest-green), var(--sky-blue));
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    min-height: 60px;
}

/* Mobile navigation improvements */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(74, 124, 89, 0.95);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 10px;
        backdrop-filter: blur(10px);
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 5px;
        margin-bottom: 0.25rem;
    }
    
    .nav-link:hover {
        background-color: rgba(106, 165, 184, 0.2);
    }
    
    .dropdown-menu {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-brand i {
    color: var(--sand-bg);
    margin-right: 0.5rem;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--sand-bg) !important;
}

.dropdown-menu {
    background-color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.dropdown-item {
    color: var(--dark-brown);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--forest-green);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Mobile hero improvements */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-overlay {
        padding: 2rem 0;
    }
    
    .hero-overlay .container {
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 400px;
    }
    
    .hero-overlay {
        padding: 1.5rem 0;
    }
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(62, 44, 29, 0.7), rgba(74, 124, 89, 0.5));
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--sand-bg);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--white);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--forest-green);
    opacity: 1;
}

/* Trip Finder Section */
.trip-finder-section {
    background: linear-gradient(135deg, var(--white), var(--light-gray));
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.trip-finder-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(74, 124, 89, 0.1);
}

.form-select {
    border: 2px solid var(--sky-blue);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: var(--forest-green);
    box-shadow: 0 0 0 0.2rem rgba(74, 124, 89, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--forest-green), var(--sky-blue));
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--sky-blue), var(--forest-green));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}

/* Featured Trips */
.featured-trips {
    background-color: var(--sand-bg);
}

.trip-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.trip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.trip-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.trip-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.trip-title {
    color: var(--dark-brown);
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.trip-location {
    color: var(--sky-blue);
    font-weight: 500;
    margin-bottom: 1rem;
}

.trip-description {
    color: var(--dark-brown);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex: 1;
}

.trip-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.difficulty-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.difficulty-beginner {
    background-color: #d4edda;
    color: #155724;
}

.difficulty-intermediate {
    background-color: #fff3cd;
    color: #856404;
}

.difficulty-advanced {
    background-color: #f8d7da;
    color: #721c24;
}

.trip-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--forest-green);
}

/* Why Choose Us */
.why-choose-us {
    background-color: var(--light-gray);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--forest-green), var(--sky-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.feature-icon i {
    transition: transform 0.3s ease;
}

.feature-icon:hover i {
    transform: scale(1.1);
}

/* Testimonials */
.testimonials {
    background-color: var(--sand-bg);
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-brown), #2a1f15);
}

.footer h5, .footer h6 {
    color: var(--sand-bg);
    margin-bottom: 1rem;
}

.footer a {
    color: var(--sand-bg);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--sky-blue);
}

.social-links a {
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

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

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .trip-finder-card {
        padding: 2.5rem 2rem;
    }
    
    .guide-photo {
        height: 250px;
    }
    
    .blog-image {
        height: 200px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .trip-finder-card {
        padding: 2rem 1.5rem;
        margin-top: -30px;
    }
    
    .trip-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .guide-photo {
        height: 220px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .trip-card img {
        height: 200px;
    }
    
    .retreat-card img {
        height: 200px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .footer h5, .footer h6 {
        font-size: 1.1rem;
    }
    
    .social-links a {
        font-size: 1.3rem;
        margin-right: 0.8rem;
    }
}

/* Mobile devices */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .trip-finder-card {
        padding: 1.5rem 1rem;
        margin-top: -20px;
    }
    
    .btn-primary {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-brand i {
        font-size: 1.2rem;
    }
    
    .trip-card {
        margin-bottom: 1.5rem;
    }
    
    .trip-card img {
        height: 180px;
    }
    
    .trip-card-body {
        padding: 1.2rem;
    }
    
    .trip-title {
        font-size: 1.1rem;
    }
    
    .trip-price {
        font-size: 1.3rem;
    }
    
    .guide-photo {
        height: 200px;
    }
    
    .guide-info {
        padding: 1.5rem;
    }
    
    .blog-image {
        height: 160px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .retreat-card img {
        height: 180px;
    }
    
    .retreat-content {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .footer {
        padding: 2rem 0;
    }
    
    .footer h5, .footer h6 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .social-links a {
        font-size: 1.2rem;
        margin-right: 0.6rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-info {
        padding: 2rem 1.5rem;
    }
    
    .booking-card {
        padding: 1.5rem;
        position: static;
        margin-top: 2rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .destination-hero {
        height: 50vh;
    }
    
    .trip-detail-hero {
        height: 40vh;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .trip-finder-card {
        padding: 1.2rem 0.8rem;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .trip-card-body {
        padding: 1rem;
    }
    
    .guide-info {
        padding: 1.2rem;
    }
    
    .blog-content {
        padding: 1.2rem;
    }
    
    .retreat-content {
        padding: 1.2rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .contact-info {
        padding: 1.5rem 1rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

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

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

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

/* Destination Pages */
.destination-hero {
    height: 70vh;
    position: relative;
    overflow: hidden;
    margin-top: 76px;
}

.hero-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.destination-info {
    background-color: var(--sand-bg);
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(74, 124, 89, 0.1);
}

.fact-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.fact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.available-trips {
    background-color: var(--light-gray);
}

.whats-included {
    background-color: var(--sand-bg);
}

.included-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.included-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--forest-green), var(--sky-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

/* Trip Detail Page */
.trip-detail-hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
    margin-top: 76px;
}

.itinerary-section {
    background-color: var(--sand-bg);
}

.itinerary-day {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    border-left: 5px solid var(--forest-green);
}

.difficulty-level {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.amenity-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.booking-calendar {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Guide Team Page */
.guide-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.guide-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.guide-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.certification-badge {
    display: inline-block;
    background: var(--forest-green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 0.25rem;
}

/* Blog Page */
.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    color: var(--sky-blue);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* FAQ Page */
.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--dark-brown);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--dark-brown);
    line-height: 1.6;
}

/* Contact Page */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--forest-green), var(--sky-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

/* Utility Classes */
.text-forest-green {
    color: var(--forest-green) !important;
}

.rivertheme-highlight {
    background: linear-gradient(135deg, var(--sky-blue), var(--forest-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rivertheme-highlight:hover {
    background: linear-gradient(135deg, var(--forest-green), var(--sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transform: scale(1.05);
}

.text-sky-blue {
    color: var(--sky-blue) !important;
}

.bg-forest-green {
    background-color: var(--forest-green) !important;
}

.bg-sky-blue {
    background-color: var(--sky-blue) !important;
}

.border-forest-green {
    border-color: var(--forest-green) !important;
}

.border-sky-blue {
    border-color: var(--sky-blue) !important;
}

/* Additional Styles for New Pages */
.retreat-benefit {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.retreat-benefit:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--forest-green), var(--sky-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.retreat-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.retreat-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.retreat-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.retreat-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.retreat-features li {
    padding: 0.5rem 0;
    color: var(--dark-brown);
}

.retreat-features i {
    color: var(--forest-green);
    margin-right: 0.5rem;
}

.retreat-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.retreat-duration, .retreat-group-size {
    font-weight: 600;
    color: var(--sky-blue);
}

.retreat-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--forest-green);
}

.include-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.include-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--forest-green), var(--sky-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--forest-green), var(--sky-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
}

.retreat-cta {
    background: linear-gradient(135deg, var(--forest-green), var(--sky-blue));
}

.retreat-cta .btn-outline-light:hover {
    background-color: var(--white);
    color: var(--forest-green);
}

.guide-intro {
    background-color: var(--sand-bg);
}

.guide-title {
    color: var(--sky-blue);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.guide-experience {
    color: var(--forest-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.certifications {
    margin-top: 1rem;
}

.training-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.training-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--forest-green), var(--sky-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.guide-stats {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--forest-green);
    display: block;
}

.stat-label {
    color: var(--dark-brown);
    font-weight: 600;
}

.blog-sidebar {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.sidebar-post {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.sidebar-post:last-child {
    border-bottom: none;
}

.sidebar-post h6 {
    margin-bottom: 0.5rem;
}

.sidebar-post a {
    color: var(--dark-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-post a:hover {
    color: var(--forest-green);
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.newsletter-signup {
    background: linear-gradient(135deg, var(--forest-green), var(--sky-blue));
    color: var(--white);
}

.newsletter-signup .form-control {
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.newsletter-signup .btn-primary {
    background: var(--white);
    color: var(--forest-green);
    border: none;
    font-weight: 600;
}

.newsletter-signup .btn-primary:hover {
    background: var(--light-gray);
    color: var(--forest-green);
}

.contact-cta {
    background: var(--light-gray);
}

.contact-options .btn {
    margin-bottom: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--forest-green);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--sky-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.booking-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.price-display {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--forest-green);
    display: block;
}

.price-note {
    color: var(--sky-blue);
    font-size: 0.9rem;
}

.trip-meta-hero {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.difficulty-level, .trip-duration-hero, .trip-price-hero {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: var(--white);
    font-weight: 600;
}

.itinerary-details {
    margin-top: 1rem;
}

.itinerary-details .badge {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.booking-options .btn {
    margin-bottom: 1rem;
}

/* Additional Responsive adjustments */
@media (max-width: 768px) {
    .trip-meta-hero {
        flex-direction: column;
        gap: 1rem;
    }
    
    .retreat-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .booking-options .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .itinerary-day {
        padding: 1.5rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .amenity-item {
        padding: 1.2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .guide-stats {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .training-item {
        padding: 1.5rem;
    }
    
    .training-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .include-item {
        padding: 1.5rem;
    }
    
    .include-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .newsletter-signup {
        padding: 2rem 1.5rem;
    }
    
    .faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .trip-meta-hero {
        gap: 0.8rem;
    }
    
    .retreat-meta {
        gap: 0.3rem;
    }
    
    .itinerary-day {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .amenity-item {
        padding: 1rem;
    }
    
    .contact-item {
        margin-bottom: 1.2rem;
    }
    
    .guide-stats {
        padding: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .training-item {
        padding: 1.2rem;
    }
    
    .training-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .process-step {
        padding: 1.2rem;
    }
    
    .include-item {
        padding: 1.2rem;
    }
    
    .include-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .category-card {
        padding: 1.2rem;
    }
    
    .newsletter-signup {
        padding: 1.5rem 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .rivertheme-highlight {
        font-size: 0.9rem;
    }
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .trip-card:hover,
    .guide-card:hover,
    .blog-card:hover,
    .retreat-card:hover,
    .testimonial-card:hover {
        transform: none;
    }
    
    /* Optimize images for mobile */
    .trip-card img,
    .guide-photo,
    .blog-image,
    .retreat-card img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    /* Improve form elements for mobile */
    .form-select,
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.8rem 1rem;
    }
    
    /* Better spacing for mobile content */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Improve button spacing */
    .btn {
        margin-bottom: 0.5rem;
    }
    
    /* Better text readability on mobile */
    p, li {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Improve heading hierarchy on mobile */
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.4rem; }
    h4 { font-size: 1.2rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .destination-hero,
    .trip-detail-hero {
        height: 60vh;
        min-height: 250px;
    }
}

/* High DPI mobile devices */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .trip-card img,
    .guide-photo,
    .blog-image,
    .retreat-card img {
        image-rendering: -webkit-optimize-contrast;
    }
}
