/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e74c3c;
    --secondary-color: #3498db;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
}

.header-top {
    background: var(--dark-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.header-top-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    background: var(--primary-color);
    color: white;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 12px;
}

.contact-info a:hover i {
    color: white;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 14px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--light-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: var(--primary-color);
    color: white;
}

.language-selector i {
    color: var(--dark-color);
    font-size: 14px;
}

.language-selector:hover i {
    color: white;
}

.main-nav {
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
}

.logo .highlight {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--light-color);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

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

.lang-btn i:last-child {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-btn:hover i:last-child {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    min-width: 160px;
    z-index: 9999;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.lang-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 12px 18px;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.lang-option:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 22px;
}

.lang-option.active {
    background: var(--primary-color);
    color: white;
}

.nav-links a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: calc(100vh - 80px);
    margin-top: 0;
    overflow: hidden;
}

.slider {
    position: relative;
    height: 100%;
    touch-action: pan-y pinch-zoom;
    cursor: grab;
}

.slider:active {
    cursor: grabbing;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 1;
    width: 90%;
    max-width: 800px;
    padding: 20px;
}

.slide-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-content .btn {
    animation: fadeInUp 1s ease 0.4s;
}

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



.dot.active {
    background: var(--primary-color);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slider-dots .dot.active {
    background: #fff;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
}

/* Headlines Section */
.headlines-section {
    padding: 0;
    background: var(--light-color);
}

.headlines-ticker {
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 60px;
}

.ticker-wrapper {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-wrapper:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 20px 30px;
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.ticker-item:hover {
    background: var(--light-color);
}

.ticker-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-right: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticker-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
}

@media (max-width: 992px) {
    .ticker-item {
        padding: 15px 20px;
    }
    
    .ticker-title {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .ticker-item {
        padding: 12px 15px;
    }
    
    .ticker-category {
        padding: 4px 10px;
        font-size: 10px;
        margin-right: 10px;
    }
    
    .ticker-title {
        font-size: 13px;
    }
    
    .section-header {
        margin-bottom: 10px;
        white-space: normal;
        overflow: visible;
        text-overflow: initial;
    }
    
    .section-header h2 {
        font-size: 20px;
        margin-bottom: 0;
    }
    
    .section-header p {
        display: none;
    }
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.feature-card p {
    color: var(--text-light);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
}

.section-footer {
    text-align: center;
    margin-top: 6px;
}

/* Articles Section */
.articles-section {
    padding: 30px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 100%;
    padding: 5px;
}

.article-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-10px);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.article-content {
    padding: 25px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.article-meta i {
    margin-right: 5px;
}

.article-content h3 {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.article-content h3 a {
    transition: var(--transition);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.article-content h3 a:hover {
    color: var(--primary-color);
}

.article-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 10px;
}

/* Hot Deals */
.hot-deals-section {
    padding: 88px 0;
    background:
        radial-gradient(circle at top left, rgba(231, 76, 60, 0.10), transparent 26%),
        linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
}

.hot-deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.hot-deal-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(44, 62, 80, 0.08);
    box-shadow: 0 18px 38px rgba(44, 62, 80, 0.08);
    transition: var(--transition);
}

.hot-deal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(44, 62, 80, 0.12);
}

.hot-deal-visual {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #12344d 0%, #e67e22 100%);
}

.hot-deal-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hot-deal-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 48px;
}

.hot-deal-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hot-deal-content {
    padding: 24px;
}

.hot-deal-content h3 {
    font-size: 24px;
    line-height: 1.25;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.hot-deal-content p {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.75;
}

.hot-deal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hot-deal-price {
    font-size: 22px;
    font-weight: 700;
    color: #c0392b;
}

/* Destinations Section */
.destinations-section {
    padding: 80px 0;
    background: var(--light-color);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.destination-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.destination-image {
    position: relative;
    height: 300px;
}

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

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: var(--white);
}

.destination-overlay h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.destination-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Homepage FAQ */
.homepage-faq-section {
    padding: 88px 0;
    background:
        radial-gradient(circle at top right, rgba(52, 152, 219, 0.09), transparent 30%),
        linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(44, 62, 80, 0.08);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(44, 62, 80, 0.08);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    font-size: 19px;
    font-weight: 600;
    color: var(--dark-color);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--primary-color);
}

.faq-item[open] summary i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 22px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.newsletter-content {
    text-align: center;
    color: var(--white);
}

.newsletter-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form .btn {
    background: var(--dark-color);
}

.newsletter-form .btn:hover {
    background: #1a252f;
}

/* Footer Styles */
.main-footer {
    background: var(--dark-color);
    color: var(--white);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-col p {
    color: #bdc3c7;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bdc3c7;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-details p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-details i {
    color: var(--primary-color);
    margin-top: 5px;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    color: white;
    text-align: center;
}

.contact-hero .section-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: white;
}

.contact-hero .section-header p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-info h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--dark-color);
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-light);
    margin: 0;
    font-size: 14px;
}

.social-links h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 18px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.contact-form label i {
    color: var(--primary-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

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

.contact-form .btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

.contact-form .alert-success {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form .alert-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info, 
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .contact-hero .section-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-hero .section-header h1 {
        font-size: 28px;
    }
    
    .contact-info, 
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
}

/* Admin Styles */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.login-container {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1 {
    font-size: 28px;
    color: var(--dark-color);
}

.login-header .highlight {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.login-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

.error-message {
    background: #fee;
    color: #c00;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Admin Dashboard */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 250px;
    background: var(--dark-color);
    color: var(--white);
    padding: 20px 0;
}

.admin-sidebar .logo {
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.admin-sidebar .logo h2 {
    font-size: 22px;
}

.admin-nav {
    padding: 0 20px;
}

.admin-nav li {
    margin-bottom: 5px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #bdc3c7;
    border-radius: 5px;
    transition: var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
    background: var(--primary-color);
    color: var(--white);
}

.admin-content {
    flex: 1;
    background: var(--light-color);
    padding: 30px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-header h1 {
    font-size: 28px;
    color: var(--dark-color);
}

.admin-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.admin-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.admin-card h3 {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.admin-card .number {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
}

.admin-card .icon {
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.5;
}

/* Admin Form */
.admin-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.admin-form h2 {
    margin-bottom: 30px;
    color: var(--dark-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.admin-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    min-height: 200px;
    resize: vertical;
    font-family: inherit;
}

.admin-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

/* Admin Table */
.admin-table {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    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;
}

.alert i {
    font-size: 18px;
}

/* Slider Settings Block */
.slider-settings-block {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background: #f8f9fa;
}

.slider-settings-block h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

/* Current Image Preview */
.current-image {
    margin-bottom: 15px;
}

.current-image p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.current-image img {
    border: 2px solid #e0e0e0;
    padding: 5px;
    background: var(--white);
}

/* Form Hint */
.form-hint {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 5px;
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.admin-table th {
    background: var(--dark-color);
    color: var(--white);
    font-weight: 500;
}

.admin-table tr:hover {
    background: #f8f9fa;
}

.admin-table .actions {
    display: flex;
    gap: 10px;
}

.admin-table .btn-edit {
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 14px;
}

.admin-table .btn-delete {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 14px;
}

/* Article Detail Page */
.article-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    margin-top: 120px;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.article-hero-overlay {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.article-hero-content {
    color: var(--white);
    max-width: 800px;
}

.article-hero-content .article-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.article-hero-content .article-meta {
    display: flex;
    gap: 25px;
    font-size: 15px;
    opacity: 0.9;
}

.article-hero-content .article-meta i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* Article Content Section */
.article-content-section {
    padding: 60px 0;
    background: var(--light-color);
}

.article-content-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 40px;
    align-items: start;
    max-width: 100%;
}

.article-main {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    min-width: 0;
}

.article-body {
    padding: 40px;
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-color);
    min-width: 0;
    word-wrap: break-word;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body h2,
.article-body h3,
.article-body h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.article-body ul,
.article-body ol {
    margin-bottom: 20px;
    padding-left: 30px;
    max-width: 100%;
    overflow-x: hidden;
}

.article-body li {
    margin-bottom: 10px;
    max-width: 100%;
    word-wrap: break-word;
}

.article-body img {
    border-radius: 8px;
    margin: 20px 0;
    max-width: 100%;
    height: auto;
}

.article-body table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

/* Article Share */
.article-share {
    padding: 30px 40px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.article-share h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0a66c2;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 140px;
    max-width: 350px;
    width: 100%;
    overflow: hidden;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 25px;
    margin-bottom: 25px;
    overflow: hidden;
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    color: var(--dark-color);
}

/* Related Articles */
.related-article {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.related-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-article:first-child {
    padding-top: 0;
}

.related-article-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    max-width: 80px;
}

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

.related-article:hover .related-article-image img {
    transform: scale(1.1);
}

.related-article-content {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
}

.related-article-content h4 {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 8px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.related-article-content h4 a {
    color: var(--text-color);
    transition: var(--transition);
}

.related-article-content h4 a:hover {
    color: var(--primary-color);
}

.related-article-date {
    font-size: 13px;
    color: var(--text-light);
}

/* Category List */
.category-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.category-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.category-list li:first-child {
    padding-top: 0;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    word-wrap: break-word;
    max-width: 100%;
}

.category-list li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.category-list li a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid,
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .admin-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        position: static;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid var(--light-color);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 10px 0;
        font-size: 16px;
    }
    
    .mobile-menu-btn {
        display: block;
        cursor: pointer;
        padding: 10px;
        font-size: 24px;
        color: var(--dark-color);
    }
    
    .mobile-menu-btn.active i::before {
        content: '\f00d';
    }
    
    .hero-slider {
        height: 80vh;
        margin-top: 80px;
    }
    
    .slide-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .slide-content .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    

    
    .features-grid,
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .admin-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .article-hero {
        height: 50vh;
        min-height: 300px;
        margin-top: 100px;
    }
    
    .article-hero-content h1 {
        font-size: 28px;
    }
    
    .article-hero-content .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-body {
        padding: 25px;
        font-size: 16px;
    }
    
    .article-share {
        padding: 20px 25px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-slider {
        height: 70vh;
        margin-top: 70px;
    }
    
    .slide-content h1 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .slide-content .btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    /* Admin Mobile Styles */
    .admin-wrapper {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        z-index: 2000;
        transition: left 0.3s ease;
    }
    
    .admin-sidebar.active {
        left: 0;
    }
    
    .admin-content {
        padding: 15px;
        margin-top: 60px;
    }
    
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .admin-header h1 {
        font-size: 24px;
    }
    
    .admin-user {
        font-size: 14px;
    }
    
    .admin-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .admin-card {
        padding: 20px;
    }
    
    .admin-card .number {
        font-size: 28px;
    }
    
    .admin-card .icon {
        font-size: 32px;
    }
    
    .admin-form {
        padding: 20px;
    }
    
    .admin-form h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .admin-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .admin-table table {
        min-width: 600px;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .admin-table .actions {
        flex-direction: column;
        gap: 5px;
    }
    
    .admin-table .btn-edit,
    .admin-table .btn-delete {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    /* Mobile Menu Toggle Button */
    .mobile-admin-menu {
        display: flex;
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 2001;
        background: var(--primary-color);
        color: var(--white);
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 18px;
    }
    
    .mobile-admin-menu.active {
        left: 265px;
    }
    
    /* Sidebar Overlay */
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1999;
    }
    
    .sidebar-overlay.active {
        display: block;
    }
}

/* Admin Mobile Menu Styles */
.mobile-admin-menu {
    display: none;
}

.sidebar-overlay {
    display: none;
}

@media (max-width: 768px) {
    .mobile-admin-menu {
        display: flex;
    }
    
    .header-top {
        display: none;
    }
    
    .sidebar-overlay {
        display: none;
    }
    
    .sidebar-overlay.active {
        display: block;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Dynamic Menu Pages */
.dynamic-page-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 34%),
        linear-gradient(135deg, #12344d 0%, #1f5f8b 52%, #f26b38 100%);
}

.dynamic-page-hero::before {
    content: '';
    position: absolute;
    inset: auto -8% -40px auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(2px);
}

.dynamic-page-hero-grid {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: left;
}

.dynamic-page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.dynamic-page-hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.02;
    max-width: 11ch;
    margin-bottom: 18px;
}

.dynamic-page-hero p {
    max-width: 58ch;
    font-size: 18px;
    line-height: 1.8;
}

.dynamic-page-inline-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.dynamic-page-inline-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: #eef5f8;
    color: #12344d;
    font-size: 14px;
    font-weight: 500;
}

.dynamic-page-section {
    padding: 72px 0 36px;
    background:
        linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
}

.dynamic-page-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.7fr);
    gap: 28px;
    align-items: start;
}

.dynamic-page-content-card,
.dynamic-page-sidecard,
.dynamic-empty-state {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(26, 82, 118, 0.08);
    box-shadow: 0 18px 45px rgba(24, 52, 77, 0.08);
}

.dynamic-page-content-card {
    padding: 34px;
}

.dynamic-page-content-head {
    padding-bottom: 18px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(44, 62, 80, 0.08);
}

.dynamic-page-content-label,
.dynamic-page-sidecard-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dynamic-page-content-head h2,
.dynamic-page-sidecard h3 {
    font-size: 28px;
    color: var(--dark-color);
}

.dynamic-page-prose {
    font-size: 17px;
    line-height: 1.85;
    color: #334e68;
}

.dynamic-page-prose > * + * {
    margin-top: 1.1em;
}

.dynamic-page-prose h2,
.dynamic-page-prose h3,
.dynamic-page-prose h4 {
    color: #12344d;
    line-height: 1.2;
    margin-top: 1.6em;
}

.dynamic-page-prose p,
.dynamic-page-prose li {
    color: #486581;
}

.dynamic-page-prose ul,
.dynamic-page-prose ol {
    padding-left: 22px;
}

.dynamic-page-prose img {
    width: 100%;
    border-radius: 18px;
    margin: 10px 0;
}

.dynamic-page-sidebar {
    display: grid;
    gap: 20px;
}

.dynamic-page-sidecard {
    padding: 24px;
}

.dynamic-page-sidecard p {
    color: #5d6d7e;
    margin-top: 10px;
}

.dynamic-articles-section {
    padding: 36px 0 88px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.dynamic-articles-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 30px;
    text-align: left;
}

.dynamic-articles-header h2 {
    margin-top: 10px;
}

.dynamic-articles-count {
    flex-shrink: 0;
    padding: 12px 18px;
    border-radius: 999px;
    background: #12344d;
    color: var(--white);
    font-weight: 600;
}

.dynamic-articles-grid {
    gap: 28px;
}

.dynamic-article-card {
    border: 1px solid rgba(18, 52, 77, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(24, 52, 77, 0.08);
}

.dynamic-article-card .article-image {
    height: 240px;
}

.dynamic-article-card .article-image img {
    height: 100%;
    object-fit: cover;
}

.dynamic-article-card .article-content {
    padding: 28px;
}

.dynamic-article-card .article-content h3 {
    font-size: 24px;
    line-height: 1.25;
    margin: 14px 0 12px;
}

.dynamic-article-card .article-content p {
    color: #5d6d7e;
}

.dynamic-empty-state {
    padding: 40px 28px;
    text-align: center;
}

@media (max-width: 991px) {
    .dynamic-page-hero {
        padding: 110px 0 64px;
    }

    .dynamic-page-shell {
        grid-template-columns: 1fr;
    }

    .dynamic-articles-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .dynamic-page-hero h1 {
        max-width: none;
    }

    .dynamic-page-content-card,
    .dynamic-page-sidecard,
    .dynamic-empty-state {
        border-radius: 20px;
    }

    .dynamic-page-content-card,
    .dynamic-article-card .article-content {
        padding: 22px;
    }

    .dynamic-page-inline-meta span,
    .dynamic-articles-count {
        width: 100%;
        justify-content: center;
    }
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Responsive Header */
@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .contact-info {
        justify-content: center;
        gap: 10px;
    }
    
    .contact-info a {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .language-selector {
        padding: 8px 12px;
    }
    
    .social-links {
        display: flex;
        gap: 10px;
    }
    
    .social-links a {
        margin-left: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
        margin-top: 0;
    }
    
    .slide::before {
        background: rgba(0, 0, 0, 0.5);
    }
    
    .slider-content {
        padding: 20px;
    }
    
    .slider-content h1 {
        font-size: 28px;
    }
    
    .slider-content p {
        font-size: 14px;
    }
    
    .main-nav {
        padding: 10px 0;
    }
    
    .logo h1 {
        font-size: 22px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
}
