/*
Theme Name: Sky Movers
Theme URI: https://skymovers.com
Author: Sky Movers Bahrain
Author URI: https://skymovers.com
Description: Premium Moving and Packing WordPress Theme for Sky Movers Bahrain.
Version: 2.0.0
Text Domain: skymovers
*/

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

:root {
  --primary:   #0F172A;
  --brand:     #2563EB;
  --brand-light: #60A5FA;
  --surface:   #FFFFFF;
  --surface-2: #F8FAFC;
  --border:    #E2E8F0;
  --text:      #0F172A;
  --text-light:#64748B;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,.1), 0 10px 10px rgba(0,0,0,.04);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

[dir="rtl"] body { font-family: 'Cairo', sans-serif; }

h1,h2,h3,h4,h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  color: var(--text);
}
[dir="rtl"] h1,[dir="rtl"] h2,[dir="rtl"] h3,[dir="rtl"] h4,[dir="rtl"] h5 {
  font-family: 'Cairo', sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

section { padding: 80px 0; }

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all .2s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,.3);
}
.btn-primary:hover { background: #1D4ED8; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.4); }
.btn-outline { border-color: var(--border); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

/* ================================================================
   UTILITY BAR
================================================================ */
.utility-bar {
  background: var(--primary); color: rgba(255,255,255,.7);
  font-size: 13px; padding: 8px 0;
}
.utility-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.utility-contact { display: flex; align-items: center; gap: 20px; }
.utility-contact a { color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 6px; transition: color .2s; }
.utility-contact a:hover { color: #fff; }

/* ================================================================
   HEADER & NAV
================================================================ */
header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}

.header-inner {
  display: flex; align-items: center; gap: 24px;
  height: 72px;
}

.logo { display: flex; align-items: center; }
.logo img { height: 48px; width: auto; object-fit: contain; }

/* Nav */
.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-links > a {
  padding: 8px 14px; border-radius: var(--radius);
  font-size: 15px; font-weight: 500; color: var(--text-light);
  transition: all .2s; position: relative;
}
.nav-links > a:hover, .nav-links > a.active-link { color: var(--brand); }
.nav-links > a.active-link::after {
  content: ''; position: absolute; bottom: -22px; left: 0; right: 0;
  height: 2px; background: var(--brand); border-radius: 2px;
}

/* Dropdown */
.nav-item { position: relative; }
.nav-trigger {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: var(--radius);
  font-size: 15px; font-weight: 500; color: var(--text-light);
  transition: all .2s; cursor: pointer; background: none; border: none;
  font-family: inherit;
}
.nav-trigger:hover, .nav-trigger.active-link { color: var(--brand); }
.nav-trigger.active-link::after {
  content: ''; position: absolute; bottom: -22px; left: 0; right: 0;
  height: 2px; background: var(--brand); border-radius: 2px;
}
.chev { width: 16px; height: 16px; transition: transform .2s; }
.nav-item:hover .chev { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 220px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .2s;
  z-index: 100;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500; color: var(--text-light);
  transition: all .15s;
}
.nav-dropdown a:hover { background: #F1F5F9; color: var(--brand); }
.dd-label { display: block; padding: 4px 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 4px; }
.dd-divider { height: 1px; background: var(--border); margin: 6px 0; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 12px; }

.lang-pill {
  display: flex; align-items: center;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 100px; padding: 3px; gap: 2px;
}
.lang-pill button {
  padding: 4px 12px; border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--text-light);
  transition: all .2s;
}
.lang-pill button.active { background: var(--brand); color: #fff; }

.hamburger-btn {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius);
  border: 1px solid var(--border); color: var(--text);
  transition: all .2s;
}
.hamburger-btn:hover { background: var(--surface-2); }

/* ================================================================
   MOBILE MENU
================================================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 2000;
  background: #fff; padding: 24px;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
[dir="rtl"] .mobile-menu { transform: translateX(-100%); }
[dir="rtl"] .mobile-menu.open { transform: translateX(0); }

.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-menu-close { width: 36px; height: 36px; border-radius: var(--radius); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }

.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links > a { padding: 14px 16px; font-size: 16px; font-weight: 600; color: var(--text); border-radius: var(--radius); display: block; border-bottom: 1px solid var(--border); }
.mobile-nav-links > a:last-child { border-bottom: none; }

.mm-group { border-bottom: 1px solid var(--border); }
.mm-group-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; font-size: 16px; font-weight: 600; color: var(--text); border-radius: var(--radius); background: none; border: none; font-family: inherit; cursor: pointer; }
.mm-group .chev { transition: transform .25s; }
.mm-group.open .chev { transform: rotate(180deg); }
.mm-submenu { display: none; padding: 0 0 8px 16px; }
.mm-group.open .mm-submenu { display: block; }
.mm-submenu a { display: block; padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--text-light); border-radius: var(--radius); }
.mm-submenu a:hover { color: var(--brand); background: #F1F5F9; }

.mm-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.mm-ctas .btn { width: 100%; justify-content: center; }

/* ================================================================
   MODAL
================================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15,23,42,.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: all .25s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-container {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); max-width: 820px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
  transform: scale(.95); transition: transform .25s;
  position: relative;
}
.modal-overlay.active .modal-container { transform: scale(1); }
.modal-left { position: relative; min-height: 480px; }
.modal-left img { width: 100%; height: 100%; object-fit: cover; }
.modal-right { padding: 40px; }
.modal-right h3 { font-size: 24px; margin-bottom: 6px; }
.modal-right p { color: var(--text-light); font-size: 14px; margin-bottom: 24px; }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 36px; height: 36px; background: rgba(255,255,255,.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}

/* Form */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-control {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 14px; font-family: inherit; color: var(--text);
  transition: border-color .2s; background: #fff;
}
.form-control:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ================================================================
   EYEBROW / SECTION HEADERS
================================================================ */
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--brand); margin-bottom: 12px;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.section-header p { font-size: 17px; color: var(--text-light); max-width: 600px; }
.section-header.center p { margin: 0 auto; }

/* ================================================================
   HERO (Homepage)
================================================================ */
.hero {
  position: relative; min-height: 600px; display: flex; align-items: center;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { min-height: 740px; } }

.slider-bg { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,.85) 0%, rgba(15,23,42,.5) 100%); }

.hero-content {
  position: relative; z-index: 2;
  max-width: 700px; padding-top: 40px; padding-bottom: 40px;
}
.hero-content h1 { font-size: clamp(36px, 5vw, 62px); font-weight: 800; color: #fff; margin-bottom: 20px; line-height: 1.1; }
.hero-content p { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 36px; max-width: 560px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.4); transition: all .3s;
}
.hero-dot.active { background: #fff; width: 28px; border-radius: 5px; }

/* ================================================================
   TRUST STRIP
================================================================ */
.trust-strip { background: #fff; padding: 0; border-bottom: 1px solid var(--border); }
.trust-card {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 32px 0;
}
.trust-item { display: flex; align-items: center; gap: 14px; padding: 16px 24px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 44px; height: 44px; background: linear-gradient(135deg,#EFF6FF,#DBEAFE); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--brand); flex-shrink: 0; }
.trust-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.trust-item p { font-size: 12px; color: var(--text-light); }

/* ================================================================
   STATS
================================================================ */
.stats-section { background: var(--primary); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 40px; text-align: center; }
.stat-item h3 { font-size: 48px; font-weight: 800; color: var(--brand-light); margin-bottom: 8px; }
.stat-item p { color: rgba(255,255,255,.7); font-size: 15px; }

/* ================================================================
   SERVICE CARDS (carousel)
================================================================ */
.service-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: #fff; transition: all .2s; height: 100%; }
.service-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.service-img { aspect-ratio: 16/10; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-content { padding: 24px; }
.service-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-content p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--brand); }
.service-link:hover { gap: 10px; }

/* ================================================================
   CAROUSEL
================================================================ */
.carousel-wrap { overflow: hidden; }
.carousel-track {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 16px); gap: 24px;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.carousel-track.cols-4 { grid-auto-columns: calc(25% - 18px); }
.carousel-track.cols-5 { grid-auto-columns: calc(20% - 20px); }
.c-slide { height: 100%; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.c-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; color: var(--text);
}
.c-arrow:hover { border-color: var(--brand); color: var(--brand); }
.c-arrow:disabled { opacity: .35; cursor: not-allowed; }
.c-dots { display: flex; gap: 6px; }
.c-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); transition: all .2s;
}
.c-dot.active { background: var(--brand); width: 22px; border-radius: 4px; }

/* ================================================================
   HOW IT WORKS
================================================================ */
.how-it-works { background: var(--surface-2); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.step-card { text-align: center; padding: 32px 24px; }
.step-num { font-size: 56px; font-weight: 800; color: var(--brand); opacity: .15; line-height: 1; margin-bottom: 16px; }
.step-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-light); }

/* ================================================================
   WHY US
================================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); width: 100%; }
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon { width: 44px; height: 44px; background: linear-gradient(135deg,#EFF6FF,#DBEAFE); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--brand); flex-shrink: 0; }
.feature h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.feature p { font-size: 13px; color: var(--text-light); }

/* ================================================================
   GALLERY
================================================================ */
.gallery-section { background: var(--surface-2); }
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,.7), transparent);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: #fff; font-size: 14px; font-weight: 700; }

/* ================================================================
   GCC SECTION
================================================================ */
.gcc-section { position: relative; padding: 80px 0; overflow: hidden; }
.gcc-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 100%); }
.gcc-section .container { position: relative; z-index: 2; }
.gcc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-top: 48px; }
.gcc-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 28px 20px; text-align: center;
  cursor: pointer; transition: all .25s;
}
.gcc-card:hover { background: rgba(255,255,255,.15); transform: translateY(-4px); border-color: rgba(255,255,255,.25); }
.gcc-flag { font-size: 36px; margin-bottom: 12px; }
.gcc-card h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.gcc-card p { color: rgba(255,255,255,.55); font-size: 12px; }

/* ================================================================
   AREAS WE SERVE
================================================================ */
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-chip {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 100px;
  border: 1.5px solid var(--border); font-size: 14px; font-weight: 500;
  color: var(--text-light); transition: all .2s;
}
.area-chip:hover { border-color: var(--brand); color: var(--brand); background: #EFF6FF; }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials { background: var(--surface-2); }
.testi-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; height: 100%;
}
.stars { color: #F59E0B; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-quote { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--brand),#7C3AED); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.testi-author h4 { font-size: 14px; font-weight: 700; }

/* ================================================================
   FAQ
================================================================ */
.faq-container { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 12px; overflow: hidden; cursor: pointer; transition: box-shadow .2s; }
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; font-weight: 600; font-size: 15px; gap: 16px; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; transition: all .25s; }
.faq-item.active .faq-icon { background: var(--brand); color: #fff; border-color: var(--brand); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; padding: 0 24px; color: var(--text-light); font-size: 15px; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 20px; }

/* ================================================================
   CONTACT STRIP (homepage)
================================================================ */
.contact-section { background: var(--surface-2); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.contact-details h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.contact-details p { color: var(--text-light); margin-bottom: 28px; }
.contact-item { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(135deg,#EFF6FF,#DBEAFE); display: flex; align-items: center; justify-content: center; color: var(--brand); flex-shrink: 0; }
.contact-item h4 { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.contact-item span, .contact-item a { font-size: 14px; color: var(--text-light); }
.map-container { border: 1px solid var(--border); border-radius: var(--radius-lg); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; background: var(--surface-2); }

/* ================================================================
   PAGE HEADER (inner pages)
================================================================ */
.page-header { position: relative; min-height: 340px; display: flex; align-items: flex-end; overflow: hidden; }
.page-header-bg { position: absolute; inset: 0; }
.page-header-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-header-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,.85), rgba(15,23,42,.55)); }
.page-header-content { position: relative; z-index: 2; padding-bottom: 56px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.page-header-content h1 { font-size: clamp(32px,4vw,52px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-header-content p { font-size: 17px; color: rgba(255,255,255,.8); max-width: 600px; margin-bottom: 28px; }

/* ================================================================
   SERVICES PAGE — rows
================================================================ */
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 56px 0; border-bottom: 1px solid var(--border);
}
.service-row:nth-child(even) .service-image-col { order: 2; }
.service-row:nth-child(even) .service-content-col { order: 1; }
.service-image-col img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-lg); }
.service-content-col h2 { font-size: 32px; font-weight: 800; margin-bottom: 14px; }
.service-content-col p { color: var(--text-light); margin-bottom: 24px; line-height: 1.8; }
.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.service-feature { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
.service-feature svg { color: var(--brand); flex-shrink: 0; }

/* ================================================================
   GCC HUB PAGE
================================================================ */
.gcc-hub-section { background: var(--surface-2); }
.gcc-hub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.gcc-hub-grid img { border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow-lg); }
.gcc-feature-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.gcc-feature { display: flex; gap: 14px; }
.gcc-feature-icon { width: 44px; height: 44px; background: linear-gradient(135deg,#EFF6FF,#DBEAFE); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--brand); flex-shrink: 0; }
.gcc-feature h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.gcc-feature p { font-size: 13px; color: var(--text-light); }

/* Process timeline */
.process-timeline { display: flex; flex-direction: column; gap: 0; }
.process-step { display: flex; gap: 20px; }
.step-connector { display: flex; flex-direction: column; align-items: center; }
.step-bubble { width: 40px; height: 40px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.step-line { flex: 1; width: 2px; background: var(--border); margin: 4px 0; min-height: 32px; }
.process-step:last-child .step-line { display: none; }
.step-body { padding: 8px 0 28px; }
.step-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.step-body p { font-size: 14px; color: var(--text-light); }

/* Destination cards */
.dest-section { background: #fff; }
.dest-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 20px; text-align: center;
  cursor: pointer; transition: all .25s; height: 100%;
}
.dest-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); border-color: var(--brand); }
.dest-flag { font-size: 40px; margin-bottom: 12px; }
.dest-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.dest-card p { font-size: 13px; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.dest-card a { font-size: 13px; font-weight: 600; color: var(--brand); }

/* ================================================================
   DESTINATION PAGES (Saudi, UAE, etc.)
================================================================ */
.two-col-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col-img img { border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow-lg); }
.two-col-layout h2 { font-size: 32px; font-weight: 800; margin-bottom: 14px; }
.two-col-layout p { color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }

.bullet-list { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.bullet-item { display: flex; gap: 14px; }
.bullet-icon { width: 28px; height: 28px; background: linear-gradient(135deg,#EFF6FF,#DBEAFE); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.bullet-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.bullet-item p { font-size: 13px; color: var(--text-light); }

.cities-section { background: var(--surface-2); }
.cities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.city-card { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 16px; text-align: center; font-weight: 600; font-size: 14px; transition: all .2s; }
.city-card:hover { border-color: var(--brand); color: var(--brand); background: #EFF6FF; }

.featured-testi { background: linear-gradient(135deg,#0F172A,#1E3A5F); padding: 64px 0; text-align: center; }
.featured-testi-content .testi-quote { font-size: 22px; color: rgba(255,255,255,.9); font-style: italic; max-width: 700px; margin: 0 auto 24px; line-height: 1.6; }
.featured-testi-content .testi-author { display: flex; flex-direction: column; align-items: center; gap: 4px; }

/* ================================================================
   ABOUT PAGE
================================================================ */
.pro-hero { position: relative; min-height: 500px; display: flex; align-items: center; overflow: hidden; }
.pro-hero-bg { position: absolute; inset: 0; }
.pro-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.pro-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,.9), rgba(15,23,42,.6)); }
.pro-hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 80px 0; }
.pro-hero-text h1 { font-size: clamp(28px,3.5vw,48px); font-weight: 800; color: #fff; margin-bottom: 16px; }
.pro-hero-text p { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 28px; line-height: 1.7; }
.pro-stats-panel { background: rgba(255,255,255,.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg); padding: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pro-stat { text-align: center; }
.pro-stat h3 { font-size: 36px; font-weight: 800; color: var(--brand-light); }
.pro-stat p { font-size: 13px; color: rgba(255,255,255,.7); }

.features-strip { background: #fff; padding: 40px 0; border-bottom: 1px solid var(--border); }
.features-strip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.strip-feature { display: flex; align-items: center; gap: 14px; }
.strip-feature-icon { width: 44px; height: 44px; background: linear-gradient(135deg,#EFF6FF,#DBEAFE); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--brand); flex-shrink: 0; }
.strip-feature h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.strip-feature span { font-size: 13px; color: var(--text-light); }

.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mission-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.mission-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.mission-card p { color: var(--text-light); line-height: 1.8; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.value-card { text-align: center; padding: 36px 24px; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: all .2s; }
.value-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.value-icon { width: 60px; height: 60px; background: linear-gradient(135deg,#EFF6FF,#DBEAFE); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--brand); margin: 0 auto 16px; }
.value-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-page-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; padding: 80px 0; }
.contact-info-col h2 { font-size: 32px; font-weight: 800; margin-bottom: 28px; }
.contact-info-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px; border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 16px; transition: box-shadow .2s; }
.contact-info-card:hover { box-shadow: var(--shadow-md); }
.contact-info-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 14px; color: var(--text-light); }
.contact-form-wrapper h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.map-section { background: var(--surface-2); }
.map-embed { border: 1px solid var(--border); border-radius: var(--radius-lg); aspect-ratio: 16/5; display: flex; align-items: center; justify-content: center; background: #fff; min-height: 260px; }

/* ================================================================
   BOTTOM CTA
================================================================ */
.bottom-cta { background: linear-gradient(135deg, #1E40AF, #1D4ED8); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.bottom-cta::before { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: rgba(255,255,255,.05); border-radius: 50%; }
.bottom-cta h2 { font-size: 40px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.bottom-cta p { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 32px; }
.bottom-cta .btn-primary { background: #fff; color: var(--brand); }
.bottom-cta .btn-primary:hover { background: #F1F5F9; box-shadow: 0 6px 20px rgba(0,0,0,.15); }

/* ================================================================
   MISSION SECTION / mission_vision
================================================================ */
.mission-vision { background: var(--surface-2); }

/* ================================================================
   FOOTER
================================================================ */
footer { background: var(--primary); color: rgba(255,255,255,.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 64px 0 40px; }
.footer-logo img { height: 48px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-about { font-size: 14px; line-height: 1.8; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-bottom a:hover { color: #fff; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img { display: none; }
  .gcc-hub-grid { grid-template-columns: 1fr; }
  .pro-hero-content { grid-template-columns: 1fr; }
  .pro-stats-panel { display: none; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .nav-links, .header-actions .btn { display: none; }
  .hamburger-btn { display: flex; }
  .carousel-track { grid-auto-columns: calc(100% - 0px); }
  .carousel-track.cols-4 { grid-auto-columns: calc(50% - 12px); }
  .carousel-track.cols-5 { grid-auto-columns: calc(50% - 12px); }
  .service-row { grid-template-columns: 1fr; gap: 32px; }
  .service-row:nth-child(even) .service-image-col,
  .service-row:nth-child(even) .service-content-col { order: unset; }
  .two-col-layout { grid-template-columns: 1fr; gap: 32px; }
  .two-col-img { display: none; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .map-container { display: none; }
  .contact-page-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .modal-container { grid-template-columns: 1fr; }
  .modal-left { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-card { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .gcc-grid { grid-template-columns: repeat(2, 1fr); }
  .header-actions .lang-pill { display: none; }
}

@media (max-width: 480px) {
  .trust-card { grid-template-columns: 1fr; }
  .gcc-grid { grid-template-columns: 1fr; }
  .service-features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   RTL SUPPORT
================================================================ */
[dir="rtl"] .trust-item { border-right: none; border-left: 1px solid var(--border); }
[dir="rtl"] .trust-item:last-child { border-left: none; }
[dir="rtl"] .nav-dropdown { left: auto; right: 0; }
[dir="rtl"] .footer-grid { text-align: right; }
[dir="rtl"] .footer-links { align-items: flex-start; }
[dir="rtl"] .service-row:nth-child(even) .service-image-col { order: 1; }
[dir="rtl"] .service-row:nth-child(even) .service-content-col { order: 2; }
