/* 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: 10px 0;
}

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

.contact-info span {
    margin-right: 20px;
    font-size: 14px;
}

.contact-info i {
    margin-right: 5px;
}

.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: 8px;
    margin: 0 20px;
}

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

#google_translate_element {
    display: inline-block;
}

.goog-te-gadget {
    font-family: 'Poppins', sans-serif !important;
    font-size: 13px !important;
    color: var(--white) !important;
}

.goog-te-gadget-simple {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 4px !important;
    padding: 4px 8px !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
}

.goog-te-gadget-simple:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: var(--primary-color) !important;
}

.goog-te-menu-value {
    color: var(--white) !important;
}

.goog-te-menu-value span {
    color: var(--white) !important;
}

.goog-te-menu-value:hover {
    color: var(--primary-color) !important;
}

.goog-te-menu {
    font-family: 'Poppins', sans-serif !important;
    max-height: 400px !important;
    overflow-y: auto !important;
}

.goog-te-menu-item {
    padding: 8px 12px !important;
}

.goog-te-menu-item:hover {
    background-color: var(--light-color) !important;
}

.goog-te-menu-item-selected {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
}

/* Hide Google Translate attribution */
.goog-te-gadget-icon {
    display: none !important;
}

.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.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;
}

.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: 100vh;
    margin-top: 120px;
    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 0.5s 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);
}

/* 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: 40px;
}

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

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

.article-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.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;
}

.article-content h3 a {
    transition: var(--transition);
}

.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;
}

/* 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;
}

/* 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;
}

.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: 1fr 350px;
    gap: 40px;
    align-items: start;
}

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

.article-body {
    padding: 40px;
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-color);
}

.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;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body img {
    border-radius: 8px;
    margin: 20px 0;
}

/* 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;
}

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

.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;
}

.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;
}

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

.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);
}

.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;
    }
}

@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;
    }
    
    .sidebar-overlay {
        display: none;
    }
    
    .sidebar-overlay.active {
        display: block;
    }
}
