/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 85, 48, 0.7), rgba(74, 124, 89, 0.7)), 
                url('public/images/hcm/hcm_1.jpg') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #2c5530;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5530;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Destinations Section */
.destinations {
    padding: 5rem 0;
    background-color: white;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.destination-card:hover .card-overlay {
    transform: translateY(0);
}

.card-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5530;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    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 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(rgba(44, 85, 48, 0.8), rgba(74, 124, 89, 0.8)), 
                url('public/images/dalat/da_lat_2.jpg') center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.blog-hero h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.blog-content {
    padding: 5rem 0;
    background-color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card .excerpt {
    display: block;
}

.blog-card .full-content {
    display: none;
}

.show-more-btn {
    background: linear-gradient(45deg, #2c5530, #4a7c59);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.show-more-btn:hover {
    transform: translateY(-2px);
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    border-radius: 20px;
    max-width: 90%;
    max-height: 90%;
    width: 800px;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-header {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.popup-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
    z-index: 10001;
}

.popup-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.popup-close:active {
    transform: scale(0.95);
}

.popup-body {
    padding: 2rem;
    line-height: 1.8;
    color: #333;
}

.popup-body p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.popup-body h3 {
    color: #2c5530;
    margin: 2rem 0 1rem 0;
    font-size: 1.4rem;
}

.popup-body ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.popup-body li {
    margin-bottom: 0.5rem;
    color: #666;
}

.popup-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

/* Popup Footer */
.popup-footer {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-radius: 0 0 20px 20px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.popup-close-bottom {
    background: linear-gradient(45deg, #2c5530, #4a7c59);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 120px;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
}

.popup-close-bottom:hover {
    background: linear-gradient(45deg, #4a7c59, #2c5530);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4);
}

.popup-close-bottom:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(44, 85, 48, 0.3);
}

/* Scrollbar styling for popup */
.popup-content::-webkit-scrollbar,
.destination-popup-content::-webkit-scrollbar {
    width: 8px;
}

.popup-content::-webkit-scrollbar-track,
.destination-popup-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.popup-content::-webkit-scrollbar-thumb,
.destination-popup-content::-webkit-scrollbar-thumb {
    background: #2c5530;
    border-radius: 4px;
}

.popup-content::-webkit-scrollbar-thumb:hover,
.destination-popup-content::-webkit-scrollbar-thumb:hover {
    background: #4a7c59;
}

/* Prevent scrollbar from interfering with click events */
.destination-popup-content::-webkit-scrollbar-thumb {
    pointer-events: auto;
}

.destination-popup-content::-webkit-scrollbar-track {
    pointer-events: auto;
}

/* Mobile responsiveness for popup close button */
@media (max-width: 768px) {
    .popup-close {
        top: 0.5rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .popup-content {
        max-width: 95%;
        max-height: 95%;
        margin: 1rem;
    }
    
    .popup-header {
        padding: 1.5rem;
    }
    
    .popup-header h2 {
        font-size: 1.5rem;
        padding-right: 3rem; /* Make space for close button */
    }
    
    .popup-body {
        padding: 1.5rem;
    }
    
    .popup-footer {
        padding: 1rem 1.5rem;
    }
    
    .popup-close-bottom {
        padding: 10px 25px;
        font-size: 0.9rem;
        min-width: 100px;
    }
}

/* Additional close button styles for better visibility */
.popup-close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
}

.popup-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
}

.popup-close:hover::before,
.popup-close:hover::after {
    background: #ffd700;
}

/* Destination Popup Styles */
.destination-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.destination-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.destination-popup-content {
    background: white;
    border-radius: 20px;
    max-width: 90%;
    max-height: 90%;
    width: 900px;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    cursor: default;
    /* Prevent scroll events from bubbling */
    overscroll-behavior: contain;
}

.destination-popup-overlay.active .destination-popup-content {
    transform: scale(1);
}

.destination-popup-header {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.destination-popup-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
}

.destination-popup-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
    z-index: 10001;
}

.destination-popup-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.destination-popup-close:active {
    transform: scale(0.95);
}

/* Destination Slider Styles */
.destination-slider-container {
    position: relative;
    background: #f8f9fa;
}

.destination-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 0;
}

.destination-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.destination-slide.active {
    opacity: 1;
}

.destination-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-slider-prev,
.destination-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44, 85, 48, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 1000;
}

.destination-slider-prev {
    left: 20px;
}

.destination-slider-next {
    right: 20px;
}

.destination-slider-prev:hover,
.destination-slider-next:hover {
    background: rgba(44, 85, 48, 1);
    transform: translateY(-50%) scale(1.1);
}

.destination-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.destination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.destination-dot.active {
    background: #2c5530;
    transform: scale(1.2);
}

.destination-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.destination-popup-body {
    padding: 2rem;
    line-height: 1.8;
    color: #333;
}

.destination-popup-body h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.destination-popup-body p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.destination-popup-footer {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-radius: 0 0 20px 20px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.destination-popup-close-bottom {
    background: linear-gradient(45deg, #2c5530, #4a7c59);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 120px;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
}

.destination-popup-close-bottom:hover {
    background: linear-gradient(45deg, #4a7c59, #2c5530);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4);
}

.destination-popup-close-bottom:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(44, 85, 48, 0.3);
}

/* Mobile responsiveness for destination popup */
@media (max-width: 768px) {
    .destination-popup-content {
        max-width: 95%;
        max-height: 95%;
        margin: 1rem;
        width: auto;
    }
    
    .destination-popup-header {
        padding: 1.5rem;
    }
    
    .destination-popup-header h2 {
        font-size: 1.5rem;
        padding-right: 3rem;
    }
    
    .destination-popup-close {
        top: 0.5rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .destination-slider {
        height: 250px;
    }
    
    .destination-slider-prev,
    .destination-slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .destination-slider-prev {
        left: 10px;
    }
    
    .destination-slider-next {
        right: 10px;
    }
    
    .destination-popup-body {
        padding: 1.5rem;
    }
    
    .destination-popup-footer {
        padding: 1rem 1.5rem;
    }
    
    .destination-popup-close-bottom {
        padding: 10px 25px;
        font-size: 0.9rem;
        min-width: 100px;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(44, 85, 48, 0.8), rgba(74, 124, 89, 0.8)), 
                url('public/images/mekong/me_kong_2.jpg') center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.about-content {
    padding: 5rem 0;
    background-color: white;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.team-member i {
    font-size: 4rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #666;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(44, 85, 48, 0.8), rgba(74, 124, 89, 0.8)), 
                url('public/images/phu_quoc/phu_quoc_2.jpg') center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.contact-content {
    padding: 5rem 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.contact-info h3 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #2c5530;
    margin-right: 1rem;
    width: 30px;
}

.contact-item a {
    color: #2c5530;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

.contact-item a:hover {
    color: #4a7c59;
}

.contact-map {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.contact-map h3 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.map-container {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
}

.map-info {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-info p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.map-info p:last-child {
    margin-bottom: 0;
}

.map-info strong {
    color: #2c5530;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2c5530;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        padding: 1.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-info {
        padding: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}
