/**
 * Shared Components CSS
 * Styles for header, footer, navigation, and breadcrumbs
 * Based on Udupi Tourism design standards
 */

@import url('./navigation.css');
@import url('./homepage.css');
@import url('./lightbox.css');
@import url('./video-backgrounds.css');
@import url('./hero-enhancements.css');
@import url('./trip-planner.css');

/* ==========================================================================
   HEADER & NAVIGATION STYLES
   ========================================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.header--scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.125rem 0;
    gap: 0.75rem;
    min-height: 35px;
}

/* Logo Section */
.nav__logos {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__logo {
    height: 24px;
    width: auto;
    object-fit: contain;
}

/* Brand Section */
.nav__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav__brand-link {
    text-decoration: none;
    color: inherit;
}

.nav__brand h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color, #2ECC71);
    line-height: 1;
}

.nav__tagline {
    font-size: 0.65rem;
    color: var(--text-muted, #7F8C8D);
    font-weight: 500;
    line-height: 1;
    margin-top: 0.0625rem;
}

/* Main Navigation */
.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
}

.nav__item {
    position: relative;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.5rem;
    text-decoration: none;
    color: var(--text-dark, #2C3E50);
    font-weight: 500;
    font-size: 0.8rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
    background: var(--primary-color, #2ECC71);
    color: white;
    transform: translateY(-1px);
}

.nav__icon {
    font-size: 1rem;
}

.nav__arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav__item--dropdown:hover .nav__arrow {
    transform: rotate(180deg);
}

/* Dropdown Menus */
.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav__dropdown--active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
}

.dropdown__section h4 {
    margin: 0 0 1rem 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted, #7F8C8D);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    text-decoration: none;
    color: var(--text-dark, #2C3E50);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.dropdown__link:hover {
    background: var(--light-bg, #F8F9FA);
    transform: translateX(4px);
}

.dropdown__icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dropdown__title {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
}

.dropdown__desc {
    font-size: 0.8rem;
    color: var(--text-muted, #7F8C8D);
    line-height: 1.2;
}

/* Action Buttons */
.nav__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.8rem;
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--primary-color, #2ECC71);
    color: var(--primary-color, #2ECC71);
}

.btn--outline:hover {
    background: var(--primary-color, #2ECC71);
    color: white;
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--text-dark, #2C3E50);
    border: 2px solid transparent;
}

.btn--ghost:hover {
    background: var(--light-bg, #F8F9FA);
    border-color: var(--primary-color, #2ECC71);
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Mobile Menu Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle span {
    width: 24px;
    height: 3px;
    background: var(--text-dark, #2C3E50);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav__toggle--active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav__toggle--active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle--active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Search Overlay */
.search__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
}

.search__overlay.hidden {
    display: none;
}

.search__container {
    width: 100%;
    max-width: 600px;
    margin: 0 1rem;
}

.search__box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.search__input {
    flex: 1;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    background: transparent;
    outline: none;
}

.search__submit,
.search__close {
    background: none;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.search__submit:hover,
.search__close:hover {
    background: var(--light-bg, #F8F9FA);
}

.search__suggestions {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.search__suggestion {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-dark, #2C3E50);
    border-bottom: 1px solid var(--light-bg, #F8F9FA);
    transition: background 0.3s ease;
}

.search__suggestion:hover {
    background: var(--light-bg, #F8F9FA);
}

.suggestion__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.suggestion__title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.suggestion__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted, #7F8C8D);
}

.search__no-results {
    padding: 2rem;
    text-align: center;
    color: var(--text-muted, #7F8C8D);
}

/* ==========================================================================
   BREADCRUMB STYLES
   ========================================================================== */

.breadcrumb {
    background: var(--light-bg, #F8F9FA);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb__separator {
    color: var(--text-muted, #7F8C8D);
    font-size: 0.875rem;
}

.breadcrumb__link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: var(--text-dark, #2C3E50);
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.breadcrumb__link:hover {
    background: white;
    color: var(--primary-color, #2ECC71);
}

.breadcrumb__link--current {
    color: var(--text-muted, #7F8C8D);
    cursor: default;
}

.breadcrumb__icon {
    font-size: 0.875rem;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

.footer {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: white;
    margin-top: auto;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 3rem 0;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__logo h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color, #2ECC71);
}

.footer__tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer__description {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.footer__social h4 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.social__links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.social__link:hover {
    background: var(--primary-color, #2ECC71);
    transform: translateY(-2px);
}

.social__icon {
    font-size: 1.1rem;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer__section h4 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color, #2ECC71);
}

.footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer__link:hover {
    color: var(--primary-color, #2ECC71);
    transform: translateX(4px);
}

.footer__icon {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Newsletter Section */
.footer__newsletter {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter__text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.newsletter__text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter__form {
    flex-shrink: 0;
}

.newsletter__input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.newsletter__input {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    min-width: 250px;
    outline: none;
}

.newsletter__submit {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color, #2ECC71);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter__submit:hover {
    background: #27AE60;
    transform: translateY(-2px);
}

.newsletter__privacy {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Bottom */
.footer__bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__legal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1rem;
}

.legal__text p {
    margin: 0 0 0.5rem 0;
    font-size: 0.875rem;
}

.legal__disclaimer {
    color: rgba(255, 255, 255, 0.7);
}

.legal__links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal__link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.legal__link:hover {
    color: var(--primary-color, #2ECC71);
}

.footer__certifications {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cert__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.cert__icon {
    font-size: 1rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem;
    background: var(--primary-color, #2ECC71);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #27AE60;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.back-to-top__icon {
    font-size: 1.2rem;
}

.back-to-top__text {
    font-size: 0.75rem;
    font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1024px) {
    .nav {
        gap: 1rem;
    }
    
    .nav__brand h2 {
        font-size: 1.25rem;
    }
    
    .dropdown__content {
        grid-template-columns: 1fr;
    }
    
    .nav__dropdown {
        min-width: 300px;
    }
}

/* Desktop styles - ensure Plan text is visible */
@media (min-width: 769px) {
    .btn__text {
        display: inline !important;
    }
    
    .btn--sm {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Higher specificity rule for plan trip button */
    #plan-trip-btn .btn__text {
        display: inline !important;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav__menu--active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav__list {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }
    
    .nav__link {
        justify-content: space-between;
        padding: 1rem;
        border-radius: 0;
        border-bottom: 1px solid var(--light-bg, #F8F9FA);
    }
    
    .nav__dropdown {
        position: static;
        min-width: auto;
        box-shadow: none;
        background: var(--light-bg, #F8F9FA);
        margin: 0 1rem;
        border-radius: 8px;
    }
    
    .nav__actions {
        order: -1;
        gap: 0.25rem;
    }
    
    .btn--sm {
        padding: 0.5rem;
        font-size: 0;
    }
    
    .btn__text {
        display: none;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .newsletter__content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .newsletter__input-group {
        flex-direction: column;
    }
    
    .newsletter__input {
        min-width: auto;
    }
    
    .footer__legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .legal__links {
        justify-content: center;
    }
    
    .footer__certifications {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0.125rem 0;
        min-height: 30px;
    }
    
    .nav__brand h2 {
        font-size: 0.9rem;
    }
    
    .nav__tagline {
        font-size: 0.6rem;
    }
    
    .nav__logo {
        height: 20px;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        padding: 0.5rem;
    }
}

/* ==========================================================================
   ATTRACTION PAGE ENHANCEMENTS
   ========================================================================== */

/* Practical Information Section */
.practical-info {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.practical-info__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.info-card__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card__content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.info-card__content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.info-card__content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card__content li {
    color: #6c757d;
    font-size: 0.9rem;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.info-card__content li:before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
}

/* Nearby Attractions Section */
.nearby-attractions {
    background: white;
}

.nearby__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.nearby__card {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.nearby__card:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.nearby__icon {
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.nearby__content {
    flex-grow: 1;
}

.nearby__content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.nearby__distance {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.nearby__category {
    background: #3498db;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.nearby__link {
    margin-left: 1rem;
    color: #3498db;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nearby__card:hover .nearby__link {
    transform: translateX(4px);
}

/* Interactive Elements Section */
.interactive-elements {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.interactive-elements .section__title,
.interactive-elements .section__description {
    color: white;
}

.interactive__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.interactive__card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.interactive__card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.interactive__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.interactive__card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.interactive__card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.interactive__card .btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.interactive__card .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Visitor Guidelines Section */
.visitor-guidelines {
    background: #f8f9fa;
}

.guidelines__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guidelines__section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.guidelines__section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.emergency__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.emergency__contact {
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.guidelines__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guidelines__list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f4;
    position: relative;
    padding-left: 1.5rem;
    color: #495057;
    line-height: 1.5;
}

.guidelines__list li:last-child {
    border-bottom: none;
}

.guidelines__list li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Mobile Responsive for Attraction Enhancements */
@media (max-width: 768px) {
    .practical-info__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nearby__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .interactive__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .guidelines__content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nearby__card {
        padding: 1rem;
    }
    
    .info-card,
    .interactive__card,
    .guidelines__section {
        padding: 1.25rem;
    }
}