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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a2b49;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #1a2b49;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

section {
    padding: 4rem 0;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #e63946;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #c1121f;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1a2b49;
    padding: 0.6rem 1.2rem;
    border: 2px solid #1a2b49;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a2b49;
    color: white;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 5%;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2b49;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #e63946;
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/backgrounds/tibet-hero.jpg');
    background-color: #1a2b49;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Page Header */
.page-header {
    height: 50vh;
    min-height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/backgrounds/tibet-mountains.jpg');
    background-color: #1a2b49;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.page-title {
    padding-top: 80px; /* Account for fixed navbar */
}

.page-title h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-title p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Featured Destinations */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.destination-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.destination-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #f0f4f8;
}

.destination-info {
    padding: 1.5rem;
}

.destination-info h3 {
    margin-bottom: 0.5rem;
}

.destination-info p {
    margin-bottom: 1.5rem;
    color: #666;
}

.view-all {
    text-align: center;
    margin-top: 2rem;
}

/* Services Overview */
.services-overview {
    background-color: #f0f4f8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.service-icon {
    font-size: 2.5rem;
    color: #e63946;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
}

/* Testimonials */
.testimonials {
    background-color: #1a2b49;
    color: white;
    padding: 5rem 0;
}

.testimonials h2 {
    color: white;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    flex: 1 1 300px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text p {
    position: relative;
    z-index: 1;
}

.testimonial-text:before {
    content: '\201C';
    font-size: 5rem;
    font-family: Georgia, serif;
    position: absolute;
    top: -2rem;
    left: -1rem;
    color: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    color: white;
}

.testimonial-author p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/backgrounds/tibet-prayer-flags.jpg');
    background-color: #1a2b49;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
    padding: 5rem 0;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* Footer */
footer {
    background-color: #1a2b49;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1 1 300px;
}

.footer-logo h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-links, 
.footer-contact {
    flex: 1 1 200px;
}

.footer-links h4, 
.footer-contact h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-contact p i{
    margin-right: 0.5rem;
}

.footer-contact i {
    color: #e63946;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #e63946;
    transform: translateY(-3px);
}

.social-icons a:hover i {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Destination Page Styles */
.destination-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.destination-list {
    padding: 3rem 0;
}

.destination-list:nth-child(even) {
    background-color: #f0f4f8;
}

.destination-item {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.destination-item.reverse {
    flex-direction: row-reverse;
}

.destination-image {
    flex: 1 1 400px;
}

.destination-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.destination-details {
    flex: 1 1 500px;
}

.destination-details h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.destination-details ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.destination-details ul li {
    margin-bottom: 0.5rem;
    position: relative;
    list-style-type: disc;
}

/* Services Page Styles */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.service-details {
    padding: 2rem 0;
}

.service-item {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #eaeaea;
}

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

.service-item .service-icon {
    flex: 0 0 80px;
    font-size: 3rem;
    color: #e63946;
}

.service-item .service-content {
    flex: 1 1 calc(100% - 100px);
}

.service-content h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.service-content ul {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}

.service-content ul li {
    margin-bottom: 0.5rem;
    position: relative;
    list-style-type: disc;
}

.custom-service {
    background-color: #f0f4f8;
    text-align: center;
    padding: 3rem 0;
}

.custom-service p {
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* About Page Styles */
.about-tibet, .tibet-culture, .tibet-people {
    padding: 4rem 0;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.about-grid.reverse {
    flex-direction: row-reverse;
}

.about-content {
    flex: 1 1 500px;
}

.about-image {
    flex: 1 1 400px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    margin-bottom: 1rem;
    color: #e63946;
}

.geography-climate, .travel-considerations {
    background-color: #f0f4f8;
    padding: 4rem 0;
}

.about-company, .responsible-tourism {
    padding: 4rem 0;
}

.about-company ul, .responsible-tourism ul {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}

.about-company ul li, .responsible-tourism ul li {
    margin-bottom: 0.5rem;
    position: relative;
    list-style-type: disc;
}

/* Contact Page Styles */
.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-form {
    flex: 1 1 500px;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info {
    flex: 1 1 400px;
}

.form-group {
    margin-bottom: 1.5rem;
    flex: 1 1 calc(50% - 1rem);
}

.form-group.full-width {
    flex: 1 1 100%;
}

form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

button[type="submit"] {
    cursor: pointer;
    border: none;
}

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

.info-icon {
    flex: 0 0 50px;
    font-size: 1.5rem;
    color: #e63946;
}

.info-content h3 {
    margin-bottom: 0.5rem;
}

.info-content p {
    margin-bottom: 0.5rem;
    color: #666;
}

.social-connect {
    margin-top: 2rem;
}

.social-connect .social-icons {
    margin-top: 1rem;
}

.social-connect .social-icon {
    background-color: #f0f4f8;
    color: #1a2b49;
}

.social-connect .social-icon:hover {
    background-color: #e63946;
    color: white;
}

.faq {
    background-color: #f0f4f8;
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #1a2b49;
    font-size: 1.3rem;
}

.map-section {
    padding: 4rem 0;
}

.map-container {
    height: 400px;
    background-color: #f0f4f8;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .destination-item, 
    .destination-item.reverse,
    .about-grid,
    .about-grid.reverse {
        flex-direction: column;
    }
    
    .destination-image,
    .about-image {
        order: -1;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        color: #1a2b49;
        font-size: 1.8rem;
        padding: 0.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 999;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
        display: block;
    }
    
    .hero {
        height: 90vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .destinations-grid,
    .services-grid,
    .info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .destination-card,
    .service-card {
        margin-bottom: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo,
    .footer-links,
    .footer-contact {
        margin-bottom: 1.5rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-links ul {
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-item .service-icon {
        margin: 0 auto 1rem auto;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .info-icon {
        margin-bottom: 1rem;
    }
    
    /* Improve form layout on mobile */
    .form-group {
        flex: 1 1 100%;
    }
    
    /* Improve testimonials on mobile */
    .testimonial {
        padding: 1.5rem;
    }
    
    /* Better spacing for CTA section */
    .cta {
        padding: 3rem 1rem;
    }
    
    /* Improve contact page layout */
    .contact-form-container {
        flex-direction: column;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-info {
        order: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        width: 92%;
        padding: 1.5rem 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .hero {
        height: 85vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .btn-primary {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .btn-secondary {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .logo a {
        font-size: 1.5rem;
    }
    
        .navbar {
        padding: 1rem 4%;
    }
    
    .navbar.scrolled {
        padding: 0.8rem 4%;
    }
    
    .destination-img {
        height: 180px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .testimonial-text p {
        font-size: 0.9rem;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    
    .page-header {
        height: 40vh;
        min-height: 300px;
    }
    
    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.8rem;
    }
    
    .info-item {
        margin-bottom: 1.5rem;
    }
    
    input, select, textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Add styles for very small screens */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .logo a {
        font-size: 1.3rem;
    }
    
        .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
    
    .destination-card,
    .service-card,
    .faq-item,
    .info-item {
        padding: 1.2rem;
    }
    
    .page-header {
        min-height: 250px;
    }
}
