@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/6.11.1/css/flag-icons.min.css');

/* Flag icon helper */
.fi { font-size: 1rem; border-radius: 2px; flex-shrink: 0; width: 1.33em !important; }

/* =============================================
   CSS VARIABLES — BROWN IP DESIGN SYSTEM
   ============================================= */
:root {
  --navy:       #2D1065;
  --navy-light: #3D1A80;
  --gold:       #8B5CF6;
  --gold-light: #A78BFA;
  --gold-pale:  #EDE9FE;
  --cream:      #F5F3FF;
  --white:      #FFFFFF;
  --gray-100:   #F2F2F2;
  --gray-300:   #CCCCCC;
  --gray-500:   #888888;
  --gray-700:   #444444;
  --text:       #1A1A2E;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:     4px;
  --radius-lg:  12px;
  --shadow-sm:  0 2px 8px rgba(11,31,58,0.08);
  --shadow-md:  0 8px 32px rgba(11,31,58,0.12);
  --shadow-lg:  0 20px 60px rgba(11,31,58,0.18);

  --transition: 0.3s ease;
  --max-w:      1200px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem);  }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem);  }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); }

p  { font-size: 1rem; line-height: 1.75; color: var(--gray-700); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

/* =============================================
   LAYOUT HELPERS
   ============================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }
.section--sm { padding: 4rem 0; }
.section--lg { padding: 8rem 0; }

.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark p   { color: rgba(255,255,255,0.75); }

.section--cream { background: var(--cream); }
.section--gold-pale { background: var(--gold-pale); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--gold) !important; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,92,246,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: var(--navy);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}

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

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar__logo img {
  height: 2.5rem;
  width: auto;
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.navbar__logo-text span { color: var(--gold); }

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.navbar__link:hover,
.navbar__link.active { color: var(--white); }
.navbar__link:hover::after,
.navbar__link.active::after { width: 100%; }

.navbar__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.lang-btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.lang-btn:hover,
.lang-btn.active {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
}
.lang-btn.active { color: var(--gold); border-color: var(--gold); }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  position: relative;
  z-index: 1001;
}
.navbar__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  padding: 5.5rem 2rem 2.5rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu .navbar__link {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  display: block;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu .navbar__link:hover,
.mobile-menu .navbar__link.active {
  color: var(--white);
  padding-left: 0.5rem;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--navy);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__eyebrow { color: var(--gold); }
.page-hero h1      { color: var(--white); margin-bottom: 1rem; }
.page-hero p       { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; }

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.page-hero__breadcrumb a { color: var(--gold); }
.page-hero__breadcrumb a:hover { text-decoration: underline; }

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(196,146,42,0.1);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.card__icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.card h3 { margin-bottom: 0.75rem; }
.card p  { font-size: 0.925rem; }

/* =============================================
   DIVIDER / GOLD LINE
   ============================================= */
.gold-line {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 1.25rem 0;
}
.gold-line--center { margin-left: auto; margin-right: auto; }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { margin-bottom: 4rem; }
.section-header--center { text-align: center; }
.section-header--center .gold-line { margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { max-width: 600px; font-size: 1.05rem; }
.section-header--center p { margin: 0 auto; }

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-group { margin-bottom: 3rem; }
.faq-group__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.faq-country-flag { font-size: 1.4rem; }

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question .faq-icon {
  width: 24px; height: 24px;
  min-width: 24px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: all var(--transition);
  color: var(--gold);
}
.faq-question.open .faq-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 800px;
  padding-bottom: 1.25rem;
}
.faq-answer p,
.faq-answer ul { font-size: 0.9rem; color: var(--gray-700); margin-bottom: 0.75rem; }
.faq-answer ul { padding-left: 1.25rem; list-style: disc; }
.faq-answer ul li { margin-bottom: 0.35rem; }

/* =============================================
   CONTACT FORM
   ============================================= */
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.12);
}

textarea { resize: vertical; min-height: 140px; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-message {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.9rem;
  display: none;
}
.form-message.success { background: #E8F5E9; color: #2E7D32; display: block; }
.form-message.error   { background: #FFEBEE; color: #C62828; display: block; }

/* =============================================
   OFFICE CARDS
   ============================================= */
.office-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(139,92,246,0.15);
  transition: box-shadow var(--transition);
}
.office-card:hover { box-shadow: var(--shadow-md); }
.office-card__country {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.office-card__flag { font-size: 1.4rem; }
.office-card__gold-line { width: 40px; height: 2px; background: var(--gold); margin: 0.75rem 0; }
.office-card p { font-size: 0.875rem; margin-bottom: 0.5rem; color: var(--gray-700); }
.office-card a { color: var(--gold); font-size: 0.875rem; }
.office-card a:hover { text-decoration: underline; }

/* =============================================
   COUNTRIES GRID
   ============================================= */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.country-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--transition);
}
.country-tag:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
}
.country-tag .flag { font-size: 1.2rem; }

/* =============================================
   STAT BAR
   ============================================= */
.stat-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat__label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #1A0840;
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer__brand-name span { color: var(--gold); }
.footer__tagline { font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.footer__contact-icon { color: var(--gold); font-size: 1rem; margin-top: 0.1rem; }
.footer__divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer__bottom a { color: rgba(255,255,255,0.6); }
.footer__bottom a:hover { color: var(--white); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #5B21B6 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 60%);
}
.cta-banner .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-banner p  { color: rgba(255,255,255,0.7); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-fade-up  { animation: fadeUp  0.7s ease both; }
.animate-fade-in  { animation: fadeIn  0.7s ease both; }
.animate-slide-right { animation: slideRight 0.7s ease both; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section   { padding: 3rem 0; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row                  { grid-template-columns: 1fr; }
  .footer__grid              { grid-template-columns: 1fr; gap: 2rem; }

  /* ── Navbar mobile ── */
  .navbar__menu    { display: none; }
  .navbar__hamburger { display: flex; }

  /* Hide Contact Us button on mobile — it's in the mobile menu */
  .navbar__right .btn { display: none; }

  /* Lang switcher compact on mobile */
  .navbar__right {
    gap: 0.75rem;
  }
  .lang-btn {
    padding: 0.2rem 0.4rem;
    font-size: 0.65rem;
  }

  /* ── Mobile menu refinements ── */
  .mobile-menu {
    padding: 6rem 2rem 3rem;
    justify-content: flex-start;
    gap: 0;
  }
  .mobile-menu .navbar__link {
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    width: 100%;
    text-align: left;
  }
  .mobile-menu .navbar__link:last-of-type { border-bottom: none; }
  .mobile-menu .lang-switcher {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    justify-content: flex-start;
    gap: 1rem;
  }
  .mobile-menu .lang-btn {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius);
  }

  /* Contact Us CTA at bottom of mobile menu */
  .mobile-menu::after {
    content: '';
    display: none;
  }

  /* ── Stats ── */
  .stat-bar { gap: 1.5rem; }
  .stat__number { font-size: 2rem; }

  /* ── CTA banner ── */
  .cta-banner .container { flex-direction: column; text-align: center; }
  .cta-banner .btn { width: 100%; justify-content: center; }

  /* ── Footer ── */
  .footer__bottom { flex-direction: column; text-align: center; }

  /* ── Page hero ── */
  .page-hero { padding: 7rem 0 3rem; }
  .page-hero h1 { font-size: 2.2rem; }

  /* ── Section headers ── */
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Navbar very small screens ── */
  .navbar { padding: 0.9rem 0; }
  .navbar.scrolled { padding: 0.6rem 0; }
  .navbar__logo img { height: 2rem; }

  /* ── Buttons full width on small screens ── */
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  /* ── Stats 2x2 grid ── */
  .stat-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  /* ── Cards compact ── */
  .card { padding: 1.5rem; }
  .office-card { padding: 1.25rem; }
}

/* =============================================
   SERVICES PAGE — RESPONSIVE
   ============================================= */
.service-full { padding: 5rem 0; border-bottom: 1px solid rgba(0,0,0,0.07); }
.service-full:last-of-type { border-bottom: none; }
.service-full:nth-child(even) { background: var(--cream); }
.service-full__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}
.service-full:nth-child(even) .service-full__grid { direction: rtl; }
.service-full:nth-child(even) .service-full__grid > * { direction: ltr; }
.service-full__icon-wrap {
  background: var(--white);
  border: 1.5px solid rgba(139,92,246,0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-full__icon-wrap img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
}
.service-full__bullets { list-style: none; margin: 1.5rem 0; }
.service-full__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
  color: var(--gray-700);
}
.service-full__bullets li:last-child { border-bottom: none; }
.service-full__bullets li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

@media (max-width: 768px) {
  .service-full { padding: 3rem 0; }
  .service-full__grid {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
    gap: 1.5rem;
  }
  .service-full:nth-child(even) .service-full__grid { direction: ltr !important; }
  .service-full__icon-wrap {
    min-height: 160px !important;
    padding: 1.5rem !important;
    width: 100% !important;
  }
  .service-full__icon-wrap img { max-height: 140px; }
}

/* =============================================
   CONTACT PAGE — RESPONSIVE
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* =============================================
   NAVBAR — force correct mobile behaviour
   ============================================= */
@media (max-width: 768px) {
  /* Hide desktop nav items */
  .navbar__menu { display: none !important; }
  .navbar__right .btn { display: none !important; }
  /* Show hamburger */
  .navbar__hamburger { display: flex !important; }
  /* Keep lang switcher visible and compact */
  .navbar__right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .lang-btn {
    padding: 0.2rem 0.45rem;
    font-size: 0.65rem;
  }
}
