:root {
  --bg: #f6f4ef;
  --bg-2: #ffffff;
  --panel: #ffffff;
  --navy: #1e3a5f;
  --gold: #c49a2a;
  --gold-2: #e0b84a;
  --blue: #2f8fbe;
  --text: #1c2430;
  --muted: #5b6573;
  --line: #e4dcc8;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(30, 58, 95, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: Outfit, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold);
  color: #111;
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: #9a7518;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: Outfit, system-ui, sans-serif;
  line-height: 1.2;
  margin: 0 0 0.7rem;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.2rem; }

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.55rem 6vw;
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
}

.topbar p { margin: 0; }

.topbar-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-social a:hover,
.menu a:hover,
.brand:hover {
  color: var(--gold-2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 6vw;
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  z-index: 20;
}

.site-header {
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand img,
.hero-logo,
.footer-brand img {
  background: #fff;
  object-fit: contain;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 3px;
}

.brand strong {
  display: block;
  font-size: 1.25rem;
  color: var(--navy);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.menu {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  align-items: center;
}

.nav-call,
.btn-apply-nav {
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 100%);
  color: #1a1406 !important;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 0 0 3px rgba(196, 154, 42, 0.22);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--navy);
}

.hero {
  background:
    linear-gradient(180deg, #fff 0%, #f6f4ef 100%);
  text-align: center;
  padding: 3.2rem 6vw 3.6rem;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.hero-logo {
  width: 168px;
  height: 168px;
  margin: 0 auto 1rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 10px;
  box-shadow: var(--shadow);
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 40rem;
  margin: 0 auto 1.6rem;
}

.hero-actions,
.checks,
.contact-list {
  list-style: none;
  padding: 0;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: #1a1406;
}

.btn-apply {
  background: linear-gradient(180deg, #e8c45c 0%, var(--gold) 55%, #a87e18 100%);
  color: #1a1406;
  gap: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 4px rgba(196, 154, 42, 0.22),
    0 10px 22px rgba(196, 154, 42, 0.35);
  animation: apply-pulse 2.2s ease-in-out infinite;
}

.btn-apply svg {
  flex-shrink: 0;
}

.btn-apply:hover,
.btn-apply-nav:hover {
  transform: translateY(-2px);
  color: #1a1406 !important;
  box-shadow:
    0 0 0 5px rgba(196, 154, 42, 0.28),
    0 14px 28px rgba(196, 154, 42, 0.42);
}

@keyframes apply-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(196, 154, 42, 0.2),
      0 10px 22px rgba(196, 154, 42, 0.32);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(196, 154, 42, 0.1),
      0 12px 26px rgba(196, 154, 42, 0.45);
  }
}

.btn-ghost {
  border-color: var(--navy);
  color: var(--navy);
  background: #fff;
}

.btn:hover {
  transform: translateY(-1px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0 6vw 2.2rem;
}

.stat {
  background: #fff;
  padding: 1.3rem 1rem;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--navy);
}

.about,
.services,
.placements,
.contact {
  padding: 4.2rem 6vw;
  scroll-margin-top: 5.5rem;
}

.about,
.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.about {
  background: #fff;
}

.checks li {
  position: relative;
  padding-left: 1.4rem;
  margin: 0.5rem 0;
  color: var(--muted);
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}

.about-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top;
}

.about-card figcaption {
  padding: 0.9rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.owner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.6rem;
  align-items: center;
  padding: 2.4rem 6vw 3.2rem;
  scroll-margin-top: 5.5rem;
}

.owner img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.owner h2 {
  margin-bottom: 0.35rem;
}

.owner p:last-child {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
}

.apply-banner {
  margin: 0 6vw 1.2rem;
  padding: 2.2rem 2rem;
  background:
    radial-gradient(circle at right top, rgba(224, 184, 74, 0.28), transparent 42%),
    linear-gradient(135deg, #16314f 0%, var(--navy) 55%, #12263d 100%);
  color: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.apply-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.apply-banner .eyebrow {
  color: var(--gold-2);
}

.apply-banner h2 {
  color: #fff;
  margin-bottom: 0.4rem;
}

.apply-banner p:last-of-type {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
}

.apply-banner .btn-apply {
  flex-shrink: 0;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-head p:last-child {
  color: var(--muted);
  margin: 0;
}

.service-grid,
.quote-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.service-card,
.quote-grid blockquote,
.social-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center;
}

#security-guard img,
.about-card img {
  object-position: top center;
}

.partner-art {
  height: 170px;
  display: grid;
  place-content: center;
  gap: 0.55rem;
  background: #f3f7fb;
  padding: 1rem;
}

.partner {
  display: block;
  text-align: center;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  background: #fff;
}

.partner.amazon { color: #111; }
.partner.flipkart { color: #2874f0; }
.partner.blinkit { color: #0d7a32; background: #ffe14a; }

.service-card div,
.quote-grid blockquote {
  padding: 1.1rem 1.15rem 1.25rem;
}

.service-card p,
.quote-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.placements {
  background: #fff;
}

.quote-grid {
  grid-template-columns: repeat(3, 1fr);
}

.quote-grid blockquote {
  margin: 0;
}

.quote-grid footer {
  margin-top: 1.1rem;
}

.quote-grid strong {
  display: block;
  color: var(--navy);
}

.quote-grid span {
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-list li {
  display: flex;
  gap: 0.8rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.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;
}

.topbar-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.icon-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.6rem;
  color: var(--navy);
}

.icon-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.icon-btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.icon-btn:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
}

.icon-btn.call { color: #9a7518; }
.icon-btn.whatsapp { color: #128c7e; }
.icon-btn.email { color: var(--blue); }
.icon-btn.instagram { color: #c13584; }
.icon-btn.facebook { color: #1877f2; }

.contact-values {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.address-link,
.contact-values a,
.footer-brand a {
  color: var(--navy);
  min-width: 0;
  font-weight: 600;
}

.address-link:hover,
.contact-values a:hover,
.footer-brand a:hover {
  color: #9a7518;
  text-decoration: underline;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 6vw 2rem;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 3px;
}

.footer-brand strong {
  display: block;
  color: var(--navy);
}

.footer-brand p,
.copyright {
  margin: 0;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .stats,
  .service-grid,
  .quote-grid,
  .about,
  .contact {
    grid-template-columns: 1fr 1fr;
  }

  .apply-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .topbar { display: none; }

  .menu-btn { display: flex; }

  .menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 6vw 1.2rem;
    border-bottom: 1px solid var(--line);
  }

  .menu.open { display: flex; }

  .nav-call,
  .btn-apply-nav { text-align: center; }

  .apply-banner {
    margin: 0 5vw 1rem;
    padding: 1.7rem 1.3rem;
  }

  .apply-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats,
  .service-grid,
  .quote-grid,
  .about,
  .contact,
  .owner,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .owner img {
    max-width: 240px;
    height: 280px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-logo {
    width: 128px;
    height: 128px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-apply {
    animation: none;
  }
}
