/* =========================================================
   GARUDA WATCH — Security & Housekeeping Services
   Design tokens: Sentinel navy + gold, condensed display type
   ========================================================= */

:root {
  /* Color */
  --navy-deep:   #0A1424;
  --navy:        #10203A;
  --navy-light:  #1D3A5F;
  --gold:        #C89B3C;
  --gold-light:  #E3C170;
  --gold-dim:    #8A6E2E;
  --off-white:   #F7F5EF;
  --paper:       #FFFFFF;
  --ink:         #17202E;
  --slate:       #5B6472;
  --line:        #E4E0D6;
  --success:     #2E7D5B;
  --danger:      #B23A3A;

  /* Type */
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  /* Shape */
  --shield-cut: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  font-size: 1.02rem;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, .display-font {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--navy-deep);
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold-dim); }

::selection { background: var(--gold-light); color: var(--navy-deep); }

.text-gold { color: var(--gold) !important; }
.bg-navy { background-color: var(--navy) !important; }
.bg-navy-deep { background-color: var(--navy-deep) !important; }

/* -------------------- Eyebrow / divider (brand motif) -------------------- */
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.eyebrow.align-start { justify-content: flex-start; }
.eyebrow::before, .eyebrow::after {
  content: "";
  height: 1px;
  width: 42px;
  background: var(--gold-dim);
  display: inline-block;
}
.eyebrow.align-start::before { display: none; }
.eyebrow-diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.eyebrow-line-only {
  display:flex; align-items:center; gap:.9rem;
}
.eyebrow-line-only::before, .eyebrow-line-only::after {
  content:""; height:1px; flex:1; background: rgba(200,155,60,0.35);
}

/* -------------------- Navbar -------------------- */
.gw-navbar {
  background: rgba(255, 255, 255, 0.98);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(200,155,60,0.3);
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}
.gw-navbar .navbar-brand img { height: 55px; width: auto; }
.gw-navbar .navbar-brand small {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.22em;
  font-size: 0.62rem;
  color: var(--gold-dim);
  text-transform: uppercase;
}
.gw-navbar .nav-link {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--navy) !important;
  padding: 0.55rem 1rem !important;
  position: relative;
}
.gw-navbar .nav-link:hover,
.gw-navbar .nav-link.active { color: var(--gold-dim) !important; }
.gw-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--gold);
}
.gw-navbar .btn-nav-cta {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  padding: 0.55rem 1.3rem;
  transition: background 0.2s ease;
}
.gw-navbar .btn-nav-cta:hover { background: var(--gold-light); }
.navbar-toggler {
  border-color: rgba(16,32,58,0.35);
}
.navbar-toggler-icon {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(16,32,58,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Services dropdown */
.gw-navbar .dropdown-menu {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.4rem 0;
  margin-top: 0.4rem;
  box-shadow: 0 12px 28px rgba(16,32,58,0.14);
}
.gw-navbar .dropdown-item {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--navy);
  padding: 0.6rem 1.2rem;
}
.gw-navbar .dropdown-item:hover,
.gw-navbar .dropdown-item:focus {
  background: var(--off-white);
  color: var(--gold-dim);
}
.gw-navbar .dropdown-item.active {
  background: transparent;
  color: var(--gold-dim);
}
.gw-navbar .nav-link.dropdown-toggle::after {
  margin-left: 0.4rem;
  vertical-align: 0.12em;
}
@media (max-width: 991.98px) {
  .gw-navbar .dropdown-menu { background: transparent; border: none; margin-top: 0; box-shadow: none; }
}

/* FAQ accordion (service pages) */
.gw-accordion .accordion-item {
  background: transparent;
  border: 1px solid var(--line);
  margin-bottom: 0.75rem;
}
.gw-accordion .accordion-button {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy-deep);
  background: var(--paper);
  border-radius: 0 !important;
  box-shadow: none;
}
.gw-accordion .accordion-button:not(.collapsed) {
  color: var(--gold-dim);
  background: var(--off-white);
}
.gw-accordion .accordion-button:focus { box-shadow: none; border-color: var(--gold); }
.gw-accordion .accordion-button::after { filter: sepia(1) saturate(3) hue-rotate(0deg); }
.gw-accordion .accordion-body { color: var(--slate); font-size: 0.94rem; }

/* -------------------- Buttons -------------------- */
.btn-gw-gold {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy-deep);
  padding: 0.75rem 1.9rem;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.btn-gw-gold:hover { background: transparent; color: var(--gold-light); border-color: var(--gold-light); }

.btn-gw-outline {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 0.75rem 1.9rem;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.btn-gw-outline:hover { background: rgba(255,255,255,0.1); color: var(--gold-light); border-color: var(--gold-light); }

.btn-gw-navy {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--navy);
  border: 1px solid var(--navy);
  color: #fff;
  padding: 0.75rem 1.9rem;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.btn-gw-navy:hover { background: var(--navy-deep); }

/* -------------------- Hero -------------------- */
.gw-hero {
  position: relative;
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: #fff;
  padding: 7.5rem 0 6.5rem;
  overflow: hidden;
  clip-path: var(--shield-cut);
}
.gw-hero::before {
  content: "";
  position: absolute;
  top: -10%; right: -8%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(200,155,60,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.gw-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.08;
}
.gw-hero .lead { color: #C6CCD8; font-size: 1.15rem; max-width: 560px; }

.gw-page-hero {
  position: relative;
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  padding: 5.5rem 0 5rem;
  clip-path: var(--shield-cut);
}
.gw-page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.9rem); }
.gw-page-hero .lead { color: #C6CCD8; max-width: 640px; }

/* -------------------- Hero image slider -------------------- */
.hero-carousel {
  border: 1px solid rgba(200,155,60,0.35);
}
.hero-carousel .carousel-inner {
 /* aspect-ratio: 4 / 3;*/
}
.hero-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 8px; height: 8px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  border: none;
  margin: 0 5px;
}
.hero-carousel .carousel-indicators .active {
  background-color: var(--gold);
}
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 44px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
  opacity: 0.85;
}
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  width: 1.6rem; height: 1.6rem;
  background-color: rgba(10,20,36,0.55);
  border-radius: 50%;
  padding: 0.35rem;
  background-size: 60%;
}

/* -------------------- Duty roster stat strip -------------------- */
.duty-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(200,155,60,0.3);
  padding-top: 1.75rem;
}
.duty-strip .duty-item {
  flex: 1 1 140px;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  margin-right: 1.5rem;
}
.duty-strip .duty-item:last-child { border-right: none; }
.duty-strip .duty-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold-light);
  line-height: 1;
}
.duty-strip .duty-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: #A9B1BF;
  margin-top: 0.35rem;
}

/* -------------------- Sections -------------------- */
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.section-sub { color: var(--slate); max-width: 640px; }
.bg-alt { background: var(--paper); }

/* -------------------- Badge number (services) -------------------- */
.badge-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold-dim);
  border: 1px solid var(--gold-dim);
  padding: 0.15rem 0.6rem;
  display: inline-block;
}

/* -------------------- Cards -------------------- */
.gw-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.2rem 2rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.gw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(10,20,36,0.1);
  border-color: var(--gold-dim);
}
.gw-card .icon-wrap {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-deep);
  color: var(--gold);
  margin-bottom: 1.3rem;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
}
.gw-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.gw-card p { color: var(--slate); font-size: 0.95rem; margin-bottom: 0; }

.gw-card-dark {
  background: var(--navy);
  color: #E8EAEE;
  border: 1px solid var(--navy-light);
}
.gw-card-dark h3 { color: #fff; }
.gw-card-dark p { color: #AEB6C2; }
.gw-card-dark .icon-wrap { background: rgba(200,155,60,0.15); color: var(--gold-light); }

/* -------------------- Pricing -------------------- */
.pricing-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.4rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border: 1px solid var(--gold);
  box-shadow: 0 20px 40px rgba(10,20,36,0.12);
  position: relative;
}
.pricing-card.featured::before {
  content: "MOST BOOKED";
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.8rem;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: var(--navy-deep);
}
.pricing-card .price span { font-size: 0.95rem; color: var(--slate); font-family: var(--font-body); }
.pricing-card ul { list-style: none; padding: 0; margin: 1.5rem 0; flex-grow: 1; }
.pricing-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
  color: var(--ink);
}
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li::before {
  content: "✓";
  color: var(--gold-dim);
  font-weight: 700;
  margin-right: 0.6rem;
}

/* -------------------- Timeline / process -------------------- */
.patrol-step {
  display: flex;
  gap: 1.4rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
.patrol-step:last-child { border-bottom: none; }
.patrol-step .step-tag {
  font-family: var(--font-display);
  color: var(--gold-dim);
  font-size: 1.5rem;
  min-width: 56px;
}
.patrol-step h4 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.patrol-step p { color: var(--slate); margin-bottom: 0; font-size: 0.93rem; }

/* -------------------- Testimonials -------------------- */
.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 2rem;
  height: 100%;
}
.testimonial-card .stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.8rem; }
.testimonial-card .quote { font-size: 0.96rem; color: var(--ink); }
.testimonial-card .who {
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.testimonial-card .who span { display: block; font-family: var(--font-body); text-transform: none; color: var(--slate); letter-spacing: normal; font-size: 0.82rem; }

/* -------------------- Gallery -------------------- */
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(10,20,36,0.88), transparent);
  color: #fff;
  padding: 1.4rem 1rem 0.8rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

/* -------------------- Careers -------------------- */
.job-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.6rem 1.8rem;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.job-card h4 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.job-card .meta { font-size: 0.85rem; color: var(--slate); }
.job-card .meta span:not(:last-child)::after { content: "•"; margin: 0 0.5rem; color: var(--line); }
.job-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--off-white);
  border: 1px solid var(--line);
  padding: 0.25rem 0.7rem;
  color: var(--navy);
}

/* -------------------- Forms -------------------- */
.gw-form .form-control, .gw-form .form-select {
  border-radius: 0;
  border: 1px solid var(--line);
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
}
.gw-form .form-control:focus, .gw-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(200,155,60,0.18);
}
.gw-form label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .ci-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,155,60,0.15);
  color: var(--gold-light);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
}
.contact-info-item h5 { color: #fff; font-size: 0.95rem; margin-bottom: 0.2rem; }
.contact-info-item p, .contact-info-item a { color: #AEB6C2; font-size: 0.9rem; margin-bottom: 0; }
.contact-info-item a:hover { color: var(--gold-light); }

/* -------------------- CTA band -------------------- */
.cta-band {
  background: var(--navy-deep);
  color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(200,155,60,0.16), transparent 55%);
}
.cta-band h2 { color: #fff; }

/* -------------------- Footer -------------------- */
.gw-footer {
  background: var(--navy-deep);
  color: #A9B1BF;
  padding-top: 4rem;
}
.gw-footer h5 {
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}
.gw-footer a { color: #A9B1BF; }
.gw-footer a:hover { color: var(--gold-light); }
.gw-footer .footer-logo img { height:margin-bottom: 1rem; }
.gw-footer ul { list-style: none; padding: 0; }
.gw-footer ul li { margin-bottom: 0.6rem; font-size: 0.92rem; }
.gw-footer .foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding: 1.5rem 0;
  font-size: 0.82rem;
}
.social-dot {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  margin-right: 0.5rem;
}
.social-dot:hover { border-color: var(--gold); color: var(--gold-light); }

/* -------------------- WhatsApp float -------------------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 1050;
  animation: wa-pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.06); }
@keyframes wa-pulse {
  0% { box-shadow: 0 8px 20px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 8px 20px rgba(0,0,0,0.25), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 20px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0); }
}

/* -------------------- Breadcrumb-ish page marker -------------------- */
.page-eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--gold-light);
}

/* -------------------- Misc -------------------- */
.ratio-shield {
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
  overflow: hidden;
}
.form-note { font-size: 0.82rem; color: var(--slate); }

.scroll-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.scroll-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 767.98px) {
  .gw-hero, .gw-page-hero { clip-path: none; padding: 4.5rem 0 4rem; }
  .duty-strip .duty-item { border-right: none; margin-right: 0; padding-right: 0; flex: 1 1 45%; margin-bottom: 1rem; }
}
