/* =============================================
   العنبر جروب - Stylesheet
   Brand: Navy #1B2A5E | Gold #C9922A
   Font: Cairo | Oswald (numbers)
   Direction: RTL | Jordan
   ============================================= */

:root {
  --navy: #1B2A5E;
  --navy-dark: #0f1a3d;
  --navy-mid: #243870;
  --gold: #C9922A;
  --gold-light: #e0a83a;
  --gold-dark: #a87520;
  --white: #ffffff;
  --off-white: #f4f6fa;
  --gray-200: #e2e6f0;
  --gray-400: #9aa3be;
  --gray-600: #5a6480;
  --font-ar: 'Cairo', sans-serif;
  --font-num: 'Oswald', sans-serif;
  --transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  --shadow-sm: 0 2px 12px rgba(27,42,94,0.08);
  --shadow-md: 0 8px 32px rgba(27,42,94,0.14);
  --shadow-lg: 0 16px 56px rgba(27,42,94,0.22);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-ar); direction: rtl; color: #1a1f36; background: var(--white); line-height: 1.7; overflow-x: hidden; }
/* Force English (Western) numerals everywhere */
body, input, textarea, select, button {
  -webkit-locale: "en";
  font-variant-numeric: lining-nums;
}
/* Oswald always renders Latin digits */
.stat-number, .stat-plus, [dir="ltr"] { font-variant-numeric: lining-nums; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-ar); }
input, textarea, select { font-family: var(--font-ar); }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.text-gold { color: var(--gold); }
.section-dark { background: var(--navy-dark); color: var(--white); }
.section-light { background: var(--off-white); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block;
  background: rgba(201,146,42,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,146,42,0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-tag.light { background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.3); }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.section-desc { font-size: 1.05rem; color: var(--gray-400); max-width: 600px; margin: 0 auto; line-height: 1.8; }
.section-dark .section-desc { color: rgba(255,255,255,0.65); }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 8px;
  font-weight: 700; font-size: 1rem;
  border: 2px solid var(--gold); transition: var(--transition);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,146,42,0.35); }
.btn-primary:active { transform: scale(0.97); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: var(--white);
  padding: 0.9rem 2rem; border-radius: 8px;
  font-weight: 600; font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.4); transition: var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-full { width: 100%; justify-content: center; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  padding: 0.75rem 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,18,45,0.96);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 0.4rem 0;
  box-shadow: 0 2px 0 rgba(201,146,42,0.5), 0 4px 32px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; transition: var(--transition); }
.nav-logo img {
  height: 100px;
  width: auto;
  max-width: 200px;
  transition: var(--transition);
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.6)) brightness(1.05);
  object-fit: contain;
}
.navbar.scrolled .nav-logo img { height: 75px; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; margin-right: auto; }
.nav-link {
  color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.9rem;
  padding: 0.5rem 0.8rem; border-radius: 6px; transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; right: 0.8rem; left: 0.8rem;
  height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.btn-cta.nav-cta {
  background: var(--gold); color: var(--white);
  padding: 0.6rem 1.2rem; border-radius: 8px;
  font-weight: 700; font-size: 0.85rem; white-space: nowrap;
  display: flex; align-items: center; gap: 0.4rem;
}
.btn-cta.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-right: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO - Full Screen Premium */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

/* Hero background */
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 10s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,18,45,0.75) 0%,
    rgba(10,18,45,0.55) 40%,
    rgba(10,18,45,0.80) 80%,
    rgba(10,18,45,0.95) 100%
  );
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,146,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,146,42,0.05) 1px, transparent 1px);
  background-size: 70px 70px;
}

/* Hero inner layout */
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 2rem 3rem;
  min-height: 100vh;
}

/* Top bar: company logos */
.hero-companies-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
  animation: fadeInDown 0.7s ease 0.1s both;
}
.hcb-item {
  display: flex; align-items: center; gap: 0.7rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 0.5rem 1.2rem 0.5rem 0.5rem;
  transition: var(--transition);
}
.hcb-item:hover { background: rgba(255,255,255,0.12); border-color: rgba(201,146,42,0.35); }
.hcb-item img { height: 36px; width: auto; object-fit: contain; border-radius: 6px; }
.hcb-item span { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.85); white-space: nowrap; }
.hcb-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.2); }

/* Center content */
.hero-center {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0 2rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(201,146,42,0.12); border: 1px solid rgba(201,146,42,0.35);
  color: var(--gold-light); padding: 0.45rem 1.2rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem;
  animation: fadeInDown 0.7s ease forwards;
}
.badge-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900; line-height: 0.95;
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.title-white { display: block; color: var(--white); }
.title-gold { display: block; color: var(--gold); text-shadow: 0 0 60px rgba(201,146,42,0.5); }
.hero-tagline-row {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 0.8rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-line { flex: 1; height: 1px; background: rgba(255,255,255,0.25); max-width: 80px; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.9); font-weight: 600;
  white-space: nowrap;
}
.hero-desc {
  font-size: 0.95rem; color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem; letter-spacing: 0.05em;
  animation: fadeInUp 0.8s ease 0.25s both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* Bottom stats row */
.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(10,18,45,0.7);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,146,42,0.25);
  padding: 1.2rem 2rem;
  margin: 0 -2rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hsr-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 2.5rem; text-align: center;
}
.hsr-num {
  font-family: var(--font-num); font-size: 1.8rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hsr-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 3px; }
.hsr-div { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease infinite; }

/* STATS */
.stats-bar { background: var(--navy); padding: 2.5rem 0; position: relative; z-index: 1; }
.stats-bar::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); }
.stats-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 0.5rem 3rem; text-align: center; }
.stat-number { font-family: var(--font-num); font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; color: var(--gold); line-height: 1; display: inline; font-variant-numeric: lining-nums; -webkit-font-feature-settings: "lnum"; font-feature-settings: "lnum"; }
.stat-plus { font-family: var(--font-num); font-size: 1.5rem; color: var(--gold-light); display: inline; margin-right: 2px; }
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 500; margin-top: 0.4rem; }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.15); }

/* ABOUT */
.about { padding: 6rem 0; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text .section-tag { margin-bottom: 1rem; }
.about-desc { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.9; margin-bottom: 1rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 2rem; }
.value-item {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 0.7rem 1rem;
  font-size: 0.9rem; color: rgba(255,255,255,0.85); font-weight: 600;
  transition: var(--transition);
}
.value-item:hover { background: rgba(201,146,42,0.12); border-color: rgba(201,146,42,0.3); }
.value-item i { color: var(--gold); font-size: 1rem; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold); color: var(--white);
  padding: 1.2rem 1.8rem; border-radius: var(--radius);
  text-align: center; box-shadow: 0 8px 24px rgba(201,146,42,0.4);
}
.ab-num { display: block; font-family: var(--font-num); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.ab-text { display: block; font-size: 0.8rem; font-weight: 600; opacity: 0.9; }

/* COMPANIES */
.companies { padding: 6rem 0; }
.companies-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.company-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  transition: var(--transition); border: 2px solid var(--gray-200);
}
.company-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--navy); }
.company-card.golden:hover { border-color: var(--gold); }
.company-img { position: relative; height: 220px; overflow: hidden; }
.company-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.company-card:hover .company-img img { transform: scale(1.06); }
.company-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,18,45,0.7) 0%, transparent 60%); }
.company-body { padding: 2rem; }
.company-logo-wrap {
  width: 80px; height: 80px; background: var(--white);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; overflow: hidden; padding: 6px;
  box-shadow: 0 2px 12px rgba(27,42,94,0.15);
  border: 1px solid var(--gray-200);
}
.company-logo-img { width: 100%; height: 100%; object-fit: contain; }
.company-logo-wrap.golden-logo { background: var(--white); }
.golden-logo-img { object-fit: contain; }
.company-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 0.7rem; }
.company-card.golden h3 { color: var(--gold-dark); }
.company-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 1.2rem; }
.company-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; margin-bottom: 1.2rem; }
.company-features span { font-size: 0.82rem; color: #3d4566; display: flex; align-items: center; gap: 0.4rem; }
.company-features i { color: var(--gold); font-size: 0.75rem; }
.company-branches { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.branch-tag {
  background: rgba(27,42,94,0.08); color: var(--navy);
  padding: 0.3rem 0.8rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.3rem;
}
.branch-tag i { color: var(--gold); }
.btn-company {
  display: block; width: 100%; text-align: center;
  background: var(--navy); color: var(--white);
  padding: 0.8rem; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem; transition: var(--transition);
}
.btn-company:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-company.golden-btn { background: var(--gold); }
.btn-company.golden-btn:hover { background: var(--gold-dark); }

/* SERVICES */
.services { padding: 6rem 0; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-item {
  display: flex; align-items: flex-start; gap: 1.5rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 1.8rem; transition: var(--transition);
}
.service-item:hover { background: rgba(255,255,255,0.08); border-color: rgba(201,146,42,0.3); transform: translateX(-4px); }
.service-num { font-family: var(--font-num); font-size: 2.5rem; font-weight: 700; color: rgba(201,146,42,0.25); line-height: 1; flex-shrink: 0; min-width: 3rem; }
.service-content { flex: 1; }
.service-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.service-content p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.service-icon { width: 48px; height: 48px; background: rgba(201,146,42,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--gold); flex-shrink: 0; transition: var(--transition); }
.service-item:hover .service-icon { background: var(--gold); color: var(--white); }

/* BRANCHES */
.branches { padding: 6rem 0; }
.branches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.branch-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 2px solid var(--gray-200); }
.branch-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--navy); }
.branch-card.transport:hover { border-color: var(--gold); }
.branch-img { position: relative; height: 180px; overflow: hidden; }
.branch-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.branch-card:hover .branch-img img { transform: scale(1.08); }
.branch-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,18,45,0.6) 0%, transparent 60%); }
.branch-info { padding: 1.5rem; }
.branch-company { font-size: 0.75rem; font-weight: 700; color: var(--navy); background: rgba(27,42,94,0.08); padding: 0.25rem 0.7rem; border-radius: 100px; display: inline-block; margin-bottom: 0.6rem; }
.golden-tag { color: var(--gold-dark); background: rgba(201,146,42,0.1); }
.branch-info h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.branch-contacts { margin-bottom: 1rem; }
.branch-contact {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 0; border-bottom: 1px dashed var(--gray-200);
  font-size: 0.85rem; color: #3d4566;
}
.branch-contact:last-child { border-bottom: none; }
.branch-contact i { color: var(--gold); width: 16px; }
.branch-contact span[dir="ltr"] { font-family: var(--font-num); font-weight: 600; color: var(--navy); }
.contact-type { font-size: 0.75rem; color: var(--gray-400); margin-right: auto; }
.branch-actions { display: flex; gap: 0.6rem; }
.btn-branch-wa, .btn-branch-call {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.6rem; border-radius: 8px; font-weight: 700; font-size: 0.85rem;
  transition: var(--transition);
}
.btn-branch-wa { background: #25D366; color: var(--white); }
.btn-branch-wa:hover { background: #1da851; transform: translateY(-1px); }
.btn-branch-wa.golden-wa { background: var(--gold); }
.btn-branch-wa.golden-wa:hover { background: var(--gold-dark); }
.btn-branch-call { background: var(--navy); color: var(--white); }
.btn-branch-call:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* CTA BANNER */
.cta-banner { position: relative; min-height: 400px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,18,45,0.90) 0%, rgba(27,42,94,0.80) 100%); }
.cta-content { position: relative; z-index: 2; color: var(--white); padding: 4rem 2rem; max-width: 700px; }
.cta-content h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin: 1rem 0; }
.cta-content p { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 2rem; line-height: 1.8; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* CONTACT */
.contact { padding: 6rem 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-company-title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; display: flex; align-items: center; }
.contact-item { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.5rem; }
.contact-icon { width: 52px; height: 52px; background: rgba(201,146,42,0.15); border: 1px solid rgba(201,146,42,0.3); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gold); flex-shrink: 0; }
.contact-label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0.2rem; }
.contact-value { font-size: 1rem; font-weight: 600; color: var(--white); }
.contact-value:hover { color: var(--gold); }
.social-links { display: flex; gap: 0.75rem; margin-top: 2rem; }
.social-link { width: 44px; height: 44px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: rgba(255,255,255,0.7); transition: var(--transition); }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-3px); }
.contact-form-wrap { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 0.8rem 1rem; color: var(--white); font-size: 0.95rem; transition: var(--transition); outline: none; direction: rtl; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); box-shadow: 0 0 0 3px rgba(201,146,42,0.15); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* FOOTER */
.footer { background: var(--navy-dark); }
.footer-top { padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr; gap: 1.5rem; min-width: 0; }
.footer-logo { height: 110px; width: auto; margin-bottom: 1rem; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 0.3rem; }
.footer-tagline { color: var(--gold) !important; font-weight: 600; margin-bottom: 1.5rem !important; }
.footer-links h4, .footer-contact h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 1.2rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--gold); display: inline-block; }
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition); display: flex; align-items: center; gap: 0.4rem; }
.footer-links ul li a::before { content: '›'; color: var(--gold); font-size: 1.1rem; }
.footer-links ul li a:hover { color: var(--gold); padding-right: 4px; }
.footer-contact-item { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.9rem; font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.footer-contact-item i { color: var(--gold); width: 16px; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 2rem; left: 2rem; width: 58px; height: 58px; background: #25D366; color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.45); z-index: 999; transition: var(--transition); animation: pulse 3s infinite; }
.whatsapp-float:hover { transform: scale(1.1); animation: none; }
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 46px; height: 46px; background: var(--navy); color: var(--white); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; box-shadow: var(--shadow-md); z-index: 999; opacity: 0; pointer-events: none; transition: var(--transition); border: 1px solid rgba(255,255,255,0.1); }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--gold); transform: translateY(-3px); }

/* ANIMATIONS */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(201,146,42,0.4); } 50% { box-shadow: 0 0 0 10px rgba(201,146,42,0); } }
@keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.form-success { text-align: center; padding: 3rem 2rem; color: var(--white); }
.form-success .success-icon { font-size: 3rem; color: var(--gold); margin-bottom: 1rem; }
.form-success h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-success p { color: rgba(255,255,255,0.65); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { display: none; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr; gap: 1rem; }
  .footer-logo { height: 80px; }
  .footer-links h4, .footer-contact h4 { font-size: 0.9rem; }
  .footer-links ul li a, .footer-contact-item { font-size: 0.82rem; }
}
@media (max-width: 900px) {
  .companies-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 0.5rem 1.5rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background: var(--navy-dark); flex-direction: column; align-items: flex-start; padding: 5rem 2rem 2rem; gap: 0.5rem; box-shadow: -4px 0 24px rgba(0,0,0,0.3); z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.1rem; padding: 0.7rem 1rem; width: 100%; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  /* Hero mobile */
  .hero { min-height: 100svh; }
  .hero-inner { padding: 90px 1.2rem 2rem; min-height: 100svh; }
  .hero-companies-bar { flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.2rem; }
  .hcb-item span { display: none; }
  .hcb-item { padding: 0.4rem 0.8rem; }
  .hcb-item img { height: 28px; }
  .hero-center { padding: 0.5rem 0 1.5rem; }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .stats-container { gap: 0; }
  .stat-item { padding: 0.5rem 1rem; }
  .stat-divider { height: 40px; }
  .branches-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .about, .companies, .services, .branches, .contact { padding: 4rem 0; }
  .company-features { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .stats-container { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { width: 50%; padding: 1rem; }
  .hero-content { padding: 0 1rem; padding-top: 90px; }
  .contact-form-wrap { padding: 1.5rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
