/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #A886CD;
}

.language-switcher .lang-btn {
    background: #A886CD;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 150px 0 100px;
    margin-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #FFD700;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background: #A886CD;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #8a67b5;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    text-align: center;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #666;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #A886CD;
    padding: 10px 25px;
    text-decoration: none;
    border: 2px solid #A886CD;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #A886CD;
    color: white;
}

/* Achievements Section */
.achievements {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.achievements h2 {
    font-size: 36px;
    margin-bottom: 50px;
    line-height: 1.3;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.achievement-item h3 {
    font-size: 48px;
    color: #A886CD;
    margin-bottom: 10px;
}

.achievement-item p {
    font-size: 16px;
    color: #666;
}

/* Services Section */
.services {
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Tour Packages Section */
.tour-packages {
    background: #f8f9fa;
    padding: 80px 0;
}

.tour-packages h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.package-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-card h3 {
    padding: 15px;
    font-size: 18px;
    color: #333;
}

.package-info {
    padding: 0 15px;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #A886CD;
    margin-bottom: 5px;
}

.btn-book {
    display: block;
    background: #A886CD;
    color: white;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    margin: 15px;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-book:hover {
    background: #8a67b5;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

.blog-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3 {
    padding: 20px;
    font-size: 18px;
}

.blog-card h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h3 a:hover {
    color: #A886CD;
}

.blog-meta {
    padding: 0 20px 20px;
    color: #666;
    font-size: 14px;
}

/* Sister Concerns Section */
.sister-concerns {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.sister-concerns h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.sister-concerns p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #666;
}

.concerns-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.concern-item img {
    width: 100%;
    max-width: 150px;
    height: 150px;
    object-fit: contain;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Press Section */
.press-section {
    padding: 50px 0;
    background: white;
}

.press-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.press-logos img {
    width: 100%;
    max-width: 200px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.press-logos img:hover {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #A886CD;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #A886CD;
}

.footer-info p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-social a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #A886CD;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 36px;
    }
    
    .achievement-grid,
    .services-grid,
    .packages-grid,
    .blog-grid,
    .concerns-slider,
    .press-logos,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .packages-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        margin-top: 15px;
    }
}