/* Travel Blog CSS - Modern and Responsive */

/* CSS Variables for consistent theming */
:root {
    --primary-color: #3b82f6;
    --primary-dark: #1d4ed8;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --background-color: #ffffff;
    --background-light: #f9fafb;
    --background-dark: #111827;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --transition: all 0.3s ease;
}

/* ==========================================================================
   Enhanced Navigation Styles
   ========================================================================== */

.main-navigation {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #3498db;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 60px;
}

.nav-brand a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.nav-brand a:hover {
    color: #3498db;
    transform: translateY(-1px);
}

.nav-brand a i {
    font-size: 1.3rem;
    color: #3498db;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    text-decoration: none;
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.2rem;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f9fa;
    font-size: 0.9rem;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    padding-left: 1.5rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.4rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.nav-toggle:hover span {
    background: #3498db;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-signup {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.newsletter-input-wrapper input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-input-wrapper button {
    background: #f1c40f;
    color: #2c3e50;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-input-wrapper button:hover {
    background: #f39c12;
    transform: translateX(-2px);
}

.newsletter-privacy {
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Footer Features */
.footer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid #eee;
}

.feature-section h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.feature-section p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.feature-btn {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.feature-btn:hover {
    background: #2980b9;
    text-decoration: none;
}

.category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-links a {
    background: #f8f9fa;
    color: #495057;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.category-links a:hover {
    background: #3498db;
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-container {
        height: 55px;
    }
    
    .nav-brand a {
        font-size: 1.1rem;
    }
    
    .nav-brand a i {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 55px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        transition: left 0.3s ease;
        padding: 1.5rem;
        height: calc(100vh - 55px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .nav-link {
        padding: 0.8rem;
        border-radius: 6px;
        border: 1px solid rgba(52, 152, 219, 0.3);
        font-size: 0.9rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(52, 152, 219, 0.1);
        margin-top: 0.5rem;
        border: 1px solid rgba(52, 152, 219, 0.3);
    }
    
    .dropdown-item {
        color: white;
        border-bottom: 1px solid rgba(52, 152, 219, 0.2);
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .dropdown-item:hover {
        background: rgba(52, 152, 219, 0.3);
        color: white;
        padding-left: 1.2rem;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
        gap: 1rem;
        background: transparent;
        padding: 0;
    }
    
    .newsletter-input-wrapper input,
    .newsletter-input-wrapper button {
        border-radius: 10px;
    }
}

/* ==========================================================================
   Search Page Styles
   ========================================================================== */

.search-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.search-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.search-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.search-form {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.search-input-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.search-results {
    margin-top: 2rem;
}

.search-results-header {
    padding: 1.5rem 0;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 2rem;
}

.search-results-header h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.search-results-count {
    color: #6c757d;
    font-size: 1rem;
}

.search-result-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.search-result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.search-result-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.search-result-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-result-title a:hover {
    color: #667eea;
}

.search-result-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.search-result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.search-result-url {
    color: #667eea;
    font-size: 0.9rem;
    text-decoration: none;
}

.search-result-type {
    background: #f8f9fa;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.no-results-icon {
    font-size: 4rem;
    color: #e9ecef;
    margin-bottom: 1rem;
}

.no-results h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.no-results p {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.search-suggestions {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.search-suggestions h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suggestion-tag {
    background: white;
    color: #495057;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.suggestion-tag:hover {
    background: #667eea;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.search-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: #495057;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
    text-decoration: none;
    transform: translateY(-1px);
}

.search-stats {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-time {
    color: #6c757d;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .search-hero h1 {
        font-size: 2rem;
    }
    
    .search-hero p {
        font-size: 1rem;
    }
    
    .search-container {
        padding: 0 1rem;
    }
    
    .search-form {
        padding: 1.5rem;
    }
    
    .search-input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-input,
    .search-btn {
        width: 100%;
    }
    
    .search-result-item {
        padding: 1.5rem;
    }
    
    .search-result-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .search-filters {
        justify-content: center;
    }
    
    .search-stats {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ==========================================================================
   Disclaimer Styles
   ========================================================================== */

.disclaimer-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.disclaimer-title {
    color: #856404;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.disclaimer-title i {
    font-size: 1.3rem;
    color: #f39c12;
}

.disclaimer-text {
    color: #212529;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
    background: rgba(255,255,255,0.7);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
}

.disclaimer-text strong {
    color: #d63384;
    font-weight: 700;
}

.disclaimer-homepage {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    border-top: 2px solid #dee2e6;
}

.disclaimer-homepage .disclaimer-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.15);
    border: 2px solid #ffc107;
}

@media (max-width: 768px) {
    .disclaimer-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 10px;
    }
    
    .disclaimer-title {
        font-size: 1.1rem;
        gap: 0.5rem;
    }
    
    .disclaimer-text {
        font-size: 0.9rem;
        text-align: left;
        padding: 1rem;
    }
    
    .disclaimer-homepage {
        padding: 2rem 0;
    }
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.site-header {
    background: var(--background-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    flex-direction: column;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.brand-link:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.brand-link i {
    font-size: 1.75rem;
}

.brand-tagline {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    padding: 0.5rem 0;
    transition: var(--transition);
    text-decoration: none;
}

.nav-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--background-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-link:hover {
    background: var(--background-light);
    color: var(--primary-color);
    text-decoration: none;
}

/* Search Form */
.search-form {
    margin-left: auto;
}

.search-box {
    display: flex;
    background: var(--background-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-input {
    border: none;
    background: transparent;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    outline: none;
    min-width: 200px;
}

.search-btn {
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--primary-dark);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: var(--text-white);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.hero-title .highlight {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat {
    text-align: center;
    color: var(--text-white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.8), rgba(29, 78, 216, 0.9));
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-white);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background: #d97706;
    border-color: #d97706;
    color: var(--text-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--primary-color);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-title i {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Posts */
.featured-posts {
    padding: 5rem 0;
    background: var(--background-light);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.featured-card {
    background: var(--background-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.featured-main .card-image {
    height: 320px;
}

.card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    transition: transform 0.4s ease;
    background: var(--background-light);
    opacity: 1;
}

.card-image:hover img {
    transform: scale(1.08);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
}

.card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.card-title {
    margin-bottom: 1rem;
}

.card-title a {
    color: var(--text-color);
    text-decoration: none;
}

.card-title a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.card-excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.post-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-dark);
    text-decoration: none;
    transform: translateX(3px);
}

/* Categories Section */
.categories-section {
    padding: 5rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    text-align: center;
    padding: 2rem;
    background: var(--background-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.category-link {
    text-decoration: none;
    color: inherit;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-white);
    font-size: 2rem;
}

.category-name {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.category-description {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Recent Posts */
.recent-posts {
    padding: 5rem 0;
    background: var(--background-light);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.post-card {
    background: var(--background-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.destination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.no-posts-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.no-posts h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.newsletter-description {
    font-size: 1.125rem;
    opacity: 0.9;
}

.newsletter-form-large .form-group {
    display: flex;
    background: var(--background-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
}

.newsletter-input-large {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    outline: none;
}

.newsletter-btn-large {
    background: var(--secondary-color);
    color: var(--text-white);
    border: none;
    padding: 1rem 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-btn-large:hover {
    background: #d97706;
}

.newsletter-privacy {
    font-size: 0.875rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination {
    background: var(--background-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.pagination-list {
    display: flex;
    list-style: none;
    margin: 0;
}

.pagination-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-right: 1px solid var(--border-color);
    transition: var(--transition);
}

.pagination-link:hover {
    background: var(--background-light);
    color: var(--primary-color);
    text-decoration: none;
}

.pagination-link.current {
    background: var(--primary-color);
    color: var(--text-white);
}

.pagination-ellipsis {
    padding: 0.75rem 1rem;
    color: var(--text-light);
    border-right: 1px solid var(--border-color);
}

/* Footer */
.site-footer {
    background: var(--background-dark);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

/* Ensure all footer text is white */
.site-footer,
.site-footer p,
.site-footer h3,
.site-footer h4,
.site-footer .footer-description,
.site-footer .contact-info p,
.site-footer .copyright,
.site-footer .made-with,
.site-footer .newsletter-description,
.site-footer .footer-title,
.site-footer .footer-subtitle,
.site-footer .footer-section h3,
.site-footer .footer-section h4,
.site-footer span,
.site-footer div,
.site-footer li {
    color: var(--text-white) !important;
}

/* Make sure footer links are white */
.site-footer a {
    color: var(--text-white) !important;
}

.site-footer a:hover {
    color: var(--secondary-color) !important;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-white) !important;
}

.footer-subtitle {
    font-size: 1.125rem;
    color: var(--text-white) !important;
}

.footer-description {
    opacity: 1 !important;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-white) !important;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--text-white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-white);
    opacity: 0.8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
    text-decoration: none;
}

.newsletter-form {
    margin-bottom: 2rem;
}

.newsletter-input-group {
    display: flex;
    background: var(--background-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    border: none;
    padding: 0.75rem 1rem;
    outline: none;
}

.newsletter-btn {
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: var(--primary-dark);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0.8;
}

.made-with {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.made-with i {
    color: #ef4444;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.back-to-top.visible {
    display: flex;
}

/* Blog layout with sidebar */
.blog-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; align-items: start; }
.blog-main { display: grid; gap: 2rem; }
.featured-hero { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-xl); }
.featured-hero img { width: 100%; height: 420px; object-fit: cover; display: block; }
.fh-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 100%); }
.fh-content { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; color: white; }
.fh-meta { display: flex; align-items: center; gap: .5rem; opacity: .9; font-size: .9rem; margin-bottom: .25rem; }
.fh-title { font-size: 2rem; line-height: 1.2; margin: .25rem 0 .5rem; color: #fff; }
.fh-excerpt { color: #e5e7eb; font-size: 1rem; }
.badge { background: #6d28d9; color:#fff; border-radius: 999px; padding: .25rem .6rem; font-size: .8rem; font-weight: 700; }
.dot { color: #cbd5e1; margin: 0 .25rem; }

.blog-sidebar { position: sticky; top: 90px; }
.trending-widget { background: #1f1b2e; color: #e2e8f0; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.trending-header { padding: 1rem 1.25rem; font-weight: 800; letter-spacing: .2px; background: #3b2c87; color: white; }
.trending-list { display: grid; gap: 1rem; padding: 1rem; }
.trending-item { display: grid; grid-template-columns: 110px 1fr; gap: .75rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; transition: transform .2s ease, box-shadow .2s ease; }
.trending-item:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.25); text-decoration: none; }
.ti-thumb img { width: 110px; height: 78px; object-fit: cover; display: block; }
.ti-content { padding: .6rem .6rem .6rem 0; display: flex; flex-direction: column; justify-content: center; }
.ti-title { font-size: 1rem; line-height: 1.3; color: #fff; margin: 0 0 .25rem; }
.ti-meta { font-size: .85rem; color: #cbd5e1; display: flex; align-items: center; gap: .4rem; }
.trending-empty { color: #cbd5e1; padding: 1rem; font-size: .95rem; }

@media (max-width: 992px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .featured-hero img { height: 320px; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        background: var(--background-color);
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: var(--shadow-md);
        padding: 1rem;
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .search-form {
        margin-left: 0;
        width: 100%;
    }
    
    .search-input {
        min-width: auto;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .hero-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-main {
        grid-row: span 1;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-form-large .form-group {
        flex-direction: column;
    }
    
    .newsletter-btn-large {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===== MODERN SINGLE POST DESIGN ===== */

/* Hero Section */
.post-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 4rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-bottom: 60px;
    color: white;
}

.category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.category-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 25px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.location-info {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.location-info i {
    margin-right: 8px;
    color: #ff6b6b;
}

.country {
    opacity: 0.8;
}

.post-meta-hero {
    display: flex;
    align-items: center;
}

.meta-group {
    display: flex;
    align-items: center;
}

.author-avatar {
    font-size: 2.5rem;
    margin-right: 15px;
    opacity: 0.9;
}

.meta-info .author {
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.meta-details {
    font-size: 0.95rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.separator {
    opacity: 0.6;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Article Content */
.article-content {
    min-width: 0;
}

.post-excerpt {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e9ecef;
}

.post-excerpt .lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #6c757d;
    font-style: italic;
    margin: 0;
}

/* Social Share */
.social-share {
    margin: 40px 0;
}

.social-share-top {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 30px;
}

.share-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 15px;
    display: block;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.share-btn:hover {
    transform: translateY(-3px);
    color: white;
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.pinterest { background: #bd081c; }
.share-btn.email { background: #6c757d; }

.social-share-bottom {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.share-cta h3 {
    color: #495057;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.share-cta p {
    color: #6c757d;
    margin-bottom: 30px;
}

.share-buttons-large {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn-large {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.share-btn-large:hover {
    transform: translateY(-2px);
    color: white;
}

/* Post Body */
.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #343a40;
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body h2,
.post-body h3,
.post-body h4 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #212529;
}

.post-body h2 {
    font-size: 2rem;
    font-weight: 700;
}

.post-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.post-body blockquote {
    border-left: 4px solid #667eea;
    padding-left: 20px;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #6c757d;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 0 10px 10px 0;
}

/* Post Tags */
.post-tags {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.tag-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: #e9ecef;
    color: #495057;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #667eea;
    color: white;
}

/* Sidebar */
.post-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

/* Author Card */
.author-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.author-avatar-large {
    font-size: 4rem;
    color: #667eea;
    text-align: center;
    margin-bottom: 20px;
}

.author-details {
    text-align: center;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 5px;
}

.author-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
}

.author-bio {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Related Posts Sidebar */
.related-posts-sidebar {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-item {
    border: none;
}

.related-link {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.related-link:hover {
    transform: translateX(5px);
    color: inherit;
}

.related-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.related-content {
    flex: 1;
}

.related-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #212529;
}

.related-meta {
    font-size: 0.85rem;
    color: #6c757d;
    display: flex;
    gap: 10px;
}

/* Newsletter Card */
.newsletter-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 30px;
    color: white;
    text-align: center;
}

.newsletter-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.newsletter-card p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
}

.newsletter-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Comments Section */
.comments-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.comments-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.comments-header {
    text-align: center;
    margin-bottom: 60px;
}

.comments-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
}

.comments-count {
    color: #667eea;
}

.comments-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
}

/* Comment Form */
.comment-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-submit {
    text-align: left;
}

.submit-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.form-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Comments List */
.comments-list {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.comments-list-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #667eea;
}

.comment-item {
    display: flex;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
}

.comment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-avatar {
    font-size: 2.5rem;
    color: #667eea;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.comment-author {
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.comment-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.comment-body {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 15px;
}

.comment-footer {
    margin-top: 15px;
}

.comment-website {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.comment-website:hover {
    color: #5a67d8;
    text-decoration: underline;
}

/* No Comments */
.no-comments {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.no-comments-icon {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 20px;
}

.no-comments h3 {
    color: #212529;
    margin-bottom: 10px;
}

.no-comments p {
    color: #6c757d;
}

/* Post Navigation */
.post-navigation {
    background: white;
    padding: 30px 0;
    border-top: 1px solid #e9ecef;
}

.nav-links {
    display: flex;
    justify-content: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid #667eea;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #667eea;
    color: white;
}

/* Alert Styles */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design for Modern Post */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .post-sidebar {
        position: static;
        order: -1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .share-buttons-large {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .post-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding-bottom: 40px;
    }
    
    .post-content-wrapper .container {
        padding: 40px 1rem;
    }
    
    .comment-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .meta-details {
        flex-wrap: wrap;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   Mobile Responsiveness Enhancements
   ========================================================================== */

/* Mobile-first responsive typography */
h1 { font-size: clamp(1.8rem, 4vw, 2.5rem) !important; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem) !important; }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem) !important; }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem) !important; }

/* Mobile container improvements */
@media (max-width: 576px) {
    .container {
        padding: 0 1rem !important;
    }
    
    /* Hero section mobile */
    .hero {
        padding: 3rem 0 !important;
        min-height: auto !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .hero-description {
        font-size: 0.95rem !important;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Featured posts mobile */
    .featured-posts {
        padding: 3rem 0 !important;
    }
    
    .posts-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .post-card {
        margin-bottom: 0;
    }
    
    /* Form mobile improvements */
    .search-form,
    .contact-form,
    .newsletter-form,
    .comment-form {
        padding: 1.5rem !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .search-input-group {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .search-input,
    .search-btn {
        width: 100% !important;
    }
    
    /* Section padding mobile */
    .policy-hero,
    .contact-hero,
    .search-hero {
        padding: 3rem 0 !important;
    }
    
    .policy-hero h1,
    .contact-hero h1,
    .search-hero h1 {
        font-size: 2rem !important;
    }
    
    .policy-hero p,
    .contact-hero p,
    .search-hero p {
        font-size: 1rem !important;
    }
    
    /* Mobile touch improvements */
    .btn {
        min-height: 48px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Contact page mobile */
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-info,
    .contact-form-section {
        padding: 1.5rem !important;
    }
    
    /* Policy page mobile */
    .policy-content {
        padding: 0 1rem !important;
    }
    
    .policy-section {
        padding: 2rem 1.5rem !important;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    .footer-features {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Newsletter mobile */
    .newsletter-content h2 {
        font-size: 2rem !important;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column !important;
        gap: 1rem !important;
        background: transparent !important;
        padding: 0 !important;
    }
    
    .newsletter-input-wrapper input,
    .newsletter-input-wrapper button {
        border-radius: 10px !important;
        width: 100% !important;
    }
    
    /* Single post mobile */
    .post-header {
        text-align: center;
        padding: 2rem 0;
    }
    
    .post-content {
        padding: 1.5rem;
    }
    
    .post-image {
        border-radius: 10px 10px 0 0;
    }
    
    /* Search results mobile */
    .search-results-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Related posts mobile */
    .related-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* Tablet responsiveness */
@media (min-width: 577px) and (max-width: 768px) {
    .container {
        padding: 0 1.5rem !important;
    }
    
    .posts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .hero {
        padding: 4rem 0 !important;
    }
    
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    
    .search-results-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Focus improvements for better accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto !important;
    }
}

/* Improved mobile navigation positioning */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 400px;
    }
    
    .nav-links {
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }
    
    .nav-links li {
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        color: var(--text-color);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background: var(--accent-color);
        color: white;
        padding-left: 2rem;
    }
}
