/* ==========================================================================
   Patron — Security Staffing & Careers, Kolkata
   Design tokens — derived from the crest: red / navy / gold
   ========================================================================== */

:root {
  --navy-950: #0a1b40;
  --navy-900: #0f2251;
  --navy-700: #1c3a75;
  --navy-500: #2f56a0;
  --red-700: #a30206;
  --red-600: #c70307;
  --red-500: #dd2b2f;
  --gold-700: #b9861e;
  --gold-600: #d9a62e;
  --gold-400: #f0c665;
  --gold-100: #fbf0d6;

  --paper: #faf9f5;
  --paper-raised: #ffffff;
  --paper-sunk: #f2efe6;
  --ink: #171a1f;
  --ink-soft: #4a5160;
  --ink-faint: #7c8494;
  --line: #e4e0d4;
  --line-strong: #d3ccb9;

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --container: 1200px;
  --radius: 3px;
  --shadow-card: 0 1px 2px rgba(15, 34, 81, 0.05), 0 10px 28px rgba(15, 34, 81, 0.08);
  --shadow-lift: 0 18px 40px rgba(15, 34, 81, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  color: var(--red-600);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold-600);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold-400); }
.eyebrow.on-dark::before { background: var(--gold-400); }

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.02;
  margin: 0;
  font-weight: 600;
}

h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  color: var(--navy-900);
}

p { margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible {
  outline: 3px solid var(--gold-600);
  outline-offset: 2px;
}

.btn-gold {
  background: var(--gold-600);
  color: var(--navy-950);
  box-shadow: 0 4px 0 var(--gold-700);
}
.btn-gold:hover { background: var(--gold-400); }
.btn-gold:active { box-shadow: 0 2px 0 var(--gold-700); }

.btn-red {
  background: var(--red-600);
  color: #fff;
  box-shadow: 0 4px 0 var(--red-700);
}
.btn-red:hover { background: var(--red-500); }
.btn-red:active { box-shadow: 0 2px 0 var(--red-700); }

.btn-navy {
  background: var(--navy-900);
  color: #fff;
  box-shadow: 0 4px 0 var(--navy-950);
}
.btn-navy:hover { background: var(--navy-700); }
.btn-navy:active { box-shadow: 0 2px 0 var(--navy-950); }

.btn-outline {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--navy-900);
}
.btn-outline:hover { border-color: var(--navy-900); background: rgba(15,34,81,0.04); }

.btn-outline-light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.18); }

.btn-wa {
  background: #1fa855;
  color: #fff;
  box-shadow: 0 4px 0 #157a3d;
}
.btn-wa:hover { background: #24bd61; }
.btn-wa:active { box-shadow: 0 2px 0 #157a3d; }

.btn-block { width: 100%; }
.btn-sm { padding: 11px 18px; font-size: 13.5px; }

/* ==========================================================================
   Shield signature element
   ========================================================================== */

.shield-clip {
  clip-path: polygon(0% 0%, 100% 0%, 100% 62%, 50% 100%, 0% 62%);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 249, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { height: 42px; width: auto; }
.brand-word {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--navy-900);
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s ease;
}

.header-nav a:hover {
  color: var(--navy-900);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  text-decoration: none;
  font-weight: 700;
  font-size: 13.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
}
.header-call svg { flex-shrink: 0; color: var(--red-600); }

@media (max-width: 980px) {
  .header-nav { display: none; }
}

@media (max-width: 720px) {
  .header-call span { display: none; }
  .brand-word { display: none; }
}

/* ==========================================================================
   Hero — video background
   ========================================================================== */

.hero {
  position: relative;
  height: 600px;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,27,64,0.78) 0%, rgba(10,27,64,0.72) 45%, rgba(10,27,64,0.92) 100%);
}

.hero-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 100px 24px;
  max-width: 760px;
  margin: 0 auto;
}

.hero-inner h1 {
  font-size: clamp(32px, 5vw, 52px);
  color: #fff;
}
.hero-inner h1 em {
  font-style: normal;
  color: var(--gold-400);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll-cue svg { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (max-width: 640px) {
  .hero { height: auto; min-height: 600px; }
  .hero-inner { padding: 100px 20px; gap: 20px; }
}

/* ==========================================================================
   Trust strip
   ========================================================================== */

.trust-strip {
  background: var(--paper-raised);
  border-bottom: 1px solid var(--line);
}
.trust-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  padding: 20px 24px;
  align-items: center;
  justify-content: space-between;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-item svg { color: var(--red-600); flex-shrink: 0; }

/* ==========================================================================
   Section shell
   ========================================================================== */

section { padding: 92px 0; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
  max-width: 640px;
}
.section-head.center {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  align-items: center;
}
.section-head.center .eyebrow { justify-content: center; }

.section-alt {
  background: var(--paper-raised);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-dark {
  background: var(--navy-900);
  color: #fff;
}
.section-dark .section-head p { color: rgba(255,255,255,0.75); }
.section-dark h2 { color: #fff; }

/* ==========================================================================
   Statistics
   ========================================================================== */

.stats-band {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 26px);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.stat-card {
  padding: 8px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.stat-card:last-child { border-right: none; }

.stat-shield {
  width: 52px;
  height: 58px;
  background: linear-gradient(135deg, var(--red-600) 0%, var(--red-600) 48%, var(--navy-700) 52%, var(--navy-700) 100%);
  border: 2px solid var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.stat-shield svg { color: var(--gold-400); }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 42px);
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 760px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 28px 20px; }
  .stat-card:nth-child(2n) { border-right: none; }
}

/* ==========================================================================
   About
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  border-radius: var(--radius);
  overflow: hidden;
}
.about-visual img {
  width: 46%;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35));
}
.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(199,3,7,0.16), transparent 55%);
}

.about-body p {
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.about-points li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
  align-items: flex-start;
}
.about-points svg { color: var(--red-600); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-visual { height: 400px; width: 100%; }
}

/* ==========================================================================
   Capability grid
   ========================================================================== */

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.cap-card {
  background: var(--paper-raised);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cap-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  color: var(--gold-400);
  border-radius: var(--radius);
}

.cap-card h3 {
  font-family: var(--font-body);
  text-transform: none;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: 0;
}

.cap-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .cap-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   How it works
   ========================================================================== */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.step { padding: 0 24px 0 0; position: relative; }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 0;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.18);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold-400);
  border: 1px solid rgba(255,255,255,0.3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-weight: 700;
}
.step h3 {
  font-family: var(--font-body);
  text-transform: none;
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .step:not(:last-child)::after { display: none; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Hire / Apply — dual forms
   ========================================================================== */

.dual-forms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.form-panel {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  overflow: hidden;
}

.form-panel-head {
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.form-panel-head.hire-head { background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); }
.form-panel-head.apply-head { background: linear-gradient(120deg, var(--red-700), var(--red-600)); }

.form-panel-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.form-panel-head h3 {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.02em;
  margin: 0;
}
.form-panel-head p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  margin-top: 2px;
}

.form-panel-body {
  padding: 28px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
}
.field .req { color: var(--red-600); }
.field .opt {
  font-weight: 500;
  color: var(--ink-faint);
  text-transform: none;
  font-size: 12px;
}

.field input,
.field select,
.field textarea {
  border: 1.5px solid var(--line-strong);
  background: var(--paper);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  border-radius: var(--radius);
  width: 100%;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 80px; }

.field input[type="file"] {
  padding: 9px 12px;
  font-size: 13px;
  cursor: pointer;
}

.field-hint {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.5;
}

.field-error {
  font-size: 12.5px;
  color: var(--red-600);
  min-height: 15px;
  display: none;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--red-600);
}
.field.has-error .field-error { display: block; }

.form-note {
  font-size: 12.5px;
  color: var(--ink-faint);
  line-height: 1.5;
  background: var(--paper-sunk);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.form-note strong { color: var(--ink-soft); }

@media (max-width: 980px) {
  .dual-forms { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.slider-arrow {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  color: var(--ink);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.slider-arrow:hover {
  background: var(--line);
  color: var(--navy-700);
}
.slider-arrow:focus-visible {
  outline: 2px solid var(--navy-500);
}
.prev-arrow {
  margin-right: -22px;
  box-shadow: 4px 0 10px rgba(0,0,0,0.05);
}
.next-arrow {
  margin-left: -22px;
  box-shadow: -4px 0 10px rgba(0,0,0,0.05);
}

.testimonials-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 30px 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  scroll-behavior: smooth;
  width: 100%;
}

.testimonials-slider::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

@media (max-width: 640px) {
  .slider-arrow { display: none; }
  .testimonials-slider { padding: 10px 0 30px; }
}

.testimonial-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-style: italic;
  position: relative;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 14.5px;
  color: var(--navy-900);
}

.testimonial-author span {
  font-size: 12.5px;
  color: var(--ink-faint);
}

@media (max-width: 640px) {
  .testimonial-card {
    flex: 0 0 280px;
  }
}

/* ==========================================================================
   Partners
   ========================================================================== */

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
  gap: 80px;
  padding-left: 80px;
}
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 40px)); }
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-logo {
  background: var(--line);
  height: 48px;
  border-radius: 4px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.partner-logo:hover .mock-logo { opacity: 0.8; }

.mock-1 { width: 140px; border-radius: 24px; }
.mock-2 { width: 110px; }
.mock-3 { width: 48px; border-radius: 50%; }
.mock-4 { width: 160px; height: 32px; }
.mock-5 { width: 120px; }
.mock-6 { width: 90px; height: 48px; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: linear-gradient(120deg, var(--navy-900), var(--red-700));
  color: #fff;
  padding: 64px 0;
}
.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: clamp(24px, 3.4vw, 36px); max-width: 560px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 34px; }
.footer-brand span {
  font-family: var(--font-display);
  font-size: 19px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a,
.footer-col button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  text-align: left;
}
.footer-col a:hover,
.footer-col button:hover { color: #fff; }

.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1fa855;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(15, 34, 81, 0.3);
  transition: transform 0.15s ease;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float:focus-visible { outline: 3px solid var(--gold-600); outline-offset: 3px; }

/* ==========================================================================
   Modal
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 45, 0.55);
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 6vh 20px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }

.modal {
  background: #fff;
  max-width: 720px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modal-in 0.18s ease;
  position: relative;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 1000;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.modal-head h2 {
  font-size: 21px;
  color: var(--navy-900);
}
.modal-close {
  background: var(--paper);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-soft);
  flex-shrink: 0;
}
.modal-close:hover { background: var(--line); color: var(--ink); }
.modal-close:focus-visible { outline: 2px solid var(--navy-700); }

.modal-body {
  padding: 8px 28px 32px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.modal-body h3 {
  font-family: var(--font-body);
  text-transform: none;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: 0;
  margin: 26px 0 8px;
}
.modal-body h3:first-child { margin-top: 20px; }
.modal-body p { margin-bottom: 10px; }
.modal-body ul { margin: 10px 0; padding-left: 20px; }
.modal-body li { margin-bottom: 6px; }
.modal-body .modal-updated {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Toast
   ========================================================================== */

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 16px);
  background: var(--navy-950);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast svg { color: #1fa855; flex-shrink: 0; }

/* ==========================================================================
   Animations & Interactions
   ========================================================================== */

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hover-lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

/* ==========================================================================
   Utility
   ========================================================================== */

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

:focus-visible { outline: 3px solid var(--gold-600); outline-offset: 2px; }
