/**
 * Syria Information Hub Styles
 * Advanced interactive page with rich visual elements
 */

/* ======================
   Variables
   ====================== */
:root {
    --flag-green: #007A3D;
    --flag-white: #FFFFFF;
    --flag-black: #000000;
    --flag-red: #CE1126;
    --primary: #2c3e50;
    --secondary: #34495e;
    --accent: #3498db;
    --danger: #e74c3c;
    --success: #27ae60;
    --warning: #f39c12;
}

/* ======================
   Hero Section
   ====================== */
.syria-hub-wrapper {
    background: #f8f9fa;
}

.syria-hero {
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
}

.flag-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        var(--flag-green) 0%, 
        var(--flag-green) 33%, 
        var(--flag-white) 33%, 
        var(--flag-white) 66%, 
        var(--flag-black) 66%, 
        var(--flag-black) 100%);
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.flag-container {
    margin-bottom: 30px;
}

.flag-animation {
    width: 240px;
    height: 160px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    animation: flag-wave 3s ease-in-out infinite;
}

@keyframes flag-wave {
    0%, 100% { transform: perspective(400px) rotateY(0deg); }
    50% { transform: perspective(400px) rotateY(5deg); }
}

.flag-stripe {
    height: 33.333%;
    position: relative;
}

.flag-stripe.green { background: var(--flag-green); }
.flag-stripe.white { 
    background: var(--flag-white); 
    display: flex;
    align-items: center;
    justify-content: center;
}
.flag-stripe.black { background: var(--flag-black); }

.flag-stars {
    display: flex;
    gap: 20px;
}

.flag-stars .star {
    color: var(--flag-red);
    font-size: 24px;
    animation: star-twinkle 2s ease-in-out infinite;
}

.flag-stars .star:nth-child(2) { animation-delay: 0.3s; }
.flag-stars .star:nth-child(3) { animation-delay: 0.6s; }

@keyframes star-twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 0 0 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px;
    font-weight: 600;
}

.hero-motto {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    letter-spacing: 2px;
}

/* ======================
   Quick Facts Bar
   ====================== */
.quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fact-item {
    padding: 20px 15px;
    text-align: center;
    border-right: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.fact-item:last-child { border-right: none; }

.fact-item:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

.fact-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.fact-label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.fact-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

/* ======================
   Container
   ====================== */
.container-hub {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* ======================
   Section Titles
   ====================== */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.title-icon {
    font-size: 36px;
}

.map-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #6c757d;
    margin-left: auto;
}

/* ======================
   Introduction Section
   ====================== */
.intro-section {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 20px;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 15px;
}

.intro-text strong {
    color: var(--primary);
    font-weight: 600;
}

.highlights-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.highlight-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    color: white;
}

.highlight-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.highlight-label {
    display: block;
    font-size: 13px;
    opacity: 0.9;
}

.ancient-symbols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.symbol-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 32px;
    transition: all 0.3s ease;
}

.symbol-item:hover {
    background: #e9ecef;
    transform: translateY(-5px);
}

.symbol-item span {
    display: block;
    font-size: 12px;
    margin-top: 10px;
    color: var(--primary);
    font-weight: 600;
}

/* ======================
   Cities Info Cards
   ====================== */
.cities-info {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
}

.cities-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 20px;
    text-align: center;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.city-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.city-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);
}

.city-card-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.city-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 5px;
}

.city-population {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    margin: 0 0 10px;
}

.city-desc {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* ======================
   Geography Section
   ====================== */
.geography-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.geography-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.geo-card {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.geo-card:hover {
    border-color: var(--success);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(39, 174, 96, 0.15);
}

.geo-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.geo-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 10px;
}

.geo-card p {
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

.geo-card strong {
    color: var(--success);
}

/* ======================
   Culture Section
   ====================== */
.culture-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.culture-card {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

.culture-card.full-width {
    grid-column: 1 / -1;
    border-left-color: var(--warning);
}

.culture-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 15px;
}

.culture-card > p {
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
    margin: 0 0 15px;
}

.unesco-sites {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.unesco-item {
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.unesco-item strong {
    display: block;
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 8px;
}

.unesco-item p {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

.cuisine-items {
    display: grid;
    gap: 10px;
}

.cuisine-item {
    padding: 10px 15px;
    background: white;
    border-radius: 6px;
    font-size: 14px;
    color: #495057;
}

.cuisine-item strong {
    color: var(--warning);
}

.culture-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.culture-list > div {
    padding: 10px 12px;
    background: white;
    border-radius: 6px;
    font-size: 14px;
    color: #495057;
}

.culture-list strong {
    color: var(--primary);
}

/* ======================
   Section Titles
   ====================== */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.title-icon {
    font-size: 36px;
}

/* ======================
   Interactive Map
   ====================== */
.map-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.map-container {
    position: relative;
}

.syria-map {
    width: 100%;
    height: auto;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
}

.country-border {
    transition: all 0.3s ease;
}

.country-border:hover {
    fill: #e8f4f8;
}

/* Governorates lines */
.governorates line {
    stroke-dasharray: 5,5;
}

/* Mediterranean Sea */
.sea-label {
    font-size: 12px;
    fill: #3498db;
    font-weight: 600;
    font-style: italic;
}

/* Euphrates River */
.river-label {
    font-size: 11px;
    fill: #3498db;
    font-weight: 600;
    font-style: italic;
}

/* Occupied Territory */
.occupied-label {
    font-size: 10px;
    fill: #dc3545;
    font-weight: 700;
    text-anchor: middle;
}

.city {
    cursor: pointer;
    transition: all 0.3s ease;
}

.city.capital {
    fill: var(--flag-red);
}

.city.major {
    fill: var(--accent);
}

.city:hover {
    r: 12;
    filter: drop-shadow(0 0 8px rgba(52, 152, 219, 0.6));
}

.city-label {
    font-size: 13px;
    font-weight: 600;
    fill: var(--primary);
    text-anchor: middle;
}

.neighbor-label {
    font-size: 11px;
    fill: #95a5a6;
    font-style: italic;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.capital { background: var(--flag-red); }
.legend-dot.major { background: var(--accent); }

/* ======================
   Timeline Section
   ====================== */
.timeline-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--flag-green), var(--flag-red), var(--flag-black));
}

.timeline-era {
    margin-bottom: 30px;
    position: relative;
}

.timeline-era.highlight {
    background: #fff8f0;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--flag-red);
}

.era-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 15px;
}

.timeline-events.compact .event {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.timeline-events.detailed .event {
    padding: 15px;
    margin-bottom: 12px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #e9ecef;
}

.event.critical {
    border-left-color: var(--danger);
    background: #fff5f5;
}

.event.victory {
    border-left-color: var(--success);
    background: #f0fff4;
}

.event-year {
    font-weight: 700;
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 5px;
}

.event-desc {
    color: #495057;
    font-size: 14px;
    line-height: 1.6;
}

.event-desc strong {
    color: var(--primary);
}

/* ======================
   Crimes Documentation
   ====================== */
.crimes-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.crimes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.crime-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.crime-card:hover {
    border-color: var(--danger);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.2);
}

.crime-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.crime-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin: 10px 0;
}

.crime-stat {
    font-size: 32px;
    font-weight: 800;
    color: var(--danger);
    margin: 10px 0;
}

.crime-card p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

.documentation-note {
    padding: 15px;
    background: #f8f9fa;
    border-left: 4px solid var(--accent);
    border-radius: 5px;
    font-size: 13px;
    color: #495057;
}

/* ======================
   Two Column Layout
   ====================== */
.content-columns {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    margin-bottom: 30px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ======================
   Info Grid
   ====================== */
.info-grid {
    display: grid;
    gap: 12px;
}

.info-item {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 14px;
}

.info-item strong {
    color: var(--primary);
}

/* ======================
   Heritage Items
   ====================== */
.heritage-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.heritage-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.heritage-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.heritage-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 15px;
}

.heritage-item p {
    margin: 0;
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
}

/* ======================
   Flag Symbolism
   ====================== */
.flag-meaning {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.flag-color-meaning {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
}

.color-box {
    width: 40px;
    height: 30px;
    border-radius: 4px;
    flex-shrink: 0;
    border: 1px solid #dee2e6;
}

.green-box { background: var(--flag-green); }
.white-box { background: var(--flag-white); }
.black-box { background: var(--flag-black); }
.stars-box { 
    background: var(--flag-white); 
    color: var(--flag-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.flag-color-meaning strong {
    color: var(--primary);
    font-size: 14px;
}

.flag-note {
    padding: 15px;
    background: #fff8f0;
    border-left: 4px solid var(--warning);
    border-radius: 5px;
    font-size: 13px;
    margin: 0;
}

/* ======================
   Cultural Cards Section
   ====================== */
.cultural-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.cultural-card {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--accent);
    transition: all 0.3s ease;
}

.cultural-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.2);
}

.cultural-card-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.cultural-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 10px;
}

.cultural-card p {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* ======================
   Tabbed Content Section
   ====================== */
.tabbed-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid #e9ecef;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #6c757d;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.tab-button:hover {
    color: var(--primary);
    background: rgba(52, 152, 219, 0.05);
}

.tab-button.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(52, 152, 219, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tab-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--success);
    transition: all 0.3s ease;
}

.tab-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.tab-item-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.tab-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 10px;
}

.tab-item p {
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

/* ======================
   Economy Section
   ====================== */
.economy-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.economy-feature {
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.economy-feature:hover {
    border-color: var(--warning);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.2);
}

.economy-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.economy-feature h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 12px;
}

.economy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.economy-list li {
    padding: 8px 0;
    font-size: 14px;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

.economy-list li:last-child {
    border-bottom: none;
}

.economy-list li::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    margin-right: 8px;
}

/* ======================
   News Section
   ====================== */
.news-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.news-item-compact {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.news-item-compact:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.news-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    flex: 1;
}

.news-title {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.4;
}

.news-title a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: var(--accent);
}

.news-meta {
    font-size: 12px;
    color: #6c757d;
}

.view-all-news {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-news:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* ======================
   Quick Links
   ====================== */
.quick-links-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-link {
    display: block;
    padding: 12px 15px;
    background: #f8f9fa;
    color: var(--primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.quick-link:hover {
    background: var(--accent);
    color: white;
    border-left-color: var(--primary);
    transform: translateX(5px);
}

/* ======================
   Hope Section
   ====================== */
.hope-section {
    background: linear-gradient(135deg, var(--flag-green) 0%, #00a859 100%);
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.hope-content {
    max-width: 800px;
    margin: 0 auto;
}

.hope-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hope-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px;
    color: white;
}

.hope-text {
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 30px;
    opacity: 0.95;
}

.hope-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.value-badge {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.value-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* ======================
   Responsive Design
   ====================== */
@media (max-width: 992px) {
    .content-columns {
        grid-template-columns: 1fr;
    }
    
    .quick-facts {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cultural-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .economy-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .crimes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .geography-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .unesco-sites {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .highlights-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .map-legend {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .city-label {
        font-size: 11px;
    }
    
    .neighbor-label {
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    .syria-hero {
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .flag-animation {
        width: 180px;
        height: 120px;
    }
    
    .quick-facts {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .crimes-grid {
        grid-template-columns: 1fr;
    }
    
    .cultural-cards {
        grid-template-columns: 1fr;
    }
    
    .tab-grid {
        grid-template-columns: 1fr;
    }
    
    .economy-features {
        grid-template-columns: 1fr;
    }
    
    .geography-grid {
        grid-template-columns: 1fr;
    }
    
    .unesco-sites {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlights-row {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-button {
        width: 100%;
        text-align: left;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-era h3 {
        font-size: 20px;
    }
    
    .timeline-event {
        padding: 12px;
    }
    
    .hope-section h2 {
        font-size: 28px;
    }
    
    .hope-text {
        font-size: 16px;
    }
    
    .city-label {
        font-size: 10px;
    }
    
    .neighbor-label {
        font-size: 8px;
    }
    
    .map-legend {
        flex-direction: column;
        gap: 10px;
    }
    
    .legend-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .syria-hero {
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .flag-animation {
        width: 140px;
        height: 90px;
    }
    
    .quick-facts {
        grid-template-columns: 1fr;
    }
    
    .fact-item {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding: 15px;
    }
    
    .fact-item:last-child {
        border-bottom: none;
    }
    
    .fact-value {
        font-size: 20px;
    }
    
    .fact-label {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 20px;
        flex-direction: column;
        gap: 8px;
    }
    
    .title-icon {
        font-size: 28px;
    }
    
    .map-container {
        padding: 15px;
        overflow-x: auto;
    }
    
    .syria-map {
        min-width: 300px;
    }
    
    .city-label {
        font-size: 9px;
    }
    
    .neighbor-label {
        font-size: 7px;
    }
    
    .sea-label,
    .river-label {
        font-size: 8px;
    }
    
    .occupied-label {
        font-size: 7px;
    }
    
    .map-legend {
        flex-direction: column;
        gap: 8px;
        padding: 10px;
    }
    
    .legend-item {
        font-size: 12px;
    }
    
    .geography-section,
    .culture-section,
    .tabbed-content,
    .crimes-section,
    .news-section,
    .timeline-section {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .geography-grid,
    .unesco-sites,
    .cities-grid,
    .highlights-row,
    .crimes-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .geo-card,
    .unesco-item,
    .city-card,
    .highlight-item,
    .crime-card {
        padding: 15px;
    }
    
    .geo-icon,
    .cultural-card-icon,
    .tab-item-icon,
    .economy-icon {
        font-size: 32px;
    }
    
    .tab-button {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .tab-item {
        padding: 15px;
    }
    
    .tab-item h4 {
        font-size: 15px;
    }
    
    .tab-item p {
        font-size: 13px;
    }
    
    .timeline {
        padding-left: 15px;
    }
    
    .timeline::before {
        left: 5px;
    }
    
    .timeline-era h3 {
        font-size: 18px;
    }
    
    .timeline-event {
        padding-left: 15px;
        margin-left: 15px;
    }
    
    .timeline-event::before {
        left: -22px;
        width: 12px;
        height: 12px;
    }
    
    .timeline-event h4 {
        font-size: 14px;
    }
    
    .timeline-event p {
        font-size: 13px;
    }
    
    .crime-number {
        font-size: 28px;
    }
    
    .crime-label {
        font-size: 13px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .news-thumbnail {
        width: 100%;
        height: 180px;
    }
    
    .hope-section {
        padding: 40px 20px;
    }
    
    .hope-icon {
        font-size: 48px;
    }
    
    .hope-section h2 {
        font-size: 22px;
    }
    
    .hope-text {
        font-size: 14px;
    }
    
    .value-badge {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .intro-title {
        font-size: 22px;
    }
    
    .intro-text p {
        font-size: 14px;
    }
    
    .ancient-symbols {
        grid-template-columns: 1fr;
    }
    
    .symbol-item {
        padding: 15px;
        font-size: 28px;
    }
}

/* ======================
   Extra Small Screens
   ====================== */
@media (max-width: 360px) {
    .syria-hero {
        padding: 20px 10px;
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .flag-animation {
        width: 120px;
        height: 80px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .title-icon {
        font-size: 24px;
    }
    
    .map-container {
        padding: 10px;
    }
    
    .city-label {
        font-size: 8px;
    }
    
    .neighbor-label,
    .sea-label,
    .river-label,
    .occupied-label {
        font-size: 6px;
    }
    
    .geography-section,
    .culture-section,
    .tabbed-content,
    .crimes-section,
    .news-section,
    .timeline-section {
        padding: 15px 10px;
        margin-bottom: 15px;
    }
    
    .geo-card,
    .cultural-card,
    .tab-item,
    .economy-feature {
        padding: 12px;
    }
    
    .geo-card h4,
    .cultural-card h4 {
        font-size: 15px;
    }
    
    .geo-card p,
    .cultural-card p {
        font-size: 12px;
    }
    
    .tab-button {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .crime-card {
        padding: 12px;
    }
    
    .crime-number {
        font-size: 24px;
    }
    
    .timeline {
        padding-left: 10px;
    }
    
    .timeline::before {
        left: 3px;
    }
    
    .timeline-event {
        padding-left: 12px;
        margin-left: 12px;
    }
    
    .timeline-event::before {
        left: -19px;
        width: 10px;
        height: 10px;
    }
    
    .hope-section {
        padding: 30px 15px;
    }
    
    .hope-icon {
        font-size: 40px;
    }
    
    .hope-section h2 {
        font-size: 20px;
    }
    
    .hope-text {
        font-size: 13px;
    }
    
    .value-badge {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .intro-title {
        font-size: 20px;
    }
    
    .intro-text p {
        font-size: 13px;
    }
}

/* ======================
   Print Styles
   ====================== */
@media print {
    .flag-animation {
        animation: none;
    }
    
    .tab-buttons {
        display: none;
    }
    
    .tab-content {
        display: block !important;
    }
    
    .hope-section {
        background: white;
        color: black;
    }
}
