/* ============================================================
   CITY4TRANSLATION — style.css
   Shared stylesheet for all pages
   ============================================================ */

/* ===== RESET & ROOT ===== */
*{margin:0;padding:0;box-sizing:border-box}
:root{
  --gold:#C9A84C;
  --gold-light:#F0D080;
  --gold-dark:#9A7530;
  --navy:#6B0F0F;
  --navy-light:#8B1A1A;
  --navy-mid:#7A1212;
  --white:#FFFFFF;
  --off-white:#FDF6F6;
  --text-dark:#2A1010;
  --text-mid:#5A4040;
  --text-light:#9A8080;
  --border:#EDD9D9;
}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;text-size-adjust:100%}
body{font-family:'Cairo',sans-serif;background:#fff;color:var(--text-dark);overflow-x:hidden;-webkit-tap-highlight-color:transparent}

/* ===== LANG SWITCHER ===== */
.lang-bar{background:var(--navy);padding:8px 20px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px}
.lang-bar a{color:#fff;text-decoration:none;font-size:13px;opacity:.8;transition:.2s}
.lang-bar a:hover{opacity:1}
.lang-switcher{display:flex;gap:8px}
.lang-btn{padding:4px 14px;border:1px solid rgba(255,255,255,.3);border-radius:20px;color:#fff;font-size:12px;cursor:pointer;background:transparent;font-family:'Cairo',sans-serif;transition:.2s}
.lang-btn.active{background:var(--gold);border-color:var(--gold);color:var(--navy)}
.lang-btn:hover{background:rgba(255,255,255,.1)}

/* ===== TOPBAR ===== */
.topbar{background:var(--navy-mid);padding:6px 20px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:6px}
.topbar-info{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.topbar-info span{color:rgba(255,255,255,.8);font-size:12px;display:flex;align-items:center;gap:5px}
.topbar-info span svg{width:13px;height:13px;fill:var(--gold)}

/* ===== NAVBAR ===== */
nav{background:var(--white);padding:0 20px;position:sticky;top:0;z-index:1000;box-shadow:0 2px 20px rgba(0,0,0,.08);border-bottom:2px solid var(--gold)}
.nav-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;height:78px}
/* ===== LOGO ===== */
.logo-wrap{display:flex;align-items:center;gap:14px;text-decoration:none}
/* Logo image — no frame, natural aspect ratio, image only */
.logo-img-sq{
  height:64px;
  width:auto;
  object-fit:contain;
  border-radius:0;
  border:none;
  background:transparent;
  flex-shrink:0;
}
/* Fallback circle (shown if image missing) */
.logo-circle{width:58px;height:58px;background:var(--navy);border-radius:50%;display:flex;align-items:center;justify-content:center;border:2px solid var(--gold);flex-shrink:0}
.logo-circle span{color:var(--gold);font-size:11px;font-weight:900;letter-spacing:.5px;text-align:center;line-height:1.2}
/* Text — left side (RTL) */
.logo-text{display:flex;flex-direction:column;text-align:right}
.logo-name{font-size:18px;font-weight:800;color:var(--navy);line-height:1.2;display:block}
.logo-sub{font-size:11px;color:var(--gold-dark);letter-spacing:1.5px;font-weight:700;margin-top:2px;display:block}
/* LTR mode: flip order */
body.en .logo-wrap{flex-direction:row-reverse}
body.en .logo-text{text-align:left}
.nav-links{display:flex;align-items:center;gap:4px;list-style:none}
.nav-links a{padding:8px 12px;text-decoration:none;color:var(--text-dark);font-size:14px;font-weight:600;border-radius:6px;transition:.2s;white-space:nowrap}
.nav-links a:hover{color:var(--gold-dark);background:var(--off-white)}
.nav-links a.active-page{color:var(--gold-dark);border-bottom:2px solid var(--gold)}
.nav-links .btn-cta{background:var(--gold);color:var(--navy);padding:8px 18px;border-radius:25px;font-weight:700}
.nav-links .btn-cta:hover{background:var(--gold-dark);color:#fff}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px}
.hamburger span{width:25px;height:2px;background:var(--navy);border-radius:2px;transition:.3s}
.mobile-menu{display:none;background:#fff;border-top:1px solid var(--border);padding:10px 0}
.mobile-menu.open{display:block}
.mobile-menu a{display:block;padding:14px 20px;text-decoration:none;color:var(--text-dark);font-size:15px;font-weight:600;border-bottom:1px solid var(--off-white);min-height:48px;display:flex;align-items:center}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero{background:linear-gradient(135deg,var(--navy) 0%,var(--navy-light) 100%);padding:70px 20px;text-align:center;position:relative;overflow:hidden}
.page-hero::before{content:'';position:absolute;inset:0;opacity:.05;background-image:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}
.page-hero h1{font-size:clamp(26px,5vw,46px);font-weight:900;color:#fff;position:relative;z-index:1}
.page-hero h1 .gold{color:var(--gold)}
.page-hero p{font-size:16px;color:rgba(255,255,255,.8);margin-top:12px;max-width:600px;margin-left:auto;margin-right:auto;position:relative;z-index:1;line-height:1.7}
.breadcrumb{display:flex;align-items:center;justify-content:center;gap:8px;margin-top:16px;position:relative;z-index:1}
.breadcrumb a{color:rgba(255,255,255,.7);text-decoration:none;font-size:13px;transition:.2s}
.breadcrumb a:hover{color:var(--gold)}
.breadcrumb span{color:var(--gold);font-size:13px}

/* ===== MAIN HERO (index only) ===== */
.hero{position:relative;min-height:90vh;background:linear-gradient(135deg,var(--navy) 0%,var(--navy-light) 60%,#A02020 100%);display:flex;align-items:center;overflow:hidden}
.hero-bg-pattern{position:absolute;inset:0;opacity:.05;background-image:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}
.hero-content{position:relative;z-index:2;max-width:1200px;margin:0 auto;padding:60px 20px;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.hero-text h1{font-size:clamp(28px,5vw,54px);font-weight:900;color:#fff;line-height:1.2;margin-bottom:20px}
.hero-text h1 .gold{color:var(--gold)}
.hero-text p{font-size:16px;color:rgba(255,255,255,.8);line-height:1.8;margin-bottom:30px}
.hero-btns{display:flex;gap:12px;flex-wrap:wrap}
.btn-primary{padding:14px 28px;background:var(--gold);color:var(--navy);border-radius:30px;font-weight:700;font-size:15px;text-decoration:none;border:none;cursor:pointer;font-family:'Cairo',sans-serif;transition:.3s;display:inline-block}
.btn-primary:hover{background:var(--gold-dark);color:#fff;transform:translateY(-2px)}
.btn-outline{padding:14px 28px;background:transparent;color:#fff;border:2px solid rgba(255,255,255,.5);border-radius:30px;font-weight:600;font-size:15px;text-decoration:none;transition:.3s;display:inline-block}
.btn-outline:hover{border-color:var(--gold);color:var(--gold)}
.hero-visual{display:flex;justify-content:center;align-items:center}
.hero-card{background:rgba(255,255,255,.06);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.15);border-radius:20px;padding:30px;width:100%}
.hero-card-title{color:var(--gold);font-size:14px;font-weight:700;letter-spacing:2px;text-transform:uppercase;margin-bottom:20px;text-align:center}
.services-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.service-pill{background:rgba(255,255,255,.08);border:1px solid rgba(201,168,76,.3);border-radius:10px;padding:12px 14px;color:#fff;font-size:13px;font-weight:600;text-align:center;transition:.2s}
.service-pill:hover{background:rgba(201,168,76,.15);border-color:var(--gold)}
.stats-row{display:flex;justify-content:space-between;margin-top:20px;padding-top:20px;border-top:1px solid rgba(255,255,255,.1)}
.stat-item{text-align:center}
.stat-num{font-size:22px;font-weight:900;color:var(--gold)}
.stat-label{font-size:11px;color:rgba(255,255,255,.6)}
.hero-scroll{position:absolute;bottom:30px;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:8px;color:rgba(255,255,255,.5);font-size:12px;cursor:pointer}
.scroll-dot{width:6px;height:6px;background:var(--gold);border-radius:50%;animation:bounce 1.5s infinite}
@keyframes bounce{0%,100%{transform:translateY(0)}50%{transform:translateY(6px)}}

/* ===== SHARED SECTION STYLES ===== */
.section{padding:80px 20px}
.section-alt{background:var(--off-white)}
.container{max-width:1200px;margin:0 auto}
.section-header{text-align:center;margin-bottom:50px}
.section-tag{display:inline-block;padding:5px 16px;background:rgba(201,168,76,.12);color:var(--gold-dark);border-radius:20px;font-size:12px;font-weight:700;letter-spacing:1px;margin-bottom:12px}
.section-title{font-size:clamp(24px,4vw,38px);font-weight:800;color:var(--navy);line-height:1.3}
.section-title .gold{color:var(--gold-dark)}
.section-sub{font-size:15px;color:var(--text-mid);margin-top:10px;max-width:600px;margin-left:auto;margin-right:auto;line-height:1.7}
.divider{width:60px;height:3px;background:var(--gold);margin:16px auto 0;border-radius:3px}

/* ===== SERVICES ===== */
.services-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:24px}
.service-card{background:#fff;border:1px solid var(--border);border-radius:16px;padding:28px 24px;transition:.3s;cursor:pointer}
.service-card:hover{transform:translateY(-6px);box-shadow:0 20px 40px rgba(13,37,69,.1);border-color:var(--gold)}
.service-icon{width:54px;height:54px;background:linear-gradient(135deg,var(--navy),#A02020);border-radius:14px;display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.service-icon svg{width:26px;height:26px;fill:#fff}
.service-card h3{font-size:17px;font-weight:700;color:var(--navy);margin-bottom:8px}
.service-card p{font-size:13px;color:var(--text-mid);line-height:1.7}
.service-tag{display:inline-block;margin-top:12px;padding:3px 10px;background:rgba(201,168,76,.1);color:var(--gold-dark);border-radius:10px;font-size:11px;font-weight:700}

/* ===== DETAILED SERVICES ===== */
.detail-services-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start}
.detail-col h3{font-size:18px;font-weight:800;color:var(--navy);margin-bottom:18px;padding-bottom:10px;border-bottom:2px solid var(--gold);display:flex;align-items:center;gap:10px}
.detail-col h3 span{font-size:22px}
.detail-list{list-style:none;display:flex;flex-direction:column;gap:10px}
.detail-list li{display:flex;align-items:flex-start;gap:10px;font-size:14px;color:var(--text-mid);line-height:1.6;padding:10px 14px;background:var(--off-white);border-radius:8px;border-right:3px solid var(--gold)}
.detail-list li::before{content:'✦';color:var(--gold-dark);font-size:11px;margin-top:3px;flex-shrink:0}

/* ===== WHY US ===== */
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center}
.why-image-wrap{position:relative}
.why-image-box{background:linear-gradient(135deg,var(--navy),var(--navy-light));border-radius:24px;aspect-ratio:1/1;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}
.why-image-box::before{content:'';position:absolute;width:200px;height:200px;background:rgba(201,168,76,.1);border-radius:50%;top:-50px;right:-50px}
.big-num{font-size:80px;font-weight:900;color:var(--gold);opacity:.3;position:absolute;bottom:20px;left:20px;font-family:'Playfair Display',serif}
.why-stamp{color:#fff;font-size:18px;font-weight:700;position:relative;z-index:1;text-align:center;padding:40px}
.why-stamp span{display:block;font-size:13px;color:rgba(255,255,255,.7);font-weight:400}
.why-features{display:flex;flex-direction:column;gap:20px}
.why-feature{display:flex;gap:16px;align-items:flex-start}
.feature-num{width:36px;height:36px;background:var(--gold);color:var(--navy);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:900;flex-shrink:0}
.feature-text h4{font-size:16px;font-weight:700;color:var(--navy);margin-bottom:4px}
.feature-text p{font-size:13px;color:var(--text-mid);line-height:1.6}

/* ===== LANGUAGES ===== */
.langs-wrap{display:flex;flex-wrap:wrap;gap:10px;justify-content:center}
.lang-chip{padding:8px 18px;background:#fff;border:1px solid var(--border);border-radius:25px;font-size:13px;font-weight:600;color:var(--text-dark);transition:.2s;cursor:default}
.lang-chip:hover{background:var(--navy);color:#fff;border-color:var(--navy)}
.lang-chip.highlight{background:var(--navy);color:var(--gold);border-color:var(--navy)}

/* ===== INTERPRETATION ===== */
.interp-box{background:linear-gradient(135deg,var(--navy),var(--navy-light));border-radius:20px;padding:40px;color:#fff;display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center}
.interp-text h3{font-size:24px;font-weight:800;color:#fff;margin-bottom:12px}
.interp-text h3 span{color:var(--gold)}
.interp-text p{font-size:14px;color:rgba(255,255,255,.8);line-height:1.8;margin-bottom:16px}
.interp-tags{display:flex;flex-wrap:wrap;gap:8px}
.interp-tag{padding:6px 14px;background:rgba(255,255,255,.1);border:1px solid rgba(201,168,76,.4);border-radius:20px;color:#fff;font-size:13px;font-weight:600}
.interp-stat{text-align:center;padding:20px;background:rgba(255,255,255,.06);border-radius:14px;border:1px solid rgba(255,255,255,.1)}
.interp-stat-num{font-size:42px;font-weight:900;color:var(--gold);display:block}
.interp-stat-label{font-size:13px;color:rgba(255,255,255,.7);margin-top:4px}
.interp-stats{display:grid;grid-template-columns:1fr 1fr;gap:12px}

/* ===== CLIENT RIGHTS ===== */
.rights-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px}
.right-card{background:#fff;border:1px solid var(--border);border-radius:14px;padding:24px;text-align:center;transition:.3s;position:relative;overflow:hidden}
.right-card::before{content:'';position:absolute;top:0;right:0;left:0;height:4px;background:var(--gold)}
.right-card:hover{transform:translateY(-4px);box-shadow:0 12px 30px rgba(0,0,0,.07)}
.right-num{width:44px;height:44px;background:var(--gold);color:var(--navy);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:900;margin:0 auto 14px}
.right-card h4{font-size:16px;font-weight:700;color:var(--navy);margin-bottom:8px}
.right-card p{font-size:13px;color:var(--text-mid);line-height:1.6}

/* ===== EMBASSIES ===== */
.embassies-wrap{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-top:10px}
.embassy-chip{padding:7px 16px;background:#fff;border:1px solid var(--border);border-radius:8px;font-size:13px;font-weight:600;color:var(--text-dark);transition:.2s;display:flex;align-items:center;gap:6px}
.embassy-chip:hover{background:var(--navy);color:#fff;border-color:var(--navy)}
.embassy-chip .flag{font-size:16px}
.embassy-note{text-align:center;margin-top:20px;font-size:13px;color:var(--text-mid);padding:12px 20px;background:rgba(201,168,76,.08);border-radius:10px;border:1px solid rgba(201,168,76,.2)}

/* ===== REGIONS ===== */
.regions-box{background:var(--off-white);border:1px solid var(--border);border-radius:16px;padding:30px}
.regions-title{font-size:16px;font-weight:700;color:var(--navy);margin-bottom:16px;display:flex;align-items:center;gap:8px}
.regions-title svg{width:20px;height:20px;fill:var(--gold-dark)}
.regions-tags{display:flex;flex-wrap:wrap;gap:8px}
.region-tag{padding:5px 12px;background:#fff;border:1px solid var(--border);border-radius:20px;font-size:12px;color:var(--text-mid);font-weight:600;transition:.2s}
.region-tag:hover{background:var(--navy);color:#fff;border-color:var(--navy)}
.region-tag.main{background:var(--navy);color:var(--gold);border-color:var(--navy)}

/* ===== BLOG ===== */
.blog-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:28px}
.blog-card{background:#fff;border:1px solid var(--border);border-radius:16px;overflow:hidden;transition:.3s;cursor:pointer}
.blog-card:hover{transform:translateY(-5px);box-shadow:0 15px 35px rgba(0,0,0,.08)}
.blog-thumb{height:180px;background:linear-gradient(135deg,var(--navy) 0%,var(--navy-light) 100%);display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}
.blog-thumb-icon{font-size:48px;opacity:.3}
.blog-cat{position:absolute;top:14px;right:14px;padding:4px 12px;background:var(--gold);color:var(--navy);border-radius:15px;font-size:11px;font-weight:700}
.blog-body{padding:20px}
.blog-meta{display:flex;align-items:center;gap:10px;margin-bottom:10px}
.blog-date{font-size:12px;color:var(--text-light)}
.blog-body h3{font-size:16px;font-weight:700;color:var(--navy);line-height:1.4;margin-bottom:8px}
.blog-body p{font-size:13px;color:var(--text-mid);line-height:1.6}
.blog-read-more{display:inline-flex;align-items:center;gap:6px;margin-top:14px;color:var(--gold-dark);font-size:13px;font-weight:700;text-decoration:none}

/* ===== BRANCHES ===== */
.branches-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px}
.branch-card{background:#fff;border:1px solid var(--border);border-radius:14px;padding:22px;transition:.3s}
.branch-card:hover{border-color:var(--gold);box-shadow:0 8px 24px rgba(0,0,0,.06)}
.branch-icon{width:40px;height:40px;background:rgba(201,168,76,.12);border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:12px}
.branch-icon svg{width:20px;height:20px;fill:var(--gold-dark)}
.branch-card h3{font-size:16px;font-weight:700;color:var(--navy);margin-bottom:6px}
.branch-card p{font-size:13px;color:var(--text-mid);line-height:1.6}
.branch-phone{margin-top:10px;font-size:13px;font-weight:700;color:var(--gold-dark)}

/* ===== CONTACT ===== */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:start}
.contact-info{display:flex;flex-direction:column;gap:20px}
.contact-card{background:var(--navy);border-radius:16px;padding:24px;color:#fff}
.contact-card-title{color:var(--gold);font-size:16px;font-weight:700;margin-bottom:16px;display:flex;align-items:center;gap:8px}
.contact-item{display:flex;align-items:center;gap:10px;margin-bottom:12px;color:rgba(255,255,255,.85);font-size:14px}
.contact-item svg{width:18px;height:18px;fill:var(--gold);flex-shrink:0}
.contact-form{background:#fff;border:1px solid var(--border);border-radius:16px;padding:30px}
.form-title{font-size:18px;font-weight:700;color:var(--navy);margin-bottom:20px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:0}
.form-group{display:flex;flex-direction:column;gap:6px;margin-bottom:16px}
.form-group label{font-size:13px;font-weight:600;color:var(--text-dark)}
.form-group input,.form-group select,.form-group textarea{padding:10px 14px;border:1.5px solid var(--border);border-radius:8px;font-family:'Cairo',sans-serif;font-size:14px;color:var(--text-dark);transition:.2s;outline:none;background:#fafafa;width:100%}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--gold);background:#fff}
.form-group textarea{resize:vertical;min-height:100px}
.form-submit{width:100%;padding:14px;background:var(--navy);color:#fff;border:none;border-radius:10px;font-family:'Cairo',sans-serif;font-size:16px;font-weight:700;cursor:pointer;transition:.3s;min-height:48px}
.form-submit:hover{background:var(--gold);color:var(--navy)}
.map-box{background:var(--off-white);border:1px solid var(--border);border-radius:16px;overflow:hidden;margin-top:20px}
.map-box iframe{width:100%;height:320px;border:0;display:block;max-width:100%}
.map-label{padding:12px 16px;font-size:12px;color:var(--text-mid);display:flex;align-items:center;gap:6px}
.map-label svg{width:14px;height:14px;fill:var(--gold-dark)}

/* ===== REVIEWS ===== */
.reviews-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px}
.review-card{background:#fff;border:1px solid var(--border);border-radius:14px;padding:22px}
.review-avatar{width:44px;height:44px;background:var(--navy);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--gold);font-weight:700;font-size:16px;flex-shrink:0}
.review-name{font-weight:700;font-size:15px;color:var(--navy)}
.review-stars{color:#F4A60A;font-size:13px}
.review-text{font-size:13px;color:var(--text-mid);line-height:1.7;margin-top:10px}
.rating-summary{display:flex;align-items:center;justify-content:center;gap:8px;margin-top:14px}

/* ===== FAQ ===== */
.faq-list{display:flex;flex-direction:column;gap:12px;max-width:800px;margin:0 auto}
.faq-item{background:#fff;border:1px solid var(--border);border-radius:12px;overflow:hidden}
.faq-item details{padding:0}
.faq-item details summary{padding:18px 20px;font-size:16px;font-weight:700;color:var(--navy);list-style:none;display:flex;justify-content:space-between;align-items:center;cursor:pointer;user-select:none}
.faq-item details summary::-webkit-details-marker{display:none}
.faq-item details summary .faq-icon{color:var(--gold);font-size:20px;transition:.2s;flex-shrink:0;margin-right:8px}
.faq-item details[open] summary .faq-icon{transform:rotate(45deg)}
.faq-answer{padding:0 20px 18px;font-size:14px;color:var(--text-mid);line-height:1.8}

/* ===== FOOTER ===== */
footer{background:var(--navy);color:#fff;padding:50px 20px 20px}
.footer-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:40px}
.footer-brand p{font-size:13px;color:rgba(255,255,255,.6);line-height:1.7;max-width:260px;margin-top:12px}
.footer-col h4{font-size:14px;font-weight:700;color:var(--gold);margin-bottom:16px;letter-spacing:.5px}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:10px}
.footer-col ul li a{color:rgba(255,255,255,.7);text-decoration:none;font-size:13px;transition:.2s}
.footer-col ul li a:hover{color:var(--gold)}
.footer-bottom{max-width:1200px;margin:0 auto;border-top:1px solid rgba(255,255,255,.1);padding-top:20px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-bottom p{font-size:12px;color:rgba(255,255,255,.5)}
.social-links{display:flex;gap:10px}
.social-link{width:36px;height:36px;background:rgba(255,255,255,.08);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;text-decoration:none;font-size:14px;transition:.2s}
.social-link:hover{background:var(--gold);color:var(--navy)}

/* ===== WHATSAPP FLOAT ===== */
.wa-float{position:fixed;bottom:24px;left:24px;width:56px;height:56px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,.4);z-index:9999;text-decoration:none;transition:.3s;animation:pulse 2s infinite}
.wa-float:hover{transform:scale(1.1)}
.wa-float svg{width:28px;height:28px;fill:#fff}
@keyframes pulse{0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)}50%{box-shadow:0 4px 30px rgba(37,211,102,.7)}}

/* ===== ENGLISH MODE ===== */
body.en{direction:ltr}
.en-only{display:none}
.ar-only{display:block}
body.en .en-only{display:block}
body.en .ar-only{display:none}
.en-inline{display:none}
.ar-inline{display:inline}
body.en .en-inline{display:inline}
body.en .ar-inline{display:none}

/* ===== ACCESSIBILITY ===== */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* ===== PRINT ===== */
@media print{
  .wa-float,.lang-bar,.hamburger,.mobile-menu{display:none!important}
  .hero{min-height:auto;padding:40px 20px}
  nav{position:relative}
}

/* ============================================================
   RESPONSIVE — TABLET (768px - 1024px)
   ============================================================ */
@media(max-width:1024px){
  .hero-content{grid-template-columns:1fr 1.1fr;gap:30px;padding:50px 24px}
  .hero-text h1{font-size:clamp(26px,3.5vw,40px)}
  .services-cards{grid-template-columns:repeat(2,1fr);gap:18px}
  .why-grid{grid-template-columns:1fr 1.2fr;gap:30px}
  .detail-services-grid{grid-template-columns:1fr 1fr;gap:24px}
  .interp-box{grid-template-columns:1fr 1fr;gap:24px;padding:30px}
  .contact-grid{grid-template-columns:1fr 1fr;gap:30px}
  .footer-grid{grid-template-columns:1.5fr 1fr 1fr;gap:24px}
  .footer-grid > div:first-child{grid-column:1/-1}
  .branches-grid{grid-template-columns:repeat(3,1fr);gap:14px}
  .rights-grid{grid-template-columns:repeat(2,1fr);gap:16px}
  .nav-links a{padding:7px 9px;font-size:13px}
}

/* ============================================================
   RESPONSIVE — SMALL TABLET (600px - 900px)
   ============================================================ */
@media(max-width:900px){
  .hero-content{grid-template-columns:1fr;gap:0;padding:50px 24px 40px}
  .hero-visual{display:none}
  .hero-text h1{font-size:clamp(24px,5vw,36px);text-align:center}
  .hero-text p{text-align:center;font-size:15px}
  .hero-btns{justify-content:center}
  .nav-links{display:none}
  .hamburger{display:flex}
  .why-grid{grid-template-columns:1fr;gap:24px}
  .why-image-wrap{display:none}
  .contact-grid{grid-template-columns:1fr;gap:24px}
  .interp-box{grid-template-columns:1fr;gap:24px}
  .detail-services-grid{grid-template-columns:1fr;gap:20px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:24px}
  .form-row{grid-template-columns:1fr}
}

/* ============================================================
   RESPONSIVE — MOBILE (max 599px)
   ============================================================ */
@media(max-width:599px){
  .section{padding:44px 14px}
  .section-title{font-size:clamp(20px,5.5vw,28px)}
  .lang-bar{padding:6px 12px;gap:6px}
  .topbar-info span{font-size:11px}
  .topbar-info span:nth-child(2){display:none}
  nav{padding:0 12px}
  .nav-inner{height:58px}
  .logo-img-sq{height:46px;width:auto;border-radius:0}
  .logo-circle{width:46px;height:46px}
  .logo-circle span{font-size:9px}
  .logo-name{font-size:15px}
  .logo-sub{font-size:10px}
  .hero{min-height:auto}
  .hero-content{padding:44px 16px 36px}
  .hero-text h1{font-size:clamp(22px,6.5vw,30px);line-height:1.25;margin-bottom:14px}
  .hero-text p{font-size:14px;line-height:1.7;margin-bottom:22px}
  .btn-primary,.btn-outline{padding:12px 22px;font-size:14px;width:100%;text-align:center;display:block}
  .hero-btns{flex-direction:column;gap:10px}
  .services-cards{grid-template-columns:1fr;gap:14px}
  .service-card{padding:20px 16px}
  .service-icon{width:46px;height:46px}
  .detail-services-grid{grid-template-columns:1fr;gap:16px}
  .detail-col h3{font-size:16px}
  .detail-list li{font-size:13px;padding:9px 12px}
  .interp-box{padding:22px 16px;border-radius:14px}
  .interp-box .interp-text h3{font-size:18px}
  .interp-stats{grid-template-columns:1fr 1fr;gap:10px}
  .interp-stat{padding:14px 10px}
  .interp-stat-num{font-size:30px}
  .interp-stat-label{font-size:11px}
  .rights-grid{grid-template-columns:1fr 1fr;gap:12px}
  .right-card{padding:16px 12px}
  .right-num{width:36px;height:36px;font-size:15px}
  .right-card h4{font-size:14px}
  .right-card p{font-size:12px}
  .langs-wrap{gap:7px}
  .lang-chip{padding:6px 12px;font-size:12px}
  .embassies-wrap{gap:7px}
  .embassy-chip{padding:5px 10px;font-size:12px}
  .blog-grid{grid-template-columns:1fr;gap:16px}
  .blog-thumb{height:150px}
  .blog-body{padding:16px}
  .blog-body h3{font-size:15px}
  .branches-grid{grid-template-columns:1fr;gap:12px}
  .branch-card{padding:18px 14px}
  .contact-card{padding:18px 14px}
  .contact-item{font-size:13px}
  .contact-form{padding:20px 14px}
  .form-title{font-size:16px}
  .form-group input,.form-group select,.form-group textarea{font-size:16px}
  .map-box iframe{height:240px}
  .regions-box{padding:20px 14px}
  .regions-tags{gap:6px}
  .region-tag{font-size:11px;padding:4px 10px}
  .stats-row{gap:6px}
  .stat-num{font-size:18px}
  .stat-label{font-size:10px}
  .footer-grid{grid-template-columns:1fr;gap:20px}
  .footer-bottom{flex-direction:column;text-align:center;gap:10px}
  footer{padding:36px 14px 16px}
  .faq-item details summary{font-size:14px;padding:14px 16px}
  .faq-answer{padding:0 16px 14px}
  .reviews-grid{grid-template-columns:1fr}
  .wa-float{width:50px;height:50px;bottom:16px;left:16px}
  .wa-float svg{width:24px;height:24px}
  .page-hero{padding:50px 16px}
  .page-hero h1{font-size:clamp(20px,6vw,28px)}
  .breadcrumb{gap:5px;flex-wrap:wrap;justify-content:center}
}

/* ============================================================
   VERY SMALL (max 380px)
   ============================================================ */
@media(max-width:380px){
  .hero-text h1{font-size:20px}
  .rights-grid{grid-template-columns:1fr}
  .btn-primary,.btn-outline{font-size:13px;padding:11px 18px}
  .section{padding:36px 12px}
}

/* ============================================================
   TOUCH DEVICES
   ============================================================ */
@media(hover:none) and (pointer:coarse){
  .lang-btn{padding:8px 16px;font-size:13px}
  .mobile-menu a{min-height:48px}
  .wa-float{width:58px;height:58px}
  .btn-primary,.btn-outline{min-height:48px;display:flex;align-items:center;justify-content:center}
  .form-submit{min-height:52px}
  .faq-item details summary{min-height:52px}
}

/* ============================================================
   LANDSCAPE MOBILE
   ============================================================ */
@media(max-width:812px) and (orientation:landscape){
  .hero{min-height:auto}
  .hero-content{padding:30px 24px}
  .hero-text h1{font-size:24px}
  .section{padding:40px 20px}
}

/* ============================================================
   ISO STATS STRIP
   ============================================================ */
.iso-stats-strip {
  background: var(--navy);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.iso-stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,162,39,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.iso-stats-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-height: 130px;
}
.iso-badge-wrap {
  padding: 28px 40px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.iso-badge {
  display: flex;
  align-items: center;
  gap: 18px;
}
.iso-badge-icon svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 12px rgba(201,162,39,0.35));
}
.iso-badge-text {}
.iso-badge-title {
  font-size: 13px;
  font-weight: 700;
  color: #C9A227;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2px;
}
.iso-badge-sub {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.iso-badge-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.iso-stats-divider {
  width: 1px;
  background: rgba(201,162,39,0.25);
  margin: 20px 0;
  flex-shrink: 0;
}
.global-stats-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 28px 40px;
  gap: 0;
}
.global-stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.global-stat-num {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #C9A227;
  line-height: 1;
  margin-bottom: 6px;
}
.global-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  max-width: 120px;
  margin: 0 auto;
}
.global-stat-sep {
  width: 1px;
  height: 50px;
  background: rgba(201,162,39,0.2);
  flex-shrink: 0;
}

/* ============================================================
   CLIENTS LOGOS SECTION
   ============================================================ */
.clients-section {
  background: #fff;
}
.clients-logos-track-wrap {
  overflow: hidden;
  position: relative;
  margin: 0 -20px;
}
.clients-logos-track-wrap::before,
.clients-logos-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.clients-logos-track-wrap::before {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}
.clients-logos-track-wrap::after {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.clients-logos-track {
  overflow: hidden;
}
.clients-logos-row {
  display: flex;
  gap: 16px;
  padding: 12px 20px;
  animation: logoScroll 30s linear infinite;
  width: max-content;
}
.clients-logos-row:hover {
  animation-play-state: paused;
}
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
[dir="rtl"] .clients-logos-row {
  animation-name: logoScrollRTL;
}
@keyframes logoScrollRTL {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}
.client-logo-card {
  flex-shrink: 0;
  width: 180px;
  height: 90px;
  border: 1px solid rgba(0,35,82,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
}
.client-logo-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,162,39,0.15);
  transform: translateY(-2px);
}
.client-logo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px;
  text-align: center;
}
.client-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.client-logo-icon.gov { background: rgba(0,35,82,0.08); }
.client-logo-icon.corp { background: rgba(201,162,39,0.12); }
.client-logo-icon.intl { background: rgba(46,139,87,0.1); }
.client-logo-icon.law { background: rgba(139,0,0,0.08); }
.client-logo-inner span {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  text-align: center;
}

/* ============================================================
   PREMIUM REVIEWS
   ============================================================ */
.reviews-premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review-premium-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 24px;
  border: 1px solid rgba(0,35,82,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.review-premium-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}
.review-premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,35,82,0.12);
  border-color: transparent;
}
.review-premium-card:hover::before {
  opacity: 1;
}
.review-premium-card.featured {
  background: var(--navy);
  border-color: transparent;
  grid-row: span 1;
}
.review-premium-card.featured::before {
  opacity: 1;
  background: linear-gradient(90deg, var(--gold), #e8c84a);
}
.review-quote-icon {
  font-size: 60px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  margin-bottom: 16px;
  display: block;
}
.review-premium-card.featured .review-quote-icon {
  opacity: 0.4;
}
.review-premium-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.review-premium-card.featured .review-premium-text {
  color: rgba(255,255,255,0.88);
}
.review-premium-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.review-premium-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #0a4080);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
  border: 2px solid rgba(201,162,39,0.3);
}
.review-premium-avatar.featured-av {
  background: linear-gradient(135deg, #C9A227, #e8c84a);
  color: var(--navy);
  border-color: rgba(255,255,255,0.3);
}
.review-premium-name {
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 2px;
}
.review-premium-card.featured .review-premium-name {
  color: #fff;
}
.review-premium-role {
  font-size: 12px;
  color: var(--text-mid);
}
.review-premium-card.featured .review-premium-role {
  color: rgba(255,255,255,0.55);
}
.review-stars-sm {
  color: #F4A60A;
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 2px;
}
.review-verified {
  font-size: 11px;
  color: #28a745;
  font-weight: 600;
}
.review-premium-card.featured .review-verified {
  color: rgba(201,162,39,0.9);
}

/* ============================================================
   RESPONSIVE: ISO STRIP + CLIENTS + REVIEWS
   ============================================================ */
@media(max-width:768px) {
  .iso-stats-inner {
    flex-direction: column;
    min-height: auto;
  }
  .iso-badge-wrap {
    padding: 24px 20px 16px;
    border-bottom: 1px solid rgba(201,162,39,0.2);
  }
  .iso-stats-divider { display: none; }
  .global-stats-wrap {
    padding: 20px 16px;
    gap: 0;
  }
  .global-stat { padding: 0 10px; }
  .global-stat-num { font-size: 26px; }
  .reviews-premium-grid {
    grid-template-columns: 1fr;
  }
  .client-logo-card { width: 150px; height: 80px; }
}
