/* ================================================
   Unknown Passage Podcast - Custom Styles
   ================================================ */

/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #e74c3c;
    --patreon-color: #ff424d;
    --text-light: #ecf0f1;
    --text-dark: #2c3e50;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --overlay-medium: rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(52, 73, 94, 0.95));
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.patreon-link {
    color: var(--patreon-color) !important;
    font-weight: 600;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.2rem;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    background-image: url('../images/photo-1436491865332-7a61a109cc05.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.8rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* ===== LISTEN SECTION ===== */
.listen-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    background-image: url('../images/photo-1469854523086-cc02fe5d8800.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
}

.listen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-medium);
    z-index: 1;
}

.listen-section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* ===== PODCAST PLATFORMS ===== */
.podcast-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--text-light);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.platform-btn i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.platform-btn:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ===== SEARCH BOX ===== */
.search-box {
    max-width: 600px;
    margin: 0 auto;
}

.search-form .input-group {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    overflow: hidden;
}

.search-form .input-group-text {
    background: white;
    border: none;
    padding: 0.8rem 1rem;
}

.search-form .form-control {
    border: none;
    padding: 0.8rem 1rem;
    font-size: 1rem;
}

.search-form .form-control:focus {
    box-shadow: none;
}

.search-form .btn {
    border: none;
    padding: 0.8rem 2rem;
    background: var(--accent-color);
    font-weight: 600;
    border-radius: 0;
}

.search-form .btn:hover {
    background: #c0392b;
}

/* ===== EPISODES SECTION ===== */
.episodes-section {
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
    min-height: 50vh;
}

.episodes-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.episode-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.episode-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.episode-image {
    height: 200px;
    overflow: hidden;
    background: var(--secondary-color);
}

.episode-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.episode-card:hover .episode-image img {
    transform: scale(1.1);
}

.episode-content {
    padding: 1.5rem;
}

.episode-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.episode-content p {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.episode-content .btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.episode-content .btn:hover {
    background: var(--primary-color);
    color: white;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: white;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.contact-section .btn-primary {
    background: var(--accent-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
}

.contact-section .btn-primary:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer-section {
    position: relative;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    background-image: url('../images/46649de71f5994f5cfd582076b4f6a7e.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.9);
    z-index: 1;
}

.footer-section .container {
    position: relative;
    z-index: 2;
}

.footer-section h3,
.footer-section h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 0.5rem;
    color: var(--text-light);
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.btn-patreon {
    background: var(--patreon-color);
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-patreon:hover {
    background: #e03e48;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 66, 77, 0.4);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .platform-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .podcast-platforms {
        gap: 0.5rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-shadow {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.bg-overlay {
    position: relative;
}

.bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
/* ================================================
   Episodes Page - Custom Styles
   ================================================ */

/* ===== PAGE HEADER ===== */
.page-header {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    background-image: url('https://images.unsplash.com/photo-1478737270239-2f02b77fc618?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 100px;
    padding-bottom: 50px;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.85);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.episode-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.episode-stats span {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.episode-stats i {
    color: #e74c3c;
    margin-right: 0.5rem;
}

/* ===== FILTER SECTION ===== */
.filter-section {
    background: #ecf0f1;
    padding: 2rem 0;
}

.search-filter-box {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
    font-size: 1.1rem;
}

.search-input-wrapper .form-control {
    padding-left: 45px;
    height: 50px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1rem;
}

.search-input-wrapper .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.15);
}

#categoryFilter {
    height: 50px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
}

#categoryFilter:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.15);
}

/* ===== EPISODES LIST SECTION ===== */
.episodes-list-section {
    background: #f8f9fa;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-heading i {
    color: #e74c3c;
}

/* ===== EPISODE ITEM CARD ===== */
.episode-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.episode-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.episode-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.episode-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.episode-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-missing {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.badge-murder {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.badge-series {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

/* ===== EPISODE BODY ===== */
.episode-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.episode-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 60px;
}

.episode-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ecf0f1;
}

.episode-meta span {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 500;
}

.episode-meta i {
    margin-right: 0.4rem;
    color: #e74c3c;
}

.episode-description {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* ===== EPISODE ACTIONS ===== */
.episode-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-play {
    flex: 1;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-play:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: scale(1.05);
    color: white;
}

.btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ecf0f1;
    border-radius: 50%;
    color: #7f8c8d;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-icon:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
    transform: rotate(15deg);
}

/* ===== LOAD MORE BUTTON ===== */
.btn-load-more {
    background: white;
    border: 2px solid #2c3e50;
    color: #2c3e50;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-load-more i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-load-more:hover i {
    transform: translateY(5px);
}

/* ===== LISTEN PLATFORMS SECTION ===== */
.listen-platforms-section {
    background: white;
}

.listen-platforms-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: #f8f9fa;
    border: 2px solid #ecf0f1;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #2c3e50;
}

.platform-card:hover {
    background: white;
    border-color: #e74c3c;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: #e74c3c;
}

.platform-card i {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    transition: transform 0.3s ease;
}

.platform-card:hover i {
    transform: scale(1.2);
}

.platform-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .episode-stats {
        gap: 1rem;
    }
    
    .episode-stats span {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .episode-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .search-filter-box {
        padding: 1rem;
    }
    
    .episode-title {
        font-size: 1.1rem;
        min-height: auto;
    }
    
    .episode-meta {
        gap: 0.5rem;
        font-size: 0.8rem;
    }
    
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.episode-item {
    animation: slideInUp 0.6s ease forwards;
}

/* Stagger animation for multiple cards */
.episode-item:nth-child(1) { animation-delay: 0.1s; }
.episode-item:nth-child(2) { animation-delay: 0.2s; }
.episode-item:nth-child(3) { animation-delay: 0.3s; }
.episode-item:nth-child(4) { animation-delay: 0.1s; }
.episode-item:nth-child(5) { animation-delay: 0.2s; }
.episode-item:nth-child(6) { animation-delay: 0.3s; }

/* ===== NO RESULTS MESSAGE ===== */
.no-results {
    text-align: center;
    padding: 3rem 0;
    color: #7f8c8d;
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #bdc3c7;
}

.no-results h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}
/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

/* Contact Hero */
.contact-hero {
    position: relative;
    background-image: url('../images/contact.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0 100px;
    min-height: 400px;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(52,58,64,0.8) 100%);
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Content Section */
.contact-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #c9a960;
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 96, 0.15);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #c9a960 0%, #b8944f 100%);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 169, 96, 0.4);
}

/* Form Message */
.form-message {
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    display: block;
}

/* Contact Info Cards */
.contact-info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.contact-info-card.bg-light {
    background: #f8f9fa !important;
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c9a960 0%, #b8944f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-info-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-info-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 15px;
}

.contact-link {
    color: #c9a960;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #b8944f;
    text-decoration: underline;
}

/* Social Links Large */
.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link-large {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background: #c9a960;
    color: #ffffff;
    transform: translateX(5px);
}

.social-link-large i {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #c9a960 0%, #b8944f 100%);
    color: #ffffff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 25px;
    color: #666;
    line-height: 1.8;
}

.accordion-body ul {
    padding-left: 20px;
}

.accordion-body ul li {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 150px 0 80px;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-content-section {
        padding: 50px 0;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 15px 20px;
    }
}
/* ==========================================
   WORLD FACTS PAGE STYLES
   ========================================== */

/* World Facts Hero */
.world-facts-hero {
    position: relative;
    background-image: url('../images/word.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0 100px;
    min-height: 450px;
}

.world-facts-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(41,128,185,0.7) 100%);
}

.world-facts-hero .container {
    position: relative;
    z-index: 2;
}

.world-facts-hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.world-facts-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Search and Filter Section */
.world-facts-filter {
    background: #ffffff;
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.2rem;
}

.search-box .form-control {
    padding-left: 45px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    height: 50px;
    font-size: 1rem;
}

.search-box .form-control:focus {
    border-color: #c9a960;
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 96, 0.15);
}

.world-facts-filter .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    height: 50px;
    font-size: 1rem;
}

.world-facts-filter .form-select:focus {
    border-color: #c9a960;
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 96, 0.15);
}

.world-facts-filter .btn-outline-secondary {
    height: 50px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 600;
}

.world-facts-filter .btn-outline-secondary:hover {
    background: #c9a960;
    border-color: #c9a960;
    color: #ffffff;
}

/* World Facts Section */
.world-facts-section {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 500px;
}

/* Country Cards */
.country-card-wrapper {
    transition: all 0.3s ease;
}

.country-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.country-flag {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.country-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.country-name i {
    color: #c9a960;
}

/* Country Info */
.country-info {
    margin-bottom: 20px;
    flex: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.info-item:hover {
    background: #e9ecef;
}

.info-item > i {
    font-size: 1.2rem;
    color: #c9a960;
    margin-right: 12px;
    margin-top: 3px;
    min-width: 20px;
}

.info-item > div {
    flex: 1;
}

.info-label {
    font-weight: 600;
    color: #555;
    display: block;
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.info-value {
    color: #2c3e50;
    font-size: 0.95rem;
    display: block;
}

/* Country Episodes */
.country-episodes {
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.country-episodes strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 10px;
}

.country-episodes a {
    display: inline-block;
    color: #c9a960;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.country-episodes a:hover {
    background: #c9a960;
    color: #ffffff;
    transform: translateX(5px);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.no-results i {
    color: #ddd;
}

.no-results h3 {
    color: #666;
    margin-bottom: 10px;
}

/* Statistics Section */
.world-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.world-stats-section h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
    border-color: #c9a960;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c9a960 0%, #b8944f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

/* Hidden Class for Filtering */
.country-card-wrapper.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 991px) {
    .world-facts-hero-title {
        font-size: 3rem;
    }
    
    .world-facts-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .world-facts-hero {
        padding: 150px 0 80px;
    }
    
    .world-facts-hero-title {
        font-size: 2.2rem;
    }
    
    .world-facts-hero-subtitle {
        font-size: 1rem;
    }
    
    .world-facts-filter {
        top: 60px;
        padding: 20px 0;
    }
    
    .world-facts-section {
        padding: 40px 0;
    }
    
    .country-flag {
        height: 150px;
    }
    
    .country-card-body {
        padding: 20px;
    }
    
    .country-name {
        font-size: 1.3rem;
    }
    
    .world-stats-section {
        padding: 50px 0;
    }
    
    .world-stats-section h2 {
        font-size: 2rem;
    }
    
    .stat-card {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
