:root {
    --primary-color: #73491b;
    --primary-light: #8b5a29;
    --primary-dark: #5a3915;
    --secondary-color: #f4d03f;
    --accent-color: #73491b;
    --text-color: #2c1810;
    --light-text: #fff;
    --background-light: #fff9f5;
    --background-white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #73491b;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #fff;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-list {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-item a:hover::after {
    width: 100%;
}

.nav-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
}

.language-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-btn i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 0.5rem;
}

/* Mobile Styles */
@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 77px;
        left: -100%;
        background: #73491b;
        width: 100%;
        height: calc(100vh - 77px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem 0;
        transition: 0.3s ease-in-out;
        gap: 2rem;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
        padding: 0 2rem;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-item a {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }

    .nav-item a::after {
        display: none;
    }

    .nav-item a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .language-switch {
        margin: 0;
        flex-direction: row;
        gap: 1rem;
    }

    .language-btn {
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 1rem;
    }

    .logo img {
        height: 35px;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .nav-menu {
        top: 67px;
        height: calc(100vh - 67px);
    }

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

    .nav-item a {
        font-size: 0.95rem;
    }

    .language-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 30%;
    animation: zoomBackground 20s infinite alternate ease-in-out;
    transform-origin: center;
    will-change: transform;
    z-index: 0;
}

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

.content {
    position: relative;
    z-index: 2;
    color: var(--light-text);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 1rem;
    margin-top: -2rem;
}

#typing-text {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, 
        #FFD700 0%,
        #FFA500 25%,
        #FF8C00 50%,
        #FF7F50 75%,
        #FF6347 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    animation: gradientFlow 8s ease infinite;
    background-size: 200% auto;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 800px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 2rem;
    border: 2px solid transparent;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: transparent;
    border-color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
    }

    .content {
        padding: 0 1.5rem;
        margin-top: -4rem;
    }

    #typing-text {
        font-size: 2.5rem;
        background-size: 400% auto;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        min-width: 180px;
        margin-top: 1.5rem;
        display: block;
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 100vh;
    }

    .content {
        padding: 0 1rem;
        margin-top: -3rem;
    }

    #typing-text {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
        width: 90%;
        margin-top: 1.2rem;
    }

    .hero-background {
        background-position: center 25%;
    }
}

@media (max-width: 360px) {
    #typing-text {
        font-size: 1.8rem;
        letter-spacing: normal;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        width: 95%;
        margin-top: 1rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh;
    }

    .content {
        padding: 1rem;
        margin-top: -1rem;
    }

    #typing-text {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        min-width: 160px;
        margin-top: 0.8rem;
    }

    .hero-background {
        background-position: center 20%;
    }
}

/* Featured Services Section */
.featured-services {
    padding: 8rem 2rem;
    background: var(--background-white);
    position: relative;
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title .subtitle {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-light);
    text-transform: none;
    letter-spacing: normal;
    margin-top: 0.5rem;
    font-weight: 500;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: -2rem auto 4rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.section-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background: var(--background-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-medium);
    margin-top: 1rem;
    color: #666;
}

.service-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: var(--primary-color);
    color: var(--light-text);
    margin: 0 auto;
    max-width: 200px;
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 8rem 2rem;
    background: var(--gray-light);
    position: relative;
    margin-top: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--background-white);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature:hover i {
    transform: rotateY(360deg);
    filter: brightness(1.2);
}

.feature h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Featured Adventures Section */
.featured-adventures {
    padding: 4rem 0;
    background: var(--background-light);
    position: relative;
}

.featured-adventures::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-light.png') repeat;
    opacity: 0.05;
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-20px) translateY(-20px); }
}

.adventure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.adventure-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.adventure-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, 
        rgba(115, 73, 27, 0.8),
        transparent
    );
    opacity: 0;
    transition: all 0.4s ease;
}

.adventure-card:hover .adventure-image::after {
    opacity: 1;
}

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

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

.adventure-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.adventure-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.adventure-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.adventure-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--primary-light);
}

.adventure-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.adventure-link {
    text-align: center;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
}

.adventure-link:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    position: relative;
    color: var(--light-text);
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
}

.testimonials .section-title {
    color: var(--light-text);
    margin-bottom: 3rem;
}

.testimonials .section-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
}

.testimonials .section-description strong {
    color: var(--secondary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
    position: relative;
}

.testimonial-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 6px solid transparent;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--secondary-color), transparent) border-box;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    animation: rotate 4s linear infinite;
}

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

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-color);
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.8;
    opacity: 0.9;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.testimonial-location {
    font-size: 0.95rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.testimonial-location i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 1.5rem;
        margin-bottom: 3rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .testimonial-card {
        padding: 1.8rem;
    }

    .testimonial-image {
        width: 100px;
        height: 100px;
    }

    .testimonial-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-image {
        width: 80px;
        height: 80px;
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--light-text);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    animation: fadeIn 1s ease-out;
}

.footer-section h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

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

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.9;
}

.footer-section a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--secondary-color);
}

.footer-section i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-section a:hover i {
    transform: rotate(15deg);
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--light-text);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.social-links a:hover {
    color: var(--secondary-color);
    opacity: 1;
    transform: translateY(-3px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .menu-toggle {
        display: block;
        color: var(--light-text);
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-color);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        transition: 0.3s ease-in-out;
    }

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

    #typing-text {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .cta-button, .adventure-link, .service-link {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
        max-width: 180px;
        display: block;
        margin: 1rem auto;
    }

    .adventure-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .adventure-card {
        margin-bottom: 1.5rem;
    }

    .adventure-image {
        height: 200px;
    }

    .adventure-content {
        padding: 1.2rem;
    }

    .adventure-title {
        font-size: 1.3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .feature {
        padding: 1.5rem;
    }

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

    .grid-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 70vh;
    }

    #typing-text {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button, .adventure-link, .service-link {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
        max-width: 160px;
    }

    .adventure-image {
        height: 180px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .hero-slider {
        height: 80vh;
    }

    .content {
        padding-top: 35vh;
    }

    #typing-text {
        font-size: 2.5rem;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .cta-button, .adventure-link, .service-link {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
        max-width: 180px;
        display: block;
        margin: 1rem auto;
    }

    .adventure-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .adventure-card {
        margin-bottom: 1.5rem;
    }

    .adventure-image {
        height: 200px;
    }

    .adventure-content {
        padding: 1.2rem;
    }

    .adventure-title {
        font-size: 1.3rem;
    }

    .adventure-meta {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .section-description {
        font-size: 0.95rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 70vh;
    }

    #typing-text {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button, .adventure-link, .service-link {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
        max-width: 160px;
    }

    .adventure-image {
        height: 180px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Responsive Grid Layouts */
.grid-container {
    display: grid;
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.featured-adventures {
    padding: 4rem 0;
    background: var(--background-light);
    position: relative;
}

.adventure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.adventure-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.adventure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.adventure-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.adventure-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.adventure-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.adventure-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--primary-light);
}

.adventure-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.adventure-link {
    text-align: center;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
}

.adventure-link:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

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

.feature h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.section-title h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .grid-container {
        padding: 0 1.5rem;
    }

    .adventure-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .adventure-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .adventure-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .adventure-image {
        height: 200px;
    }

    .adventure-content {
        padding: 1.2rem;
    }

    .adventure-title {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .feature {
        padding: 1.5rem;
    }

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

    .grid-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 1.8rem;
    }

    .adventure-image {
        height: 180px;
    }

    .adventure-content {
        padding: 1rem;
    }

    .adventure-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .feature {
        padding: 1.2rem;
    }

    .feature h3 {
        font-size: 1.2rem;
    }
}

/* Fix for very small devices */
@media (max-width: 360px) {
    .adventure-title {
        font-size: 1.1rem;
    }

    .adventure-price {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .adventure-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* About Page Styles */
.page-hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-section {
    padding: 6rem 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}

.about-text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.about-image img, .mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img, .mission-image:hover img {
    transform: scale(1.05);
}

.mission-section {
    padding: 6rem 0;
    background: var(--background-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content {
    padding-left: 2rem;
}

.mission-text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-color);
    line-height: 1.6;
}

.team-section {
    padding: 6rem 0;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    transition: all 0.3s ease;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.team-member h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--text-color);
    font-size: 1.1rem;
}

.contact-cta {
    padding: 6rem 0;
    background: var(--primary-color);
    text-align: center;
    color: var(--light-text);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .about-grid, .mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content, .mission-content {
        padding: 0;
    }

    .mission-values {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
    }

    .about-section, .mission-section, .team-section {
        padding: 4rem 0;
    }

    .mission-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-item {
        padding: 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .member-image {
        width: 180px;
        height: 180px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 40vh;
    }

    .about-text, .mission-text {
        font-size: 1rem;
    }

    .value-item i {
        font-size: 2rem;
    }

    .value-item h3 {
        font-size: 1.2rem;
    }

    .member-image {
        width: 150px;
        height: 150px;
    }

    .team-member h3 {
        font-size: 1.3rem;
    }

    .member-role {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 6rem 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: var(--background-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-items {
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    margin-top: 0.2rem;
}

.info-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-color);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

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

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f8f8;
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(115, 73, 27, 0.1);
    outline: none;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--primary-light);
    background: #fff;
}

.submit-button {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.submit-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(115, 73, 27, 0.3);
}

.submit-button:hover:before {
    left: 100%;
}

.submit-button:active {
    transform: translateY(-1px);
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

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

.map-section {
    height: 450px;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }

    .contact-info,
    .contact-form {
        padding: 2rem;
    }

    .info-item i {
        font-size: 1.3rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .map-section {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }

    .info-item {
        margin-bottom: 1.5rem;
    }

    .info-content h3 {
        font-size: 1.1rem;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .submit-button {
        padding: 0.8rem 1.5rem;
    }

    .map-section {
        height: 300px;
    }
}

/* Service Details Page Styles */
.service-details-hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.service-details-hero .hero-background {
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.service-details-hero:hover .hero-background {
    transform: scale(1);
}

.service-details-content {
    padding: 4rem 0;
    background: #fff;
}

.service-main-content {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
}

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

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

.service-description {
    padding: 2rem;
}

.service-description h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-description p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-features-list {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-item span {
    color: var(--text-color);
    font-weight: 500;
}

.related-services {
    padding: 4rem 0;
    background: #f8f9fa;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.related-service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.related-service-image {
    height: 200px;
    overflow: hidden;
}

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

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

.related-service-content {
    padding: 1.5rem;
}

.related-service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.related-service-content p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: var(--primary-dark);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .service-features-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-gallery {
        grid-template-columns: 1fr;
    }

    .service-description h1 {
        font-size: 2rem;
    }

    .service-features-list {
        grid-template-columns: 1fr;
    }

    .related-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-details-hero {
        height: 40vh;
    }

    .service-description {
        padding: 1.5rem;
    }
}
