* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: #2C2C2C;
    color: #fff;
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-name {
    color: #fff;
    font-weight: 600;
}

.tagline {
    color: #999;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.contact-info i {
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Main Header */
.site-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 50px;
    width: auto;
}

.header-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.header-menu ul li a:hover {
    color: #DC143C;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-booking {
    padding: 10px 20px;
    background-color: #FFA500;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.phone-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: #DC143C;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.search-bar {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.search-field {
    flex: 1;
}

.search-field label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.search-field select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #333;
}

.search-btn {
    padding: 10px 25px;
    background-color: #DC143C;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    align-self: flex-end;
}

.carousel-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Explore Section */
.explore-section {
    padding: 80px 20px;
}

.explore-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.explore-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2C2C;
    line-height: 1.2;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
}

.destination-card .card-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.destination-card.special-card {
    background: #DC143C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.special-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.btn-view-all {
    padding: 10px 25px;
    background: #fff;
    color: #DC143C;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #DC143C;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px;
    color: #fff;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.circular-images {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.circular-item {
    position: relative;
}

.circular-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.circular-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #DC143C;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Experience Section */
.experience-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.experience-image {
    width: 100%;
    border-radius: 20px;
}

.circular-img {
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
}

.arched-img {
    height: 300px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 100px 100px 0 0;
}

.experience-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 20px;
}

.experience-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-items {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #DC143C;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #2C2C2C;
}

.feature-text p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.btn-discover, .btn-browse {
    padding: 15px 35px;
    background: #2C2C2C;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
}

/* Tours Section */
.tours-section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 50px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tour-card {
    position: relative;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tour-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #DC143C;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tour-icons {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    color: #fff;
    font-size: 1.2rem;
}

.tour-content {
    padding: 20px;
}

.tour-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2C2C2C;
}

.tour-rating {
    color: #DC143C;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.tour-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.tour-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #DC143C;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 10px;
}

.subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: #DC143C;
    margin-bottom: 20px;
}

.why-choose-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.why-choose-image {
    position: relative;
}

.why-image-wrapper {
    position: relative;
}

.why-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
}

.red-overlay {
    position: absolute;
    top: 50px;
    right: -50px;
    width: 300px;
    height: 400px;
    background: #DC143C;
    border-radius: 20px;
    z-index: -1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: #f8f9fa;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><path fill="%23e0e0e0" d="M0,0 L1200,0 L1200,200 L0,200 Z"/></svg>') repeat-x;
    opacity: 0.3;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto 20px;
}

.testimonial-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2C2C2C;
}

.testimonial-rating {
    color: #DC143C;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #666;
    font-style: italic;
    line-height: 1.8;
}

/* Tour Types Section */
.tour-types-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../mountains-bg.jpg') center/cover;
    color: #fff;
}

.tour-types-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.tour-types-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tour-types-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.tour-types-text p {
    opacity: 0.9;
    line-height: 1.8;
}

.tour-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tour-type-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.tour-type-item i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.tour-type-item span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Start Journey Section */
.start-journey-section {
    padding: 100px 20px;
    background: #DC143C;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.start-journey-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><path fill="%23b0b0b0" d="M0,0 L1200,0 L1200,300 L0,300 Z"/></svg>') repeat-x;
    opacity: 0.2;
}

.journey-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.journey-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.journey-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.journey-text p {
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-find-tours {
    padding: 15px 35px;
    background: #2C2C2C;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
}

.journey-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.journey-image-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    height: 200px;
}

.journey-image-item:nth-child(3) {
    grid-column: 1 / -1;
    height: 150px;
}

/* Statistics Section */
.statistics-section {
    padding: 80px 20px;
    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-card i {
    font-size: 3rem;
    color: #DC143C;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

/* Blog Section */
.blog-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    position: relative;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #DC143C;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.blog-link {
    color: #DC143C;
    text-decoration: none;
    font-weight: 600;
}

/* Brands Section */
.brands-section {
    padding: 60px 20px;
    background: #fff;
}

.brands-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.brand-logo {
    color: #ccc;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Gallery Section */
.gallery-section {
    padding: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.gallery-item {
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Footer */
.site-footer {
    background: #2C2C2C;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #DC143C;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 5px;
    background: #3C3C3C;
    color: #fff;
}

.btn-subscribe {
    padding: 10px 20px;
    background: #DC143C;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #DC143C;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .explore-content,
    .experience-content,
    .why-choose-content,
    .tour-types-content,
    .journey-content {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tours-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }

    .site-header .container {
        flex-direction: column;
        gap: 20px;
    }

    .header-menu ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .search-bar {
        flex-direction: column;
    }

    .destinations-grid,
    .tours-grid,
    .testimonials-grid,
    .blog-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
