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

body {
    font-family: 'Inter', 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;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Ensure proper stacking context */
.nav-container {
    position: relative;
    z-index: 1001;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-logo-img {
    width: 50px;
    height: 50px;
    margin-right: 12px;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-logo i {
    margin-right: 10px;
    font-size: 2rem;
}

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

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

.nav-link:hover {
    color: #2563eb;
}

.nav-link.active {
    color: #2563eb;
    font-weight: 600;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('image/ket.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 20px 50px;
    margin-top: 70px; /* Account for fixed navbar */
    position: relative;
}



.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}



.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #e6f3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.6;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
    max-width: 48ch;
    color: #e8f4fd;
    background: linear-gradient(135deg, #e8f4fd 0%, #d1e7ff 50%, #b8d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

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

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

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

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 400px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* About Section */
.about {
    background: #f8fafc;
}

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

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

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

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

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

.attraction-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.attraction-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    display: block;
}

.attraction-image i {
    font-size: 3rem;
}

.attraction-content {
    padding: 1.5rem;
}

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

.attraction-content p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.attraction-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.attraction-link:hover {
    color: #1d4ed8;
}

/* Charity Section */
.charity {
    background: #f0f9ff;
    padding: 5rem 0;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.charity-showcase {
    margin-top: 3rem;
}

.charity-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.charity-image-large {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

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

.charity-main:hover .charity-img-large {
    transform: scale(1.05);
}

.charity-text-large h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.charity-text-large p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.charity-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.charity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.charity-image-small {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

.charity-item:hover .charity-img-small {
    transform: scale(1.05);
}

.charity-text-small h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.charity-text-small p {
    color: #6b7280;
    line-height: 1.6;
}

/* Hospital Section */
.hospital {
    background: #f8fafc;
    padding: 5rem 0;
}

.hospital-showcase {
    margin-top: 3rem;
}

.hospital-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hospital-image-large {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

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

.hospital-main:hover .hospital-img-large {
    transform: scale(1.05);
}

.hospital-text-large h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.hospital-text-large p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 1.1rem;
}

.hospital-facilities {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.facility-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.facility-image {
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

.facility-item:hover .facility-img {
    transform: scale(1.05);
}

.facility-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.facility-text p {
    color: #6b7280;
    line-height: 1.6;
}

.facility-special {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.facility-special:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.facility-image-wide {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.facility-special:hover .facility-img-wide {
    transform: scale(1.05);
}

.facility-text-wide h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.facility-text-wide p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .charity-main,
    .hospital-main,
    .championship-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .charity-image-large,
    .hospital-image-large,
    .championship-image-large {
        height: 300px;
    }
    
    .charity-text-large h3,
    .hospital-text-large h3,
    .championship-text-large h3 {
        font-size: 1.5rem;
    }
    
    .facility-row {
        grid-template-columns: 1fr;
    }
    
    .championship-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}

/* Football Championship Section */
.football-championship {
    background: white;
    padding: 5rem 0;
    color: #333;
}

.football-championship .section-title {
    color: #1f2937;
    text-align: center;
    margin-bottom: 3rem;
}

.championship-showcase {
    margin-top: 3rem;
}

.championship-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.championship-image-large {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

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

.championship-main:hover .championship-img-large {
    transform: scale(1.05);
}

.championship-text-large h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.championship-text-large p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.championship-details {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border: 1px solid #e2e8f0;
}

.championship-details h4 {
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.championship-details ul {
    list-style: none;
    padding: 0;
}

.championship-details li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.championship-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: bold;
}

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

/* Responsive breakpoints for championship section */
@media (max-width: 1200px) {
    .championship-gallery {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .championship-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .championship-image-large {
        height: 300px;
    }
    
    .championship-text-large h3 {
        font-size: 1.8rem;
    }
    
    .championship-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .championship-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .championship-item {
        padding: 1rem;
    }
    
    .championship-image-small {
        height: 150px;
    }
    
    .championship-text-small h4 {
        font-size: 1.1rem;
    }
    
    .championship-text-small p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .championship-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .championship-main {
        padding: 1.5rem;
    }
    
    .championship-text-large h3 {
        font-size: 1.5rem;
    }
    
    .championship-text-large p {
        font-size: 1rem;
    }
    
    .championship-item {
        padding: 1rem;
    }
    
    .championship-image-small {
        height: 120px;
    }
}

@media (max-width: 360px) {
    .championship-main {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .championship-gallery {
        gap: 0.8rem;
    }
    
    .championship-item {
        padding: 0.8rem;
    }
    
    .championship-text-small h4 {
        font-size: 1rem;
    }
    
    .championship-text-small p {
        font-size: 0.85rem;
    }
}

.championship-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.championship-item:hover {
    transform: translateY(-5px);
    background: #f8fafc;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.championship-image-small {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

.championship-item:hover .championship-img-small {
    transform: scale(1.05);
}

.championship-text-small h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

.championship-text-small p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    word-wrap: break-word;
}

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

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #2563eb;
    margin-top: 0.2rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.5;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.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: #f9fafb;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

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

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

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

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

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #374151;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    background: #374151;
    color: white;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

.bounce-in {
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.animate {
    opacity: 1;
    transform: scale(1);
}

.rotate-in {
    opacity: 0;
    transform: rotate(-180deg) scale(0.3);
    transition: all 0.6s ease;
}

.rotate-in.animate {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Stagger Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu .nav-link:hover {
        background-color: rgba(37, 99, 235, 0.1);
        color: #2563eb;
    }
    
    /* Ensure menu is above all other content */
    .nav-menu {
        z-index: 9999 !important;
    }
    
    /* Add touch-friendly spacing */
    .nav-menu .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .nav-logo-img {
        width: 35px;
        height: 35px;
    }
    

    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .hero-placeholder,
    .image-placeholder {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    .events-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-section {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.2rem;
    }
    .attraction-card, .event-card, .stat {
        padding: 1rem;
    }
    .footer-bottom p {
        font-size: 0.9rem;
    }
    
    /* Mobile navigation improvements */
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-logo-img {
        width: 30px;
        height: 30px;
    }
    

    
    .nav-menu {
        padding: 1rem 0;
    }
    
    .nav-menu .nav-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .hamburger {
        padding: 3px;
    }
    
    .bar {
        width: 22px;
        height: 2px;
    }
    
    /* Additional mobile improvements */
    .nav-menu {
        top: 70px !important;
        left: -100% !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    /* Ensure proper spacing for all pages */
    .farming-welcome,
    .tourism-hero {
        margin-top: 70px !important;
    }
    
    /* Tourism page specific mobile fixes */
    .section-nav {
        top: 70px !important;
    }
    
    .heroes-grid {
        gap: 20px;
    }
    
    .hero-card {
        padding: 20px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo {
        font-size: 1rem;
    }
    
    .nav-menu .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .hamburger {
        padding: 2px;
    }
    
    .bar {
        width: 20px;
        height: 2px;
    }
}

.about .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 8px rgba(37,99,235,0.08);
    margin-bottom: 2rem;
    text-align: left;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    .about .section-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    .about-text p {
        font-size: 1rem;
        text-align: center;
        padding: 0 10px;
    }
}
@media (max-width: 480px) {
    .about .section-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    .about-text p {
        font-size: 0.95rem;
        padding: 0 5px;
    }
}

.farming-welcome {
    background-image: url('image/buna1.jpg');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    margin-top: 70px; /* Account for fixed navbar */
}

.farming-container {
    display: flex;
    gap: 40px;
    background: rgba(0, 0, 0, 0.4);
    padding: 40px 60px;
    border-radius: 16px;
    align-items: center;
    max-width: 900px;
    margin: 40px auto;
}

.welcome-text {
    flex: 1;
    min-width: 220px;
}

.photo-box {
    background: rgba(255,255,255,0.9);
    color: #222;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 260px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.photo-box img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.photo-description {
    text-align: center;
}

.photo-boxes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100vw;
    margin: 0;
    padding: 0 20px;
    gap: 20px;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
}

.photo-box {
    flex: 1 1 0;
    width: 50vw;
    max-width: 50vw;
    min-width: 0;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    color: #222;
    padding: 0;
    margin: 0;
}

.photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
}

@media (max-width: 900px) {
    .photo-boxes {
        flex-direction: column;
        gap: 20px;
        width: 100vw;
        left: 0;
        transform: none;
        padding: 0 20px;
    }
    .photo-box {
        width: 100vw;
        max-width: 100vw;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.10);
        margin-bottom: 24px;
    }
}

.no-top-gap {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.no-bottom-gap {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

.small-gap-top {
	margin-top: 16px !important;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    }
    50% {
        box-shadow: 0 8px 32px rgba(76, 175, 80, 0.3);
    }
}

/* Enhanced Farming Welcome Section */
.farming-welcome {
    background-image: url('image/buna1.jpg');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.farming-welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    animation: fadeInUp 1.5s ease-out;
}

.farming-container {
    display: flex;
    gap: 40px;
    background: rgba(0, 0, 0, 0.4);
    padding: 40px 60px;
    border-radius: 16px;
    align-items: center;
    max-width: 900px;
    margin: 40px auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: scaleIn 1s ease-out 0.3s both;
    transition: all 0.3s ease;
}

.farming-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.welcome-text {
    flex: 1;
    min-width: 220px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.welcome-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.9s both;
}

/* Enhanced Photo Boxes */
.photo-boxes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100vw;
    margin: 0;
    padding: 0 20px;
    gap: 20px;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
}

.photo-box {
    flex: 1 1 0;
    width: 50vw;
    max-width: 50vw;
    min-width: 0;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    color: #222;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: scaleIn 0.8s ease-out both;
}

.photo-box:nth-child(odd) {
    animation-delay: 0.2s;
}

.photo-box:nth-child(even) {
    animation-delay: 0.4s;
}

.photo-box:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.photo-box::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;
}

.photo-box:hover::before {
    left: 100%;
}

.photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    transition: all 0.4s ease;
}

.photo-box:hover img {
    transform: scale(1.05);
}

.photo-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-box:hover .photo-description {
    transform: translateY(0);
}

.photo-description h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.photo-description p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Farming Photo Section Animations */
.farming-photo-section {
    animation: fadeInUp 0.8s ease-out both;
}

.farming-photo-section:nth-child(3) {
    animation-delay: 0.1s;
}

.farming-photo-section:nth-child(4) {
    animation-delay: 0.2s;
}

.farming-photo-section:nth-child(5) {
    animation-delay: 0.3s;
}

.farming-photo-section:nth-child(6) {
    animation-delay: 0.4s;
}

.farming-photo-section:nth-child(7) {
    animation-delay: 0.5s;
}

.farming-photo-section:nth-child(8) {
    animation-delay: 0.6s;
}

.farming-photo-section:nth-child(9) {
    animation-delay: 0.7s;
}

.farming-photo-section:nth-child(10) {
    animation-delay: 0.8s;
}

/* Scroll-triggered animations */
.photo-box.animate {
    animation: scaleIn 0.6s ease-out;
}

/* Enhanced mobile responsiveness with animations */
@media (max-width: 900px) {
    .photo-boxes {
        flex-direction: column;
        gap: 20px;
        width: 100vw;
        left: 0;
        transform: none;
        padding: 0 20px;
    }
    
    .photo-box {
        width: 100vw;
        max-width: 100vw;
        height: auto;
        border-radius: 12px;
        animation: slideInLeft 0.8s ease-out both;
    }
    
    .photo-box:nth-child(even) {
        animation: slideInRight 0.8s ease-out both;
    }
    
    .farming-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        margin: 20px;
    }
    
    .welcome-text h1 {
        font-size: 2rem;
    }
    
    .welcome-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .photo-box {
        height: 300px;
    }
    
    .photo-description {
        padding: 30px 15px 15px;
    }
    
    .photo-description h2 {
        font-size: 1.3rem;
    }
    
    .photo-description p {
        font-size: 0.85rem;
    }
}

/* Tourism Page Styles */
.tourism-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.tourism-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.tourism-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-brand i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.tourism-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.tourism-nav .nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.tourism-nav .nav-menu a:hover {
    color: #2563eb;
}

.tourism-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('image/ket.jpg') center/cover;
    opacity: 0.3;
    z-index: -1;
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
    font-size: 1.5rem;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.tourism-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.tourism-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.section-nav {
    background: #f8f9fa;
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 99;
}

.section-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.section-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.section-nav a:hover,
.section-nav a.active {
    background: #667eea;
    color: white;
}

.tourism-section {
    padding: 80px 0;
}

.tourism-section:nth-child(even) {
    background: #f8f9fa;
}

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

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

.tourism-attraction-image {
    height: 300px;
    overflow: hidden;
}

.tourism-attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tourism-attraction-content {
    padding: 30px;
}

.tourism-attraction-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.tourism-attraction-content p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
    font-weight: 400;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.attractions-grid {
    display: grid;
    gap: 3rem;
}

.attraction-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.attraction-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.attraction-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6b7280;
    font-size: 0.9rem;
}

.attraction-meta i {
    color: #2563eb;
}

.attraction-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.heroes-grid {
    display: grid;
    gap: 3rem;
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* .hero-title {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500; */
/* } */

.hero-achievements {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f3f4f6;
    color: #374151;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.achievement i {
    color: #2563eb;
}

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

.tourism-footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.tourism-footer .footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

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

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

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

.tourism-footer .footer-section ul li a:hover {
    color: #2563eb;
}

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

.tourism-footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #374151;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tourism-footer .social-links a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

.tourism-footer .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Back to Home Button */
.back-to-home {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #667eea;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-home:hover {
    transform: scale(1.1);
    background: #5a6fd8;
    color: white;
}

.hero-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.hero-content p {
    line-height: 1.8;
    color: #666;
}

.back-to-home {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #667eea;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.back-to-home:hover {
    transform: scale(1.1);
    background: #5a6fd8;
}

/* Tourism Page Responsive Design */
@media (max-width: 768px) {
    .tourism-nav .nav-menu {
        display: none;
    }
    
    .tourism-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-nav {
        display: none !important;
    }
    
    .attractions-grid {
        gap: 2rem;
    }
    
    .heroes-grid {
        gap: 2rem;
    }
    
    .hero-card {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        width: 150px;
        height: 150px;
    }
    
    .hero-content h3 {
        font-size: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .attraction-meta {
        justify-content: center;
    }
    
    .attraction-features {
        justify-content: center;
    }
    
    .hero-achievements {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .tourism-hero h1 {
        font-size: 2rem;
    }
    
    .tourism-hero p {
        font-size: 1rem;
    }
    
    .tourism-attraction-content {
        padding: 20px;
    }
    
    .tourism-attraction-content h3 {
        font-size: 1.5rem;
    }
    
    .hero-card {
        padding: 20px;
    }
}

/* Farming crops responsive fixes */
@media (max-width: 900px) {
    .farming-photo-section .photo-boxes {
        width: 100%;
        left: 0;
        right: 0;
        transform: none;
        padding: 0 12px;
    }
    .farming-photo-section .photo-box {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.10);
        padding: 12px;
    }
    .farming-photo-section .photo-box img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 12px;
    }
    .farming-photo-section .photo-description {
        padding: 0 4px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .farming-photo-section .photo-box img {
        height: 160px;
    }
}

/* Strong farming-only mobile layout overrides */
@media (max-width: 900px) {
    .farming-photo-section {
        padding: 16px 0;
    }
    .farming-photo-section .photo-boxes {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100% !important;
        margin: 0 auto;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        padding: 0 12px !important;
    }
    .farming-photo-section .photo-box {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.10);
        padding: 12px;
    }
    .farming-photo-section .photo-box img {
        width: 100% !important;
        height: 220px !important;
        object-fit: cover;
        border-radius: 8px;
    }
    .farming-photo-section .photo-description {
        position: static !important;
        transform: none !important;
        background: transparent !important;
        backdrop-filter: none !important;
        color: #222 !important;
        text-shadow: none !important;
        padding: 8px 4px 0 !important;
    }
    .farming-photo-section .photo-box:hover .photo-description {
        transform: none !important;
    }
}

@media (max-width: 600px) {
    .farming-photo-section .photo-boxes {
        gap: 14px;
        padding: 0 10px !important;
    }
    .farming-photo-section .photo-box {
        padding: 10px;
    }
    .farming-photo-section .photo-box img {
        height: 180px !important;
    }
}

/* Hospital Content Wrapper */
.hospital-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.hospital-text-large {
    flex: 1;
}

/* Hospital Services Styling */
.hospital-services {
    flex: 1;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hospital-services h4 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.service-category {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-category h5 {
    color: #34495e;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
}

.service-category ul {
    list-style: none;
    padding: 0;
}

.service-category li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #ecf0f1;
    transition: color 0.3s ease;
}

.service-category li:hover {
    color: #2980b9;
    padding-left: 5px;
}

.service-category li:last-child {
    border-bottom: none;
}

/* Responsive design for hospital services */
@media (max-width: 768px) {
    .hospital-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hospital-services {
        padding: 15px;
        margin-top: 0;
    }
    
    .hospital-services h4 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .service-category {
        padding: 15px;
    }
    
    .service-category h5 {
        font-size: 1.1rem;
    }
    
    .service-category li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hospital-services {
        padding: 10px;
    }
    
    .service-category {
        padding: 12px;
    }
    
    .service-category h5 {
        font-size: 1rem;
    }
    
    .service-category li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
}
