/* ===== GULF POLICY - MAIN STYLES ===== */

:root {
    --navy:   #1D3A6A;
    --teal:   #1E7A72;
    --gold:   #B8922E;
    --cream:  #F5EDE5;
    --white:  #FFFFFF;
    --text-dark:   #1a1a1a;
    --text-mid:    #555555;
    --text-light:  #888888;
    --border-color: #ddd4c9;
    --font-arabic: 'Noto Kufi Arabic', 'Cairo', 'Amiri', Tahoma, sans-serif;
    --font-latin:  'Playfair Display', Georgia, serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-arabic);
    background: var(--cream);
    color: var(--text-dark);
    direction: rtl;
    line-height: 1.7;
}

a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal); }

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

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

/* ===== HEADER ===== */
#site-header {
    background: #fff;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-branding {
    text-align: right;
}

.site-branding .the-text {
    font-family: var(--font-latin);
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 4px;
    display: block;
}

.site-branding .site-title {
    font-family: var(--font-latin);
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    line-height: 1.1;
}

.site-branding .site-title-ar {
    color: var(--teal);
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin-top: 2px;
}

.site-branding .site-logo img {
    max-height: 60px;
    margin: 0 auto;
}

/* Gold separator line */
.header-gold-line {
    height: 4px;
    background: var(--gold);
}

/* Navigation */
#site-nav {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 0;
}

.main-nav li a {
    display: block;
    padding: 10px 18px;
    color: rgba(245, 237, 229, 0.85);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}

.main-nav li a:hover,
.main-nav li.current-menu-item a {
    color: var(--white);
    border-bottom-color: var(--gold);
}

.nav-search input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    padding: 6px 12px;
    color: var(--white);
    font-family: var(--font-arabic);
    font-size: 13px;
    outline: none;
    width: 200px;
}

.nav-search input::placeholder { color: rgba(255,255,255,0.5); }
.nav-search input:focus { border-color: var(--gold); background: rgba(255,255,255,0.15); }

/* ===== FEATURED ARTICLE HERO ===== */
/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--navy);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 380px;
    max-height: 620px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-color: var(--navy);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,24,50,0.92) 0%, rgba(10,24,50,0.5) 60%, transparent 100%);
    padding: 70px 48px 52px;
}

.slide-content {
    max-width: 820px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.slide-content .featured-badge,
.slide-content .section-badge {
    align-self: flex-start;
}

.slide-title {
    font-size: clamp(19px, 2.8vw, 30px);
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    margin: 0;
    text-wrap: balance;
}

.slide-title a {
    color: #fff;
    text-decoration: none;
}

.slide-title a:hover { color: var(--gold); }

.slide-meta {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
}

/* Slider navigation buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 26px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.6);
}

.slider-prev { right: 20px; }
.slider-next { left: 20px; }

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

.slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.55);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.slider-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

/* Shared badge styles */
.featured-badge {
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: 500;
}

.section-badge {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: 500;
    color: var(--white);
}

.section-badge.تقرير { background: var(--teal); }
.section-badge.رأي { background: var(--navy); }
.section-badge.كشكول { background: var(--gold); }
.section-badge.ترجمات { background: #7b4f9e; }

/* ===== SECTION HEADER ===== */
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.section-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}

.section-header .gold-bar {
    flex: 1;
    height: 1px;
    background: var(--gold);
}

/* ===== ARTICLE CARDS ===== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.article-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.article-card:hover { border-color: var(--teal); }

.article-card .card-thumb {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.article-card .card-body {
    padding: 14px 16px;
}

.article-card .card-section {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
}

.card-section.تقرير { background: #e6f3f1; color: var(--teal); }
.card-section.رأي { background: #e8edf4; color: var(--navy); }
.card-section.كشكول { background: #f5ede0; color: var(--gold); }
.card-section.ترجمات { background: #f0e8f5; color: #7b4f9e; }

.article-card .card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.55;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .card-title:hover { color: var(--teal); }

.article-card .card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
    padding-top: 8px;
    margin-top: 8px;
}

/* ===== HOMEPAGE SECTIONS ===== */
.home-section {
    padding: 32px 0;
    border-bottom: 1px solid var(--border-color);
}

.home-section:last-of-type { border-bottom: none; }

/* ===== GULF MAP SECTION ===== */
.gulf-map-section {
    background: var(--white);
    padding: 32px 0;
    border-bottom: 1px solid var(--border-color);
}

.gulf-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: start;
}

.gulf-map-svg { width: 100%; }

.gulf-map-svg .country-shape {
    fill: var(--cream);
    stroke: var(--navy);
    stroke-width: 1.5;
    cursor: pointer;
    transition: fill 0.2s;
}

.gulf-map-svg .country-shape:hover,
.gulf-map-svg .country-shape.active {
    fill: var(--teal);
    stroke: var(--navy);
}

.gulf-map-svg text {
    font-family: var(--font-arabic);
    font-size: 11px;
    fill: var(--navy);
    pointer-events: none;
    font-weight: 500;
}

.map-articles-list { padding: 0; }

.map-articles-list h3 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
}

.map-article-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.map-article-item:last-child { border-bottom: none; }

.map-article-thumb-link { flex-shrink: 0; }
.map-article-thumb {
    width: 70px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}
.map-article-body { flex: 1; min-width: 0; }
.map-article-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.5;
    margin: 4px 0 3px;
}
.map-article-title a { color: inherit; text-decoration: none; }
.map-article-title a:hover { color: var(--teal); }
.map-article-meta { font-size: 11px; color: var(--muted); }

.map-article-item .thumb {
    width: 70px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.map-article-item .title {
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.5;
}

.map-article-item .title:hover { color: var(--teal); }

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: var(--navy);
    padding: 40px 0;
}

.newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-inner h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 8px;
}

.newsletter-inner p {
    color: rgba(245,237,229,0.75);
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    max-width: 340px;
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font-arabic);
    font-size: 14px;
    border-radius: 4px;
    outline: none;
    direction: rtl;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { border-color: var(--gold); }

.newsletter-form button {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    font-family: var(--font-arabic);
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form button:hover { background: #a07828; }

/* ===== SINGLE ARTICLE ===== */
.single-article { background: var(--white); }

.article-header {
    padding: 32px 0 24px;
    border-bottom: 1px solid var(--border-color);
}

.article-header .article-section {
    margin-bottom: 12px;
}

.article-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.55;
    margin-bottom: 14px;
}

.article-header .article-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 13px;
    color: var(--text-mid);
    flex-wrap: wrap;
}

.article-header .article-meta .country-tag {
    background: #e8edf4;
    color: var(--navy);
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 12px;
}

.article-featured-image {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    margin: 24px 0;
    border-radius: 6px;
}

.article-content {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
    max-width: 780px;
}

.article-content p { margin-bottom: 1.4em; }

.article-content h2 {
    font-size: 20px;
    color: var(--navy);
    margin: 1.8em 0 0.8em;
    border-right: 4px solid var(--gold);
    padding-right: 12px;
}

.article-content blockquote {
    border-right: 4px solid var(--teal);
    padding: 12px 20px;
    margin: 1.5em 0;
    background: #f5f8f7;
    color: var(--text-mid);
    font-style: italic;
}

/* Country Bar */
.article-country-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    padding-top: 18px;
    border-top: 2px solid var(--gold);
    direction: rtl;
}
.country-bar-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--teal);
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.country-bar-pill {
    background: var(--navy);
    color: #fff;
    padding: 5px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.18s, transform 0.15s;
    letter-spacing: 0.02em;
}
.country-bar-pill:hover {
    background: var(--teal);
    transform: translateY(-1px);
}

/* Author Bio Box */
.author-bio {
    margin-top: 40px;
    padding: 24px;
    background: #faf7f4;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    border-right: 4px solid var(--navy);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author-bio .author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 2px var(--navy);
}

.author-bio .author-info h4 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 2px;
}

.author-bio .author-info .author-title {
    font-size: 12px;
    color: var(--teal);
    margin-bottom: 8px;
}

.author-bio .author-info p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ===== DISQUS ===== */
.disqus-section {
    background: var(--white);
    padding: 48px 0;
    border-top: 1px solid var(--border-color);
}
#disqus_thread { margin-top: 8px; }

/* ===== FOOTER ===== */
#site-footer {
    background: var(--navy);
    padding: 40px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 32px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
    max-height: 55px;
    margin-bottom: 14px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 14px;
    background: #fff;
    border-radius: 8px;
    padding: 8px 14px;
}
.footer-logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.footer-brand p {
    color: rgba(245,237,229,0.7);
    font-size: 13px;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: rgba(245,237,229,0.7);
    font-size: 13px;
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contact p {
    color: rgba(245,237,229,0.7);
    font-size: 13px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-newsletter { margin-top: 16px; }

.footer-newsletter input {
    width: 100%;
    padding: 8px 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-family: var(--font-arabic);
    font-size: 13px;
    border-radius: 4px;
    margin-bottom: 6px;
    direction: rtl;
}

.footer-newsletter button {
    width: 100%;
    background: var(--teal);
    color: var(--white);
    border: none;
    padding: 8px;
    font-family: var(--font-arabic);
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.footer-newsletter button:hover { background: #165e58; }

.footer-bottom {
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(245,237,229,0.5);
    font-size: 12px;
}

.footer-bottom .gold-line {
    color: var(--gold);
}

.footer-credit {
    color: rgba(245,237,229,0.5);
}
.footer-credit a {
    color: var(--gold) !important;
    text-decoration: none;
    transition: opacity 0.15s;
}
.footer-credit a:hover {
    opacity: 0.75;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-light);
}

.breadcrumb a { color: var(--teal); }
.breadcrumb span { margin: 0 6px; }

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 30px 0;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    color: var(--navy);
    background: var(--white);
    transition: all 0.2s;
}

.pagination a:hover,
.pagination .current {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ===== ARCHIVE PAGE ===== */
.archive-header {
    background: var(--navy);
    padding: 28px 0;
    margin-bottom: 30px;
}

.archive-header h1 {
    color: var(--white);
    font-size: 22px;
}

.archive-header .gold-underline {
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin-top: 8px;
}

/* ===== COUNTRY FILTER ===== */
.country-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.country-filter a {
    padding: 6px 16px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    color: var(--navy);
    background: var(--white);
    transition: all 0.2s;
}

.country-filter a:hover,
.country-filter a.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ===== LOGO ===== */
.site-logo-link { display: block; line-height: 1; }
.site-logo-svg  { height: 60px; width: auto; display: block; }
.site-logo-img  { height: 65px; width: auto; display: block; }

/* ===== SOCIAL ICONS ===== */
.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255,255,255,0.12);
    color: rgba(245,237,229,0.8);
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--white);
}

/* Header social icons */
.header-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 120px;
    flex-shrink: 0;
}

.header-social .social-icons { gap: 8px; }

.header-social .social-icon {
    width: 28px;
    height: 28px;
    color: var(--navy);
}
.header-social .social-icon:hover { color: var(--teal); }

/* Footer social icons */
.footer-brand .social-icons {
    margin-top: 16px;
    flex-wrap: wrap;
}

/* ===== FOOTER 4-COLUMN LAYOUT ===== */
.footer-logo-text {
    margin-bottom: 14px;
}
.footer-logo-text .f-the {
    font-family: var(--font-latin);
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 3px;
    display: block;
}
.footer-logo-text .f-title {
    font-family: var(--font-latin);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    display: block;
    line-height: 1.15;
}
.footer-logo-text .f-title-ar {
    color: var(--teal);
    font-size: 13px;
    display: block;
    margin-top: 2px;
}

.footer-editor {
    color: rgba(245,237,229,0.5);
    font-size: 12px;
    margin-top: 10px;
}
.footer-editor span { color: var(--gold); }

.footer-contact .footer-contact-item {
    color: rgba(245,237,229,0.7);
    font-size: 13px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.footer-contact .footer-contact-item a {
    color: rgba(245,237,229,0.7);
}
.footer-contact .footer-contact-item a:hover { color: var(--white); }

.footer-newsletter h5 {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    background: var(--navy);
    padding: 48px 0 36px;
    text-align: center;
}
.contact-hero h1 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 8px;
}
.contact-hero p { color: rgba(245,237,229,0.7); font-size: 15px; }

.contact-body { padding: 48px 20px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info-col h2,
.contact-msg-col h2 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--navy);
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.contact-icon {
    width: 44px;
    height: 44px;
    background: #e8f0f8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
}
.contact-label {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 3px;
}
.contact-item a {
    font-size: 15px;
    color: var(--navy);
    font-weight: 500;
}
.contact-item a:hover { color: var(--teal); }

.contact-info-col .social-icons {
    margin-top: 24px;
    gap: 10px;
}
.contact-info-col .social-icon {
    background: #e8edf4;
    color: var(--navy);
    width: 38px;
    height: 38px;
    border-radius: 8px;
}
.contact-info-col .social-icon:hover {
    background: var(--navy);
    color: var(--white);
}

.contact-emails-highlight {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}
.email-btn, .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}
.email-btn {
    background: #e8edf4;
    color: var(--navy);
    border: 1px solid var(--border-color);
}
.email-btn:hover { background: var(--navy); color: var(--white); }
.whatsapp-btn {
    background: #e8f5ed;
    color: #1a7a3a;
    border: 1px solid #c3e6d0;
}
.whatsapp-btn:hover { background: #1a7a3a; color: var(--white); }

/* ===== MOBILE MENU TOGGLE ===== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--navy);
    font-size: 22px;
    cursor: pointer;
    padding: 4px 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .slider-wrapper { height: 55vh; min-height: 320px; }
    .slide-overlay { padding: 50px 24px 50px; }
    .slider-prev { right: 10px; }
    .slider-next { left: 10px; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .gulf-map-wrapper { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
    .slider-wrapper { height: 50vh; min-height: 280px; }
    .slide-overlay { padding: 40px 16px 46px; }
    .slider-btn { width: 34px; height: 34px; font-size: 20px; }
    .slider-prev { right: 6px; }
    .slider-next { left: 6px; }
    .header-top { padding: 8px 16px; }
    .site-branding .site-title { font-size: 20px; }
    .articles-grid { grid-template-columns: 1fr; }
    .menu-toggle { display: block; }
    .main-nav { display: none; flex-direction: column; width: 100%; }
    .main-nav.open { display: flex; }
    .nav-search { display: none; }
    .footer-top { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; align-items: center; }
    .newsletter-form input { max-width: 100%; }
    .author-bio { flex-direction: column; }
    .header-social { display: none; }
    .site-logo-img { height: 48px; }
    .site-logo-svg { height: 48px; }
}
