/* Enhanced Body Styling for All Subpages */

/* Modern Hero Sections */
.hero, .hero-split {
    background: linear-gradient(135deg, #002d53 0%, #0c3458 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/gallery/img-0001.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    text-align: center;
    color: white;
}

.hero h1, .hero-split .title-yellow {
    font-family: "Arial Black", Arial, sans-serif !important;
    font-style: italic !important;
    font-weight: 900 !important;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fdc300 0%, #ffdb4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p, .hero-split .sub {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Section Styling */
section {
    padding: 80px 20px;
}

.container, .section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Content Cards */
.content-card, .legal-content, .faq-section, .news-section,
.directions-container, .parking-container, .contact-grid {
    background: white;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 45, 83, 0.08);
    margin-bottom: 40px;
}

/* Section Headers */
.section-head, .faq-category-title, .directions-title, .gallery-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-head h2, .faq-category-title h2, .directions-title, .gallery-title,
.title-yellow {
    font-family: "Arial Black", Arial, sans-serif !important;
    font-style: italic !important;
    font-weight: 900 !important;
    color: #002d53;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-head h2::after, .faq-category-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #fdc300 0%, #ffdb4d 100%);
    border-radius: 2px;
}

/* Glass-morphism Cards */
.stat-card, .contact-card, .info-box, .highlight,
.hours-card, .direction-card, .article-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 45, 83, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(253, 195, 0, 0.1);
}

.stat-card:hover, .contact-card:hover, .direction-card:hover, .article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 45, 83, 0.15);
    border-color: #fdc300;
}

/* Grid Layouts */
.stats-grid, .contact-grid, .hours-grid, .directions-grid, .gallery-grid, .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* FAQ Styling */
.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 45, 83, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #fdc300;
    box-shadow: 0 10px 40px rgba(0, 45, 83, 0.12);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transition: all 0.3s ease;
}

.faq-question:hover, .faq-item.active .faq-question {
    background: linear-gradient(135deg, #002d53 0%, #0c3458 100%);
    color: white;
}

.faq-question h3 {
    font-family: "Arial Black", Arial, sans-serif !important;
    font-style: italic !important;
    font-weight: 700 !important;
    font-size: 1.2rem;
    flex: 1;
}

.faq-toggle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fdc300;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Category Tabs */
.category-tabs, .filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.category-tab, .filter-btn {
    padding: 15px 35px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    color: #002d53;
    font-size: 1rem;
}

.category-tab:hover, .category-tab.active,
.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, #002d53 0%, #0c3458 100%);
    color: white;
    border-color: #fdc300;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 45, 83, 0.2);
}

/* Search Box */
.search-box {
    max-width: 800px;
    margin: -50px auto 80px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.search-container {
    background: white;
    border-radius: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.search-container:focus-within {
    border-color: #fdc300;
}

.search-container input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    padding: 10px;
    color: #333;
}

/* Buttons */
.btn, .cta-button, .read-more, .map-btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.btn-primary, .read-more {
    background: linear-gradient(135deg, #fdc300 0%, #ffdb4d 100%);
    color: #002d53;
    border: 2px solid #fdc300;
}

.btn-primary:hover, .read-more:hover {
    background: transparent;
    color: #fdc300;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(253, 195, 0, 0.3);
}

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

.btn-secondary:hover {
    background: white;
    color: #002d53;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Images and Gallery */
.gallery-item, .article-image, .parking-image, .featured-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 40px rgba(0, 45, 83, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover, .article-card:hover .article-image {
    transform: scale(1.05);
}

.gallery-item img, .article-image img, .parking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay, .article-date {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 45, 83, 0.9), transparent);
    padding: 30px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Statistics */
.stat-value {
    display: flex;
    align-items: baseline;
    gap: 5px;
    justify-content: center;
    margin-bottom: 10px;
}

.stat-number {
    font-family: "Arial Black", Arial, sans-serif !important;
    font-style: italic !important;
    font-weight: 900 !important;
    color: #fdc300;
    font-size: 3rem;
}

.stat-label {
    color: #002d53;
    font-weight: 600;
    font-size: 1rem;
}

/* Contact Items */
.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #002d53 0%, #0c3458 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 45, 83, 0.2);
}

.contact-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #fdc300;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

/* Map Section */
.map-container {
    width: 100%;
    height: 500px;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 45, 83, 0.15);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 45, 83, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Hours Section */
.hours-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #002d53 0%, #0c3458 100%);
}

.hours-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.hours-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fdc300;
}

.hours-list li {
    color: white;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
}

.time {
    color: #fdc300;
    font-weight: bold;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #002d53 0%, #0c3458 100%);
    text-align: center;
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #fdc300;
    box-shadow: 0 0 0 3px rgba(253, 195, 0, 0.2);
}

.newsletter-form button {
    padding: 18px 40px;
    background: #fdc300;
    color: #002d53;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .container, .section .container {
        padding: 0 20px !important;
    }

    .hero h1, .hero-split .title-yellow {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .content-card, .legal-content {
        padding: 30px 20px;
    }

    .section-head h2, .faq-category-title h2 {
        font-size: 1.8rem;
    }

    .stats-grid, .contact-grid, .hours-grid, .directions-grid, .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .category-tabs, .filter-container {
        gap: 10px;
    }

    .category-tab, .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
