/* ============================================================
   DPS OMAN — Global Stylesheet
   Light Golden Theme · Mobile-first, fully responsive
   ============================================================ */

/* ---------- CSS Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --navy: #1B3A5C;
  --navy-dark: #142C46;
  --navy-light: #24486E;
  --gold: #C9A24A;
  --gold-bright: #E0B94F;
  --gold-soft: #F5E6C0;
  --green: #2ECC71;

  /* Dark golden section palette */
  --gold-dark: #3A2E14;
  --gold-dark-2: #4A3A18;
  --gold-heading: #F0D89A;
  --gold-cream: #F5EBD6;
  --gold-beige: #D9C9A8;

  /* Backgrounds */
  --bg: #FDF8EE;
  --bg-alt: #FAF0DC;
  --bg-card: #FFFFFF;

  /* Text */
  --text: #2C3E50;
  --muted: #7A6A4F;
  --border: #EFE2C8;

  --white: #FFFFFF;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(120, 90, 20, .07);
  --shadow-md: 0 6px 24px rgba(120, 90, 20, .10);
  --shadow-lg: 0 16px 48px rgba(120, 90, 20, .16);

  --radius: 10px;
  --radius-lg: 16px;
  --container: 1200px;
  --header-h: 88px;
  --transition: .25s ease;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; color: var(--text); }

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.narrow { max-width: 820px; }
.section { padding: clamp(56px, 8vw, 96px) 0; background: var(--bg); }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-dark-2) 100%);
  color: var(--gold-cream);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--gold-heading); }
.section-dark p { color: var(--gold-beige); }

.center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* ---------- Grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201, 162, 74, .35);
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 74, .45);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-ghost-light {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}
.btn-ghost-light:hover { background: #fff; color: var(--navy); }

.link-arrow {
  display: inline-block;
  font-weight: 600;
  color: var(--gold);
  font-size: .9rem;
  transition: transform var(--transition);
}
.link-arrow:hover { transform: translateX(4px); color: var(--gold-bright); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 248, 238, .97);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}

/* ---------- Logo (image + brand text) ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  background: #FFFFFF;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(120, 90, 20, .12);
  transition: transform var(--transition), box-shadow var(--transition);
}
.logo:hover .logo-img {
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(201, 162, 74, .40);
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -.01em;
}
.logo-text small {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .02em;
  margin-top: 4px;
  text-transform: uppercase;
}

/* ---------- Navigation ---------- */
.nav ul { display: flex; align-items: center; gap: 4px; }
.nav a {
  display: block;
  padding: 10px 14px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: all var(--transition);
}
.nav a:hover { color: var(--navy); background: var(--gold-soft); }
.nav a.active { color: var(--gold); font-weight: 600; }

.nav .nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 11px 22px;
  margin-left: 8px;
  font-weight: 600;
}
.nav .nav-cta:hover { background: var(--gold); color: #fff; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  display: block !important;
  flex-direction: column;
  max-height: 70vh;
  overflow-y: auto;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  padding: 10px 14px;
  font-size: .88rem;
  border-radius: 6px;
}
.dropdown li a:hover { background: var(--gold-soft); color: var(--navy); }

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--gold-soft); }
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  color: #fff;
  min-height: clamp(560px, 88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-inner { padding: 80px 20px; max-width: 900px; }
.hero h1 { color: #fff; margin: 20px 0; }
.hero p {
  color: #F5EBD6;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 640px;
  margin-bottom: 32px;
}
.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(224, 185, 79, .18);
  border: 1px solid rgba(224, 185, 79, .55);
  color: var(--gold-bright);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
}
.hero-stats span {
  font-size: .85rem;
  color: #E5D9BD;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 6px;
}

/* ---------- Page Hero ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--gold-dark) 0%, #5C4820 100%);
  background-size: cover;
  background-position: center;
  color: var(--gold-cream);
  padding: clamp(64px, 12vw, 130px) 0 clamp(56px, 10vw, 100px);
  text-align: center;
}
.page-hero h1 { color: var(--gold-heading); margin-bottom: 12px; }
.page-hero p {
  color: var(--gold-beige);
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Section Head ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head.light h2 { color: var(--gold-heading); }
.section-head.light p { color: var(--gold-beige); }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); font-size: 1.02rem; }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--bg-alt);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-label {
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
  font-weight: 600;
}
.marquee { overflow: hidden; position: relative; }
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-alt), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg-alt), transparent); }
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--muted);
  opacity: .55;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gold-soft);
  border-radius: 12px;
}
.card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card p { color: var(--muted); font-size: .94rem; flex-grow: 1; margin-bottom: 18px; }

/* ---------- Features ---------- */
.feature {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(224, 185, 79, .25);
  transition: all var(--transition);
}
.section:not(.section-dark) .feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--gold-bright);
  background: rgba(224, 185, 79, .08);
}
.feature-icon {
  font-size: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: #fff;
  border-radius: 12px;
  margin-bottom: 18px;
}
.section-dark .feature-icon {
  background: var(--gold-bright);
  color: #3A2E14;
  box-shadow: 0 6px 20px rgba(224, 185, 79, .35);
}
.feature h3 { margin-bottom: 8px; font-size: 1.1rem; }
.section-dark .feature h3 { color: var(--gold-heading); }
.section-dark .feature p { color: var(--gold-beige); }
.feature p { font-size: .92rem; margin: 0; }

/* ---------- Project Cards ---------- */
.project-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.project-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.project-card:hover .project-img { transform: scale(1.06); }
.project-body { padding: 24px 26px 28px; }
.project-body h3 { margin-bottom: 8px; }
.project-body p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- Quote ---------- */
.quote {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.quote p { font-size: 1.02rem; font-style: italic; color: var(--text); margin: 0; flex-grow: 1; }
.quote footer { font-size: .88rem; color: var(--muted); font-weight: 600; }
.stars { color: var(--gold); letter-spacing: 3px; font-size: 1.1rem; }

/* ---------- Two Column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.img-frame {
  min-height: 380px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

/* ---------- Team ---------- */
.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  padding-bottom: 24px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.team-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
}
.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card .role {
  color: var(--gold);
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: 10px;
}
.team-card p a { font-size: .9rem; color: var(--muted); }
.team-card p a:hover { color: var(--gold); }

/* ---------- VM Cards ---------- */
.vm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.vm-card h2 { font-size: 1.5rem; margin-bottom: 14px; }

/* ---------- Values ---------- */
.value { text-align: center; padding: 20px; }
.value .feature-icon { margin: 0 auto 14px; }
.value h3 { color: #fff; font-size: 1rem; }
.section-dark .value h3 { color: var(--gold-heading); }

/* ---------- Checklist ---------- */
.checklist { margin: 24px 0; }
.checklist li {
  position: relative;
  padding: 10px 0 10px 34px;
  color: var(--text);
  font-size: .98rem;
  border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
}

/* ---------- Process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.step span {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ---------- Job Card ---------- */
.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.job-card h3 { margin-bottom: 6px; }
.job-card .role {
  color: var(--gold);
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 12px;
}
.job-card p { color: var(--muted); font-size: .93rem; }

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--gold-dark) 0%, #5C4820 100%);
  color: var(--gold-cream);
  padding: clamp(48px, 7vw, 72px) 0;
  border-top: 1px solid rgba(224, 185, 79, .25);
  border-bottom: 1px solid rgba(224, 185, 79, .25);
}
.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-inner h2 { color: var(--gold-heading); margin-bottom: 6px; }
.cta-inner p { color: var(--gold-beige); margin: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  background: var(--navy);
  color: #DCE6F0;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
}
.contact-info h3 { color: #fff; margin-bottom: 20px; }
.contact-info ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: .95rem;
}
.contact-info ul li:last-child { border-bottom: none; }
.contact-info a { color: var(--gold-bright); }
.contact-info a:hover { color: #fff; }
.contact-info h4 {
  color: var(--gold-bright);
  margin: 24px 0 12px;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-info .person { padding: 10px 0; }
.contact-info .person strong { color: #fff; display: block; font-size: .95rem; }
.contact-info .person span { font-size: .85rem; color: #E5D9BD; }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: #fff;
  transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 74, .18);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .78rem; color: var(--muted); margin-top: 12px; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  margin-top: 56px;
  box-shadow: var(--shadow-md);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0F2238;
  color: #C6D4E3;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.site-footer h4 {
  color: #fff;
  font-size: .95rem;
  letter-spacing: .04em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.site-footer p { color: #C6D4E3; font-size: .92rem; }
.site-footer .small { font-size: .8rem; color: var(--gold-bright); font-weight: 600; margin-top: 12px; }
.site-footer ul li { padding: 5px 0; }
.site-footer ul li a { color: #C6D4E3; font-size: .92rem; }
.site-footer ul li a:hover { color: var(--gold-bright); }

/* Footer logo tweaks */
.logo-footer { margin-bottom: 20px; }
.logo-footer .logo-img {
  background: #FFFFFF;
  height: 60px;
  width: 60px;
}
.logo-footer .logo-text { color: #FFFFFF; }
.logo-footer .logo-text small { color: #C6D4E3; }

.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  color: #C6D4E3;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all var(--transition);
}
.socials a:hover { background: var(--gold); color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
.footer-bottom p { margin: 0; font-size: .85rem; color: #8199B3; }
.footer-bottom a { color: #8199B3; }
.footer-bottom a:hover { color: var(--gold-bright); }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  z-index: 999;
  transition: all var(--transition);
  animation: pulse 2.4s infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  color: #fff;
  background: #1EBE5A;
}
@keyframes pulse {
  0% { box-shadow: 0 8px 24px rgba(37, 211, 102, .45); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, .45); }
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 992px)
   ============================================================ */
@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .img-frame { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --header-h: 76px; }

  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    padding: 24px 20px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s ease;
    border-top: 1px solid var(--border);
    z-index: 999;
  }
  .nav.open { transform: translateX(0); }
  .nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .nav a {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 8px;
  }
  .nav .nav-cta {
    margin: 16px 0 0;
    text-align: center;
    padding: 16px;
    font-size: 1rem;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg-alt);
    padding: 6px;
    margin: 6px 0 6px 12px;
    border-radius: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    display: block !important;
  }
  .has-dropdown.open .dropdown { max-height: 600px; }
  .dropdown li a { padding: 10px 14px; font-size: .92rem; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 20px; }

  /* Header / logo on mobile */
  .logo-img { height: 44px; width: 44px; }
  .logo-text { font-size: 1.05rem; }
  .logo-text small { font-size: .6rem; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-inner { padding: 64px 20px 56px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-stats { gap: 24px; padding-top: 24px; }
  .hero-stats li { flex: 1 1 40%; }

  /* Section spacing */
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }

  /* CTA band */
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { width: 100%; flex-direction: column; }
  .cta-actions .btn { width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .logo-footer .logo-img { height: 52px; width: 52px; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 28px 22px; }

  /* WhatsApp FAB */
  .whatsapp-fab { width: 52px; height: 52px; font-size: 1.4rem; bottom: 18px; right: 18px; }
}

/* ============================================================
   RESPONSIVE — Small Mobile (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  :root { --header-h: 68px; }

  .container { padding: 0 16px; }
  .hero-stats { flex-direction: column; gap: 16px; }

  .logo-text small { display: none; }
  .logo-img { height: 40px; width: 40px; padding: 3px; }
  .logo-text { font-size: 1rem; }

  .btn { padding: 12px 22px; font-size: .9rem; }
  .card { padding: 24px 20px; }
  .feature { padding: 22px 18px; }
}