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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flag-icon {
    width: 30px;
    height: 20px;
    border-radius: 2px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #e74c3c;
}

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

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

.language-selector {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: none;
    border: 2px solid #e74c3c;
    color: #e74c3c;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.lang-btn.active,
.lang-btn:hover {
    background: #e74c3c;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 0 20px;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.6s both;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* About Section Hero Background */
.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    opacity: 0.55;
    pointer-events: none;
}
.about::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100" viewBox="0 0 1440 100" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,80 C360,120 1080,0 1440,80 L1440,0 L0,0 Z" fill="%23e0e7ff"/></svg>') no-repeat top center/cover;
    z-index: 2;
    opacity: 0.9;
}

/* Improved Guide Section */
.guide {
    padding: 100px 0;
    background: linear-gradient(120deg, #f8fafc 60%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}
.guide-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    justify-content: center;
}
.guide-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.guide-image img {
    width: 320px;
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(102,126,234,0.13), 0 2px 12px rgba(44,62,80,0.09);
    border: 4px solid #e0e7ff;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}
.guide-image img:hover {
    transform: scale(1.04) rotate(-2deg);
    box-shadow: 0 32px 64px rgba(102,126,234,0.18), 0 4px 24px rgba(44,62,80,0.13);
    border-color: #667eea;
}
.guide-info {
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(102,126,234,0.10), 0 1.5px 6px rgba(44,62,80,0.07);
    padding: 2.5rem 2.2rem 2.2rem 2.2rem;
    position: relative;
    z-index: 2;
    border: 2.5px solid #e0e7ff;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.guide-info:hover {
    box-shadow: 0 16px 48px rgba(102,126,234,0.18), 0 3px 12px rgba(44,62,80,0.13);
    border-color: #667eea;
}
.guide-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}
.guide-title {
    color: #667eea;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
}
.guide-description p {
    font-size: 1.13rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 500;
}
.guide-services h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}
.guide-services ul {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    padding: 0;
}
.guide-services li {
    background: #e0e7ff;
    color: #667eea;
    font-weight: 600;
    padding: 0.5em 1.2em;
    border-radius: 16px;
    font-size: 1rem;
    box-shadow: 0 1px 4px rgba(102,126,234,0.07);
    transition: background 0.2s, color 0.2s;
    position: relative;
    margin-bottom: 0.2rem;
}
.guide-services li::before {
    content: '✓';
    position: absolute;
    left: -1.2em;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.1em;
    top: 50%;
    transform: translateY(-50%);
}
.guide-contact {
    margin-top: 2rem;
    text-align: right;
}
.guide-contact .btn-primary {
    font-size: 1.1rem;
    padding: 12px 36px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.07);
    font-weight: 700;
    letter-spacing: 0.01em;
}
.guide-contact .btn-primary:hover {
    background: #667eea;
    color: #fff;
    box-shadow: 0 8px 24px rgba(102,126,234,0.13);
}
@media (max-width: 900px) {
    .guide-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .guide-image img {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .guide-info {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
}

/* Attractions Section */
.attractions {
    padding: 100px 0;
    background: #f8f9fa;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

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

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

.attraction-content {
    padding: 1.5rem;
}

.attraction-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

/* Enhanced Contact Section Styles */
.contact {
    padding: 100px 0 80px 0;
    background: linear-gradient(120deg, #e0e7ff 60%, #f8fafc 100%);
    position: relative;
    min-height: 60vh;
}
.contact-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    z-index: 2;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.2rem 2rem;
    background: white;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(102,126,234,0.10), 0 1.5px 6px rgba(44,62,80,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 6px solid #667eea;
    position: relative;
}
.contact-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 48px rgba(102,126,234,0.18), 0 3px 12px rgba(44,62,80,0.13);
    border-left: 6px solid #e74c3c;
}
.contact-item i {
    font-size: 2.2rem;
    color: #667eea;
    background: #e0e7ff;
    border-radius: 50%;
    padding: 0.7rem;
    min-width: 3.5rem;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s, background 0.3s;
}
.contact-item:hover i {
    color: #e74c3c;
    background: #fbeee6;
}
.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}
.contact-item p {
    color: #555;
    font-size: 1.08rem;
    font-weight: 500;
}
@media (max-width: 700px) {
    .contact {
        padding: 60px 0 40px 0;
    }
    .contact-info {
        max-width: 98vw;
        gap: 1.2rem;
    }
    .contact-item {
        padding: 1.2rem 0.7rem;
        border-radius: 16px;
    }
    .contact-item i {
        font-size: 1.5rem;
        min-width: 2.5rem;
        min-height: 2.5rem;
        padding: 0.4rem;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: #e74c3c;
    background: white;
    padding: 0 0.5rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #e74c3c;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .guide-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[src] {
    opacity: 1;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
} 

/* Tours & Routes Section */
.tours {
    padding: 100px 0;
    background: linear-gradient(120deg, #f8fafc 60%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    z-index: 1;
    position: relative;
}
.tour-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(76, 110, 245, 0.08), 0 2px 8px rgba(44, 62, 80, 0.06);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 480px;
    border: 2px solid #e0e7ff;
}
.tour-card:hover {
    transform: translateY(-10px) scale(1.03) rotate(-1deg);
    box-shadow: 0 24px 48px rgba(76, 110, 245, 0.16), 0 4px 16px rgba(44, 62, 80, 0.12);
    border-color: #667eea;
}
.tour-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 4px solid #e74c3c;
    transition: transform 0.4s cubic-bezier(.4,2,.6,1);
}
.tour-card:hover .tour-image img {
    transform: scale(1.08) rotate(-2deg);
}
.tour-content {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.tour-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.7rem;
    letter-spacing: 0.01em;
}
.tour-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 1rem;
    background: #fbeee6;
    display: inline-block;
    padding: 0.4em 1.2em;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.07);
}
.tour-itinerary {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}
.tour-options {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: auto;
    padding: 0;
}
.tour-options li {
    background: #e0e7ff;
    color: #667eea;
    font-weight: 600;
    padding: 0.4em 1em;
    border-radius: 16px;
    font-size: 0.98rem;
    box-shadow: 0 1px 4px rgba(102,126,234,0.07);
    transition: background 0.2s, color 0.2s;
}
.tour-card:hover .tour-options li {
    background: #667eea;
    color: #fff;
}

/* Decorative background for Tours */
.tours::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #667eea33 60%, transparent 100%);
    z-index: 0;
}
.tours::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #e74c3c22 60%, transparent 100%);
    z-index: 0;
}

@media (max-width: 900px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }
    .tour-card {
        min-height: 420px;
    }
}
@media (max-width: 600px) {
    .tours {
        padding: 60px 0 40px 0;
    }
    .tour-content {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    .tour-image {
        height: 160px;
    }
    .tour-card {
        min-height: 340px;
    }
} 

/* Improved Social Media Contact Section */
.contact-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(135deg, #e0e7ff 60%, #f8fafc 100%);
    border-radius: 28px;
    box-shadow: 0 12px 48px 0 rgba(102,126,234,0.13), 0 2px 12px rgba(44,62,80,0.09);
    padding: 2.8rem 2.2rem 2.2rem 2.2rem;
    margin-left: 3rem;
    min-width: 340px;
    max-width: 380px;
    min-height: 370px;
    z-index: 2;
    position: relative;
    border: 2.5px solid #e0e7ff;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.contact-social:hover {
    box-shadow: 0 24px 64px 0 rgba(102,126,234,0.18), 0 4px 24px rgba(44,62,80,0.13);
    border-color: #667eea;
}
.social-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.7rem;
    text-align: center;
    letter-spacing: 0.01em;
}
.social-subtitle {
    font-size: 1.02rem;
    color: #667eea;
    margin-bottom: 2.2rem;
    text-align: center;
    opacity: 0.85;
    font-weight: 500;
}
.social-links {
    display: flex;
    gap: 2.7rem;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
}
.social-icon {
    font-size: 2.9rem;
    color: #fff;
    background: linear-gradient(135deg, #667eea 60%, #e74c3c 100%);
    border-radius: 50%;
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(44,62,80,0.10), 0 1.5px 6px rgba(102,126,234,0.10);
    transition: color 0.22s, background 0.22s, transform 0.22s, box-shadow 0.22s;
    border: 3px solid #e0e7ff;
    position: relative;
    overflow: hidden;
}
.social-icon i {
    z-index: 2;
    position: relative;
}
.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, #fff3 60%, transparent 100%);
    z-index: 1;
    opacity: 0.7;
}
.social-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 60%, #128C7E 100%);
    border-color: #25D366;
}
.social-icon.telegram {
    background: linear-gradient(135deg, #0088cc 60%, #1c92d2 100%);
    border-color: #0088cc;
}
.social-icon.instagram {
    background: linear-gradient(135deg, #e1306c 60%, #fdc468 100%);
    border-color: #e1306c;
}
.social-icon:hover {
    transform: translateY(-8px) scale(1.13) rotate(-4deg);
    box-shadow: 0 12px 32px rgba(44,62,80,0.18), 0 2px 12px rgba(102,126,234,0.13);
    filter: brightness(1.08) saturate(1.2);
    border-width: 3.5px;
}
.social-icon.whatsapp:hover {
    filter: brightness(1.15) saturate(1.3);
}
.social-icon.telegram:hover {
    filter: brightness(1.15) saturate(1.3);
}
.social-icon.instagram:hover {
    filter: brightness(1.15) saturate(1.3);
}
@media (max-width: 1100px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    .contact-social {
        margin-left: 0;
        margin-top: 2.5rem;
        min-width: 260px;
        max-width: 380px;
        width: 100%;
    }
}
@media (max-width: 700px) {
    .contact-social {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
        min-width: 180px;
        max-width: 98vw;
        min-height: 180px;
    }
    .social-title {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }
    .social-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    .social-links {
        gap: 1.2rem;
    }
    .social-icon {
        font-size: 1.7rem;
        width: 44px;
        height: 44px;
    }
} 

.social-icon, .social-icon:visited, .social-icon:active, .social-icon:focus {
    text-decoration: none !important;
    outline: none;
    box-shadow: none;
} 

/* About Section New Layout */
.about-main-row {
    display: flex;
    flex-direction: row;
    gap: 3.5rem;
    align-items: flex-start;
    justify-content: center;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.about-img-col {
    flex: 1 1 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    max-width: 420px;
}
.about-main-img {
    width: 100%;
    max-width: 400px;
    border-radius: 22px;
    object-fit: cover;
    aspect-ratio: 4/5;
    background: #fff;
    margin-bottom: 1.2rem;
    border: none;
    box-shadow: 0 4px 16px rgba(102,126,234,0.07);
}
.about-info-col {
    flex: 2 1 400px;
    min-width: 320px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2.2rem;
}
.about-intro-text {
    text-align: center;
}
.about-intro-text p {
    font-size: 1.13rem;
    color: #444;
    margin-bottom: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
}
.about-feature-row {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    justify-content: center;
    align-items: stretch;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}
.about-feature-row-center {
    justify-content: center;
}
.about-feature-card {
    background: #f8fafc;
    border-radius: 14px;
    padding: 0.9rem 1.2rem 0.6rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    font-size: 1.01rem;
    color: #667eea;
    font-weight: 600;
    border: none;
    box-shadow: none;
    transition: color 0.2s, background 0.2s;
}
.about-feature-card i {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    color: #e74c3c;
    transition: color 0.2s;
}
.about-feature-card:hover {
    color: #e74c3c;
    background: #fff;
}
.about-feature-card:hover i {
    color: #fdc468;
}
/* Circular Stats */
.about-stats-circles {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    align-items: flex-end;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}
.about-stats-circles-center {
    justify-content: center;
}
.stat-circle {
    background: #f8fafc;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: none;
    transition: color 0.2s, background 0.2s;
    position: relative;
}
.stat-circle-num {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.2rem;
    letter-spacing: 0.01em;
}
.stat-circle-label {
    color: #667eea;
    font-weight: 600;
    font-size: 0.93rem;
    text-align: center;
    letter-spacing: 0.01em;
}
@media (max-width: 700px) {
    .about-main-img {
        max-width: 98vw;
    }
    .about-main-col {
        gap: 1.2rem;
    }
    .about-feature-row {
        gap: 0.7rem;
    }
    .about-stats-circles {
        gap: 0.7rem;
    }
    .stat-circle {
        width: 60px;
        height: 60px;
    }
    .stat-circle-num {
        font-size: 1rem;
    }
} 

/* About Section Banner */
.about-banner {
    position: relative;
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0; /* Remove negative margin */
}
@media (max-width: 900px) {
    .about-banner {
        height: 180px;
        margin-bottom: 0;
    }
}
@media (max-width: 480px) {
    .about-banner {
        height: 120px;
    }
}

.about-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(1.1);
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
    border-radius: 0;
    max-width: none;
    box-shadow: none;
}

.about-banner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, #667eea99 0%, #e0e7ffcc 100%);
    z-index: 2;
}

.about-banner-title {
    position: relative;
    z-index: 3;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.01em;
    text-shadow: 0 4px 24px #2c3e50cc;
    margin: 0;
}
@media (max-width: 900px) {
    .about-banner-title {
        font-size: 1.5rem;
    }
}
@media (max-width: 480px) {
    .about-banner-title {
        font-size: 1.1rem;
    }
}

/* About Card */
.about-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(102,126,234,0.10);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    margin: 0 auto 2.5rem auto; /* Add more margin below */
    max-width: 700px;
    position: relative;
    top: 0; /* Remove negative offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
@media (max-width: 900px) {
    .about-card {
        padding: 1rem 0.5rem 0.7rem 0.5rem;
        max-width: 98vw;
    }
}

/* --- Feature Card Row Fixes --- */
.about-feature-row-banner {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    justify-content: center;
    align-items: stretch;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    width: 100%;
}
@media (max-width: 900px) {
    .about-feature-row-banner {
        gap: 0.7rem;
    }
}
@media (max-width: 600px) {
    .about-feature-row-banner {
        gap: 0.5rem;
    }
}

.about-feature-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 0.8rem 1rem 0.7rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
    max-width: 180px;
    width: 100%;
    font-size: 1rem;
    color: #667eea;
    font-weight: 700;
    border: none;
    box-shadow: 0 2px 8px rgba(102,126,234,0.07);
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-align: center;
}
@media (max-width: 900px) {
    .about-feature-card {
        min-width: 90px;
        max-width: 140px;
        font-size: 0.95rem;
    }
}
@media (max-width: 600px) {
    .about-feature-card {
        min-width: 80px;
        max-width: 100%;
        font-size: 0.9rem;
    }
}

.about-feature-card i {
    font-size: 2.1rem;
    margin-bottom: 0.4rem;
    color: #e74c3c;
    transition: color 0.2s;
}

.about-feature-title {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #667eea;
}

.about-feature-desc {
    font-size: 0.98rem;
    color: #555;
    font-weight: 500;
    margin-top: 0.2rem;
}

.about-feature-card:hover {
    color: #e74c3c;
    background: #fff;
    box-shadow: 0 8px 24px rgba(102,126,234,0.13);
}
.about-feature-card:hover i {
    color: #fdc468;
}

/* Stats Badges */
.about-stats-badges {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    justify-content: center;
    align-items: flex-end;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}
.stat-badge {
    background: linear-gradient(120deg, #e0e7ff 60%, #f8fafc 100%);
    border-radius: 16px;
    min-width: 80px;
    padding: 0.7rem 0.7rem 0.5rem 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgba(102,126,234,0.07);
    border: none;
    transition: box-shadow 0.2s, background 0.2s;
}
.stat-badge-num {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.2rem;
    letter-spacing: 0.01em;
}
.stat-badge-label {
    color: #667eea;
    font-weight: 600;
    font-size: 0.93rem;
    text-align: center;
    letter-spacing: 0.01em;
}
@media (max-width: 900px) {
    .about-banner {
        height: 180px;
        margin-bottom: -40px;
    }
    .about-banner-title {
        font-size: 1.5rem;
    }
    .about-card {
        padding: 1rem 0.5rem 0.7rem 0.5rem;
        max-width: 98vw;
    }
    .about-feature-row-banner {
        gap: 0.7rem;
    }
    .about-stats-badges {
        gap: 0.7rem;
    }
    .stat-badge {
        min-width: 60px;
        padding: 0.5rem 0.5rem 0.3rem 0.5rem;
    }
    .stat-badge-num {
        font-size: 1rem;
    }
} 

.about-title-center {
    text-align: center;
    margin-bottom: 2.2rem;
}
.about-banner-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}
.about-banner-img {
    width: 100%;
    max-width: 520px;
    border-radius: 22px;
    object-fit: cover;
    aspect-ratio: 16/9;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
}
.about-intro-text {
    text-align: center;
    margin-bottom: 2rem;
}
.about-info-cards-row {
    display: flex;
    flex-direction: row;
    gap: 2.2rem;
    justify-content: center;
    align-items: stretch;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}
.about-info-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(102,126,234,0.10);
    padding: 1.5rem 2.2rem 1.2rem 2.2rem;
    min-width: 180px;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.about-info-card:hover {
    box-shadow: 0 12px 32px rgba(102,126,234,0.18);
    transform: translateY(-6px) scale(1.04);
}
.about-info-card-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}
.about-info-card-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e74c3c;
    letter-spacing: 0.01em;
}
@media (max-width: 900px) {
    .about-info-cards-row {
        gap: 1.1rem;
    }
    .about-info-card {
        min-width: 120px;
        padding: 1rem 0.7rem 0.7rem 0.7rem;
    }
    .about-banner-img {
        max-width: 98vw;
    }
}
@media (max-width: 600px) {
    .about-info-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    .about-info-card {
        width: 100%;
        max-width: 98vw;
    }
} 

/* Enhanced About Section Animations */
.about-banner {
    animation: fadeInDown 1.2s ease-out;
}

.about-card {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.about-feature-card {
    animation: fadeInUp 0.8s ease-out both;
}

.about-feature-card:nth-child(1) { animation-delay: 0.4s; }
.about-feature-card:nth-child(2) { animation-delay: 0.6s; }
.about-feature-card:nth-child(3) { animation-delay: 0.8s; }
.about-feature-card:nth-child(4) { animation-delay: 1.0s; }

.stat-badge {
    animation: fadeInUp 0.8s ease-out both;
}

.stat-badge:nth-child(1) { animation-delay: 1.2s; }
.stat-badge:nth-child(2) { animation-delay: 1.4s; }
.stat-badge:nth-child(3) { animation-delay: 1.6s; }
.stat-badge:nth-child(4) { animation-delay: 1.8s; }

.why-item {
    animation: fadeInUp 0.8s ease-out both;
}

.why-item:nth-child(1) { animation-delay: 2.0s; }
.why-item:nth-child(2) { animation-delay: 2.2s; }
.why-item:nth-child(3) { animation-delay: 2.4s; }
.why-item:nth-child(4) { animation-delay: 2.6s; }
.why-item:nth-child(5) { animation-delay: 2.8s; }

.stat {
    animation: fadeInUp 0.8s ease-out both;
}

.stat:nth-child(1) { animation-delay: 3.0s; }
.stat:nth-child(2) { animation-delay: 3.2s; }
.stat:nth-child(3) { animation-delay: 3.4s; }

/* Enhanced hover effects for feature cards */
.about-feature-card {
    position: relative;
    overflow: hidden;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.about-feature-card:hover::before {
    left: 100%;
}

.about-feature-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102,126,234,0.2);
}

/* Enhanced stat badges */
.stat-badge {
    position: relative;
    overflow: hidden;
}

.stat-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(231,76,60,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-badge:hover::after {
    transform: translateX(100%);
}

.stat-badge:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 35px rgba(102,126,234,0.25);
}

/* Enhanced why items */
.why-item {
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(231,76,60,0.2), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.why-item:hover::before {
    width: 200px;
    height: 200px;
}

.why-item:hover {
    transform: translateY(-12px) scale(1.12) rotate(-3deg);
    box-shadow: 0 25px 50px rgba(102,126,234,0.3);
}

/* Enhanced floating stats */
.stat {
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(231,76,60,0.1), transparent);
    transform: translateX(-100%) translateY(-100%);
    transition: transform 0.8s ease;
}

.stat:hover::before {
    transform: translateX(100%) translateY(100%);
}

.stat:hover {
    transform: translateY(-15px) scale(1.15) rotate(-2deg);
    box-shadow: 0 30px 60px rgba(102,126,234,0.35);
}

/* Enhanced banner title */
.about-banner-title {
    animation: slideInFromBottom 1.5s ease-out 0.5s both;
    text-shadow: 0 4px 20px rgba(44,62,80,0.8);
}

/* New keyframe animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Enhanced responsive design */
@media (max-width: 768px) {
    .about-banner {
        height: 200px;
    }
    
    .about-banner-title {
        font-size: 2rem;
    }
    
    .about-feature-row-banner {
        gap: 1rem;
    }
    
    .about-feature-card {
        min-width: 120px;
        padding: 1rem 0.8rem;
    }
    
    .about-stats-badges {
        gap: 1rem;
    }
    
    .stat-badge {
        min-width: 80px;
        padding: 0.8rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .about-banner {
        height: 150px;
    }
    
    .about-banner-title {
        font-size: 1.5rem;
    }
    
    .about-feature-row-banner {
        flex-direction: column;
        align-items: center;
    }
    
    .about-feature-card {
        width: 100%;
        max-width: 280px;
    }
    
    .about-stats-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-badge {
        width: 100%;
        max-width: 200px;
    }
}

/* Enhanced glassmorphism effects */
.about-card {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
}

.about-feature-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-badge {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Enhanced color transitions */
.about-feature-card:hover i {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Enhanced text readability */
.about-intro-text p {
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.about-feature-title {
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.stat-badge-num {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Enhanced accessibility */
.about-feature-card:focus,
.stat-badge:focus,
.why-item:focus,
.stat:focus {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

/* Enhanced loading states */
.about-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

.about-feature-card.loading {
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
} 

/* About Section improvements */
.about-banner {
    margin-bottom: 0;
}
.about-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(102,126,234,0.07);
    border: 1.5px solid #e0e7ff;
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    margin: -60px auto 1.5rem auto;
    max-width: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    z-index: 2;
}
.about-intro-text {
    color: #333;
    background: none;
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.6;
    z-index: 2;
}
.about-feature-row-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.about-feature-card {
    background: #f8fafc;
    border-radius: 14px;
    padding: 1rem 1.2rem 0.7rem 1.2rem;
    min-width: 120px;
    max-width: 180px;
    font-size: 1rem;
    color: #667eea;
    font-weight: 700;
    box-shadow: 0 1px 4px rgba(102,126,234,0.07);
    text-align: center;
    border: none;
    transition: color 0.2s, background 0.2s;
}
.about-feature-card i {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    color: #e74c3c;
}
.about-feature-title {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #667eea;
}
.about-feature-desc {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
    margin-top: 0.1rem;
}
.about-stats-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
}
.stat-badge {
    background: linear-gradient(120deg, #e0e7ff 60%, #f8fafc 100%);
    border-radius: 12px;
    min-width: 90px;
    padding: 0.7rem 1rem 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 1px 4px rgba(102,126,234,0.07);
    border: none;
    font-size: 0.95rem;
}
.stat-badge-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.1rem;
    letter-spacing: 0.01em;
}
.stat-badge-label {
    color: #667eea;
    font-weight: 600;
    font-size: 0.93rem;
    text-align: center;
    letter-spacing: 0.01em;
}
@media (max-width: 900px) {
    .about-card {
        padding: 1rem 0.5rem 0.7rem 0.5rem;
        max-width: 98vw;
    }
    .about-feature-row-banner {
        gap: 0.7rem;
    }
    .about-stats-badges {
        gap: 0.7rem;
    }
    .stat-badge {
        min-width: 70px;
        padding: 0.5rem 0.7rem 0.3rem 0.7rem;
    }
}
@media (max-width: 600px) {
    .about-feature-row-banner, .about-stats-badges {
        flex-direction: column;
        align-items: center;
    }
    .about-feature-card, .stat-badge {
        width: 100%;
        max-width: 98vw;
    }
} 

/* Ensure about section does not restrict banner */
.about {
    width: 100%;
    max-width: 100vw;
    padding: 0;
    margin: 0;
    border-radius: 0;
    position: relative;
    background: none;
}

/* Only apply these to the banner area, not the whole about section content */
.about > .about-banner {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
    max-width: none;
} 

/* --- Banner and Parent Hard Reset --- */
.about,
.about-banner,
.about-banner-img,
.about-banner-overlay {
    border-radius: 0 !important;
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
}

/* Remove any pseudo-element backgrounds on .about */
.about::before,
.about::after {
    display: none !important;
} 

/* Force banner image to cover the full banner area */
.about-banner {
    position: relative !important;
    width: 100% !important;
    height: 260px !important;
    min-height: 180px;
    max-width: 100vw !important;
    overflow: hidden !important;
}
@media (max-width: 900px) {
    .about-banner {
        height: 180px !important;
    }
}
@media (max-width: 480px) {
    .about-banner {
        height: 120px !important;
    }
}

.about-banner-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 1 !important;
    border-radius: 0 !important;
    max-width: none !important;
    min-width: 100% !important;
    min-height: 100% !important;
    box-shadow: none !important;
    background: none !important;
} 

/* Add space below the contact section headline */
.contact h2, .contact-title, .contact-section-title {
    margin-bottom: 1.2rem;
} 

/* --- MOBILE RESPONSIVENESS IMPROVEMENTS START --- */

@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
  .about-banner {
    height: 160px !important;
  }
  .about-card {
    padding: 0.7rem 0.2rem 0.5rem 0.2rem;
    max-width: 100vw;
  }
  .about-feature-row-banner,
  .about-stats-badges {
    gap: 0.5rem;
  }
  .about-feature-card,
  .stat-badge {
    min-width: 70px;
    padding: 0.5rem 0.5rem 0.3rem 0.5rem;
    font-size: 0.95rem;
  }
  .about-banner-title {
    font-size: 1.2rem;
  }
  .guide-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .tours-grid {
    grid-template-columns: 1fr;
  }
  .tour-card {
    min-height: 320px;
  }
  .attractions-grid {
    grid-template-columns: 1fr;
  }
  .contact-content {
    flex-direction: column;
    gap: 1.2rem;
  }
  .contact-social {
    margin-left: 0;
    margin-top: 1.5rem;
    min-width: 180px;
    max-width: 100vw;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .navbar {
    padding: 0.5rem 0;
  }
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 0 30px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
  .about-banner {
    height: 120px !important;
  }
  .about-banner-title {
    font-size: 1rem;
  }
  .about-feature-row-banner,
  .about-stats-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .about-feature-card,
  .stat-badge {
    width: 100%;
    max-width: 98vw;
    min-width: 0;
  }
  .about-card {
    padding: 0.5rem 0.1rem 0.3rem 0.1rem;
    max-width: 100vw;
  }
  .guide-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .guide-image img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .guide-info {
    padding: 1rem 0.3rem 1rem 0.3rem;
  }
  .tours {
    padding: 40px 0 20px 0;
  }
  .tour-card {
    min-height: 220px;
  }
  .tour-image {
    height: 120px;
  }
  .tour-content {
    padding: 0.7rem 0.3rem 0.7rem 0.3rem;
  }
  .attractions {
    padding: 40px 0 20px 0;
  }
  .attraction-card img {
    height: 120px;
  }
  .attraction-content {
    padding: 0.7rem;
  }
  .contact {
    padding: 40px 0 20px 0;
  }
  .footer {
    padding: 30px 0 10px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 5px;
  }
  .about-banner {
    height: 80px !important;
  }
  .about-banner-title {
    font-size: 0.8rem;
  }
  .about-card {
    padding: 0.2rem 0.05rem 0.1rem 0.05rem;
    max-width: 100vw;
  }
  .about-feature-row-banner,
  .about-stats-badges {
    gap: 0.2rem;
  }
  .about-feature-card,
  .stat-badge {
    font-size: 0.85rem;
    padding: 0.3rem 0.2rem 0.2rem 0.2rem;
  }
  .guide-image img {
    width: 100%;
    max-width: 200px;
  }
  .tour-image {
    height: 80px;
  }
  .tour-card {
    min-height: 120px;
  }
  .attraction-card img {
    height: 80px;
  }
  .footer {
    padding: 15px 0 5px;
  }
}

@media (max-width: 480px) {
  html, body {
    font-size: 14px;
  }
  .container {
    padding: 0 2px;
  }
  .about-banner {
    height: 50px !important;
  }
  .about-banner-title {
    font-size: 0.6rem;
  }
  .about-card {
    padding: 0.1rem 0.01rem 0.05rem 0.01rem;
    max-width: 100vw;
  }
  .about-feature-row-banner,
  .about-stats-badges {
    gap: 0.1rem;
  }
  .about-feature-card,
  .stat-badge {
    font-size: 0.7rem;
    padding: 0.1rem 0.05rem 0.05rem 0.05rem;
  }
  .guide-image img {
    width: 100%;
    max-width: 120px;
  }
  .tour-image {
    height: 50px;
  }
  .tour-card {
    min-height: 60px;
  }
  .attraction-card img {
    height: 50px;
  }
  .footer {
    padding: 5px 0 2px;
  }
}

/* Hamburger menu overlay for mobile nav (if JS is implemented) */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,62,80,0.97);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-nav.active {
  display: flex;
}
.mobile-nav .nav-link {
  color: #fff;
  font-size: 2rem;
  margin: 1.2rem 0;
}

/* Mobile nav close button styles */
.mobile-nav-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  padding: 0.2em 0.6em;
  line-height: 1;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav-close:hover, .mobile-nav-close:focus {
  color: #e74c3c;
  background: rgba(255,255,255,0.08);
  outline: none;
}

/* Prevent horizontal scroll on mobile */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* --- MOBILE RESPONSIVENESS IMPROVEMENTS END --- */ 

/* --- RESPONSIVE IMAGE FIXES START --- */

/* General responsive image rule */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* About Banner Image */
.about-banner-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 100vw !important;
  max-height: 100% !important;
}

/* Guide Image */
.guide-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
}
@media (max-width: 600px) {
  .guide-image img {
    max-width: 180px;
  }
}

/* Tour Card Image */
.tour-image {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-width: 0;
  min-height: 0;
  max-width: 100vw;
  max-height: 220px;
  border-bottom: 4px solid #e74c3c;
}
@media (max-width: 600px) {
  .tour-image {
    max-height: 100px;
  }
  .tour-image img {
    max-height: 100px;
  }
}

/* Attraction Card Image */
.attraction-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  min-width: 0;
  min-height: 0;
  max-width: 100vw;
  max-height: 180px;
  border-radius: 0;
}
@media (max-width: 600px) {
  .attraction-card img {
    height: 90px;
    max-height: 90px;
  }
}

/* About Main Image (if used) */
.about-main-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
  background: #fff;
  margin-bottom: 1.2rem;
  border: none;
  box-shadow: 0 4px 16px rgba(102,126,234,0.07);
}
@media (max-width: 600px) {
  .about-main-img {
    max-width: 98vw;
  }
}

/* Prevent image overflow in all cards */
.tour-card img,
.attraction-card img,
.guide-image img,
.about-banner-img,
.about-main-img {
  max-width: 100vw;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
}

/* --- RESPONSIVE IMAGE FIXES END --- */ 

@media (max-width: 900px) {
  .language-selector {
    gap: 6px;
  }
  .lang-btn {
    font-size: 0.95rem;
    padding: 4px 8px;
    border-radius: 4px;
  }
  .hamburger {
    margin-left: 18px;
    transform: scale(0.85);
  }
}
@media (max-width: 768px) {
  .language-selector {
    gap: 5px;
  }
  .lang-btn {
    font-size: 0.9rem;
    padding: 3px 7px;
    border-radius: 4px;
  }
  .hamburger {
    margin-left: 14px;
    transform: scale(0.8);
  }
}
@media (max-width: 480px) {
  .language-selector {
    gap: 4px;
  }
  .lang-btn {
    font-size: 0.85rem;
    padding: 2px 6px;
    border-radius: 3px;
  }
  .hamburger {
    margin-left: 10px;
    transform: scale(0.7);
  }
}