/* ============ VISANOVA INTERNATIONAL ============ */
:root {
  --navy: #16305F;
  --navy-dark: #0F2350;
  --navy-deep: #0A1A3C;
  --gold: #C9971C;
  --gold-light: #E3B94E;
  --gold-dark: #A87B10;
  --ink: #22293a;
  --muted: #5d6678;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --line: #e4e8f0;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(15, 35, 80, 0.10);
  --shadow-lg: 0 18px 50px rgba(15, 35, 80, 0.18);
  --font: 'Poppins', 'Cairo', system-ui, sans-serif;
}
html[lang="ar"] { --font: 'Cairo', 'Poppins', system-ui, sans-serif; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: min(1180px, 92%); margin-inline: auto; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-deep);
  color: #cfd8ea;
  font-size: 0.82rem;
  padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: #cfd8ea; transition: color .2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar .tb-contacts { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar .tb-contacts span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Language switcher ---------- */
.lang-switch { display: flex; gap: 4px; align-items: center; }
.lang-switch a {
  padding: 2px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.25);
  font-weight: 600;
  font-size: 0.78rem;
}
.lang-switch a.active { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.lang-switch a:hover:not(.active) { border-color: var(--gold-light); color: var(--gold-light); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(15,35,80,0.06);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 10px 0; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 54px; width: auto; }
.main-nav ul { display: flex; gap: 6px; align-items: center; }
.main-nav a {
  padding: 9px 15px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--navy);
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.main-nav a:hover { background: var(--bg-soft); color: var(--gold-dark); }
.main-nav a.active { color: var(--gold-dark); }
.main-nav a.active::after { content: ""; display: block; height: 3px; border-radius: 2px; background: var(--gold); margin-top: 2px; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep) !important;
  font-weight: 700;
  border-radius: 30px !important;
  padding: 10px 22px !important;
  box-shadow: 0 4px 14px rgba(201,151,28,0.35);
}
.nav-cta:hover { filter: brightness(1.06); }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; color: var(--navy);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201,151,28,0.18), transparent 60%),
    radial-gradient(ellipse 60% 70% at 15% 85%, rgba(29,62,119,0.55), transparent 65%),
    linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 55%, #1D3E77 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, transparent, black 40%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 40%, transparent);
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  padding: 90px 0 100px;
}
.hero h1 { font-size: clamp(2rem, 4.2vw, 3.3rem); line-height: 1.18; font-weight: 800; }
.hero h1 .accent { color: var(--gold-light); }
.hero p.lead { margin-top: 18px; font-size: 1.08rem; color: #dbe3f2; max-width: 560px; }
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art { display: flex; justify-content: center; }
.hero-art img { width: min(360px, 80%); filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-stats {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.14);
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-stats .stat { background: rgba(10,26,60,0.55); padding: 22px 10px; text-align: center; }
.hero-stats .num { font-size: 1.7rem; font-weight: 800; color: var(--gold-light); }
.hero-stats .lbl { font-size: 0.85rem; color: #c6d0e4; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform .15s, box-shadow .2s, filter .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 6px 20px rgba(201,151,28,0.4);
}
.btn-outline { border: 2px solid rgba(255,255,255,0.6); color: #fff; }
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 6px 20px rgba(22,48,95,0.35); }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
section.soft { background: var(--bg-soft); }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.sec-head .kicker {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.sec-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--navy); font-weight: 800; }
.sec-head p { color: var(--muted); margin-top: 12px; }

/* ---------- Cards grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .25s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,151,28,0.5); }
.card .icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(22,48,95,0.08), rgba(201,151,28,0.14));
  color: var(--navy);
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.card h3 { color: var(--navy); font-size: 1.12rem; margin-bottom: 8px; font-weight: 700; }
.card p { color: var(--muted); font-size: 0.93rem; }
.card .more { display: inline-block; margin-top: 14px; color: var(--gold-dark); font-weight: 700; font-size: 0.88rem; }
.card::after {
  content: "";
  position: absolute; top: 0; inset-inline-start: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), transparent);
  opacity: 0; transition: opacity .2s;
}
.card:hover::after { opacity: 1; }

/* ---------- Country cards ---------- */
.country-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 230px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .25s;
}
.country-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.country-card .flag { font-size: 2.6rem; line-height: 1; margin-bottom: auto; }
.country-card h3 { font-size: 1.25rem; margin-top: 18px; }
.country-card p { font-size: 0.88rem; color: rgba(255,255,255,0.85); margin-top: 6px; }
.cc-schengen { background: linear-gradient(160deg, #1D3E77, #0F2350 70%); }
.cc-usa { background: linear-gradient(160deg, #29457c, #131f45 70%); }
.cc-uk { background: linear-gradient(160deg, #33518c, #16305F 70%); }
.cc-canada { background: linear-gradient(160deg, #3d5a94, #1a2c58 70%); }
.cc-gulf { background: linear-gradient(160deg, #8a6a14, #4c3a08 70%); }
.cc-turkey { background: linear-gradient(160deg, #a3801f, #5c4708 70%); }
.country-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
}

/* ---------- Why us ---------- */
.why-item { text-align: center; padding: 28px 18px; }
.why-item .icon {
  width: 74px; height: 74px; margin: 0 auto 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.9rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--gold-light);
  box-shadow: 0 8px 22px rgba(15,35,80,0.3);
}
.why-item h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 8px; }
.why-item p { color: var(--muted); font-size: 0.9rem; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 26px 30px;
  box-shadow: var(--shadow);
}
.step .num {
  position: absolute; top: -24px; inset-inline-start: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.15rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 6px 16px rgba(201,151,28,0.45);
}
.step h3 { color: var(--navy); font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.testimonial .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; }
.testimonial p { color: var(--ink); font-size: 0.95rem; font-style: italic; }
.testimonial .who { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--gold-light); font-weight: 800;
}
.testimonial .who strong { color: var(--navy); display: block; font-size: 0.92rem; }
.testimonial .who span { color: var(--muted); font-size: 0.8rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse 60% 100% at 85% 50%, rgba(201,151,28,0.25), transparent 65%),
    linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff;
  border-radius: 20px;
  padding: 54px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.cta-band p { color: #dbe3f2; margin-top: 8px; }

/* ---------- About page ---------- */
.page-hero {
  background:
    radial-gradient(ellipse 70% 80% at 80% 20%, rgba(201,151,28,0.2), transparent 60%),
    linear-gradient(140deg, var(--navy-dark), var(--navy));
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 800; }
.page-hero p { color: #dbe3f2; margin-top: 12px; max-width: 640px; margin-inline: auto; }
.breadcrumb { margin-top: 16px; font-size: 0.85rem; color: #b9c5dd; }
.breadcrumb a { color: var(--gold-light); }

.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-block h2 { color: var(--navy); font-size: 1.8rem; margin-bottom: 16px; }
.about-block p { color: var(--muted); margin-bottom: 14px; }
.about-visual {
  background: linear-gradient(140deg, var(--navy-dark), var(--navy));
  border-radius: 20px;
  padding: 50px;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
}
.about-visual img { width: min(280px, 90%); }
.check-list li {
  padding-inline-start: 32px;
  position: relative;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 500;
}
.check-list li::before {
  content: "✓";
  position: absolute; inset-inline-start: 0; top: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
}

/* ---------- Values ---------- */
.mv-card { text-align: start; }
.mv-card .icon { font-size: 1.8rem; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; }
.contact-info .item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.contact-info .ic {
  width: 48px; height: 48px; flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(22,48,95,0.08), rgba(201,151,28,0.16));
  color: var(--navy);
}
.contact-info h3 { color: var(--navy); font-size: 1rem; }
.contact-info p, .contact-info a { color: var(--muted); font-size: 0.92rem; }
.contact-info a:hover { color: var(--gold-dark); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form h3 { color: var(--navy); margin-bottom: 20px; font-size: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--bg-soft);
  margin-bottom: 16px;
  transition: border-color .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold);
  background: #fff;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 10px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #b9c5dd;
  padding: 64px 0 0;
  font-size: 0.9rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.site-footer li { margin-bottom: 9px; }
.site-footer a:hover { color: var(--gold-light); }
.footer-brand img { height: 60px; margin-bottom: 14px; filter: brightness(0) invert(1) drop-shadow(0 0 1px rgba(255,255,255,0.4)); opacity: 0.95; }
.footer-brand p { max-width: 300px; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  transition: background .2s, transform .15s;
}
.socials a:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap;
  font-size: 0.8rem; color: #8fa0c0;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; inset-inline-end: 24px;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- RTL tweaks ---------- */
html[dir="rtl"] body { letter-spacing: 0; }
html[dir="rtl"] .hero h1, html[dir="rtl"] .sec-head h2 { letter-spacing: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; padding: 64px 0 72px; }
  .hero p.lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { display: none; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about-block, .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav {
    position: fixed; top: 0; inset-inline-end: -300px;
    width: 280px; height: 100vh;
    background: #fff;
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
    transition: inset-inline-end .3s;
    padding: 80px 24px 24px;
    z-index: 150;
  }
  .main-nav.open { inset-inline-end: 0; }
  .main-nav ul { flex-direction: column; align-items: stretch; }
  .main-nav a { display: block; padding: 12px 14px; }
  .nav-toggle { display: block; z-index: 160; }
}
@media (max-width: 620px) {
  .grid-3, .grid-4, .form-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 38px 26px; }
  section { padding: 60px 0; }
}
