/* ============================================================
   Orbit Insurance — Custom Stylesheet
   File: assets/css/style.css
   ============================================================ */

/* ============================================================
   MASTER THEME COLORS
   Change these values to re-theme the entire site instantly.
   ============================================================ */
:root {
  /* ---- Primary brand color (was pink #e8175d) ---- */
  --color-primary:        #0f766e;   /* main brand / buttons / links */
  --color-primary-dark:   #0b5a54;   /* hover state (darker) */
  --color-primary-soft:   #e6f4f3;   /* very light tint (card backgrounds, hovers) */

  /* ---- Secondary / accent color (was light-green #e8f5ed / #2c9f4b) ---- */
  --color-accent:         #f59e0b;   /* highlights / icons / active states */
  --color-accent-dark:    #d4860a;
  --color-accent-soft:    #eef6f5;   /* coverage-card / footer background tint */
  --color-accent-icon:    #0f766e;   /* the SVG illustration fill inside cards */

  /* ---- Neutrals ---- */
  --color-text:           #222222;
  --color-text-muted:     #555555;
  --color-heading-dark:   #2b2b2b;
  --color-border:         #e0e0e0;

  /* ---- Utility ---- */
  --color-white:          #ffffff;
}

/* ── GLOBAL ── */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'Montserrat', 'Arial', sans-serif;
  background: var(--color-white);
  color: var(--color-text);
  overflow-x: hidden;
}

/* Wider container */
@media (min-width: 1200px) {
  .container { max-width: 1200px; }
}

/* ── LOGO ── */
.logo-text     { display: flex; flex-direction: column; line-height: 1.1; }
.logo-cinco    { font-size: 22px; font-weight: 900; color: var(--color-primary); letter-spacing: 1px; }
.logo-sub      { font-size: 7.5px; color: #444; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }

.site-logo {
  height: 65px;
  width: auto;
  display: block;
}
@media (max-width: 575px) {
  .site-logo { height: 65px; }
}

/* ── NAVBAR ── */
.navbar { height: 72px; padding: 0; }
.navbar .container { height: 100%; }
.navbar-brand { padding: 0; }

.nav-link {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #333 !important;
  letter-spacing: 0.3px;
  padding: 8px 10px !important;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus { color: var(--color-primary) !important; }

/* Arrow colour on dropdown toggles */
.nav-link.dropdown-toggle::after { color: var(--color-primary); border-top-color: var(--color-primary); }

/* ── HOVER DROPDOWN (desktop) ── */
@media (min-width: 992px) {
  .hover-dropdown:hover > .dropdown-menu,
  .hover-dropdown > .dropdown-menu:hover {
    display: block;
    margin-top: 0;
    animation: fadeInDown 0.15s ease;
  }
  .hover-dropdown .dropdown-toggle::after { pointer-events: none; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown-menu {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
  padding: 12px 0;
  min-width: 210px;
}
.dropdown-header {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #222 !important;
  padding: 4px 20px 8px !important;
}
.dropdown-item {
  font-size: 14px;
  color: #444;
  padding: 7px 20px;
  transition: background 0.12s, color 0.12s;
}
.dropdown-item:hover,
.dropdown-item:focus { background: var(--color-primary-soft); color: var(--color-primary); }

/* ── GET A QUOTE BUTTON ── */
.btn-get-quote {
  background: var(--color-white);
  color: #222;
  border: 2px solid #222;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-get-quote:hover { background: #222; color: var(--color-white); }

/* Language link */
.nav-lang-link { font-size: 13px; font-weight: 600; color: #444 !important; }
.nav-lang-link:hover { color: var(--color-primary) !important; }

/* ── HERO SECTION ── */
.hero-section { background: var(--color-white); padding: 45px 0 25px; }
.hero-headline .heading1 {
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.hero-headline .heading2 {
  font-size: clamp(20px, 5vw, 35px);
  font-weight: 800;
  line-height: 1.20;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.text-pink      { color: var(--color-primary); }
.text-dark-gray { color: #3a3a3a; }

/* ── COVERAGE + FORM SECTION ── */
.coverage-form-section { background: var(--color-white); padding-top: 10px; }

/* Coverage cards */
.cov-card {
  background: var(--color-accent-soft);
  border: 2px solid var(--color-accent-soft);
  border-radius: 12px;
  padding: 16px 12px 18px;
  cursor: pointer;
  transition: border-color 0.15s;
  text-align: center;
  height: 100%;
}
.cov-card:hover  { border-color: var(--color-primary); }
.cov-card.active { border-color: var(--color-primary); }

.cov-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cov-label { font-size: 15px; font-weight: 800; color: #222; }

.cov-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2.5px solid var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cov-check svg    { width: 12px; height: 12px; }
.cov-check.checked { background: var(--color-primary); border-color: var(--color-primary); }

.cov-img { height: 76px; display: flex; align-items: center; justify-content: center; }
.cov-img svg { width: 76px; height: 76px; }

/* Form inputs */
.form-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid #d0d0d0;
  border-radius: 10px;
  padding: 0 18px;
  height: 62px;
  background: var(--color-white);
}
.form-icon { font-size: 18px; color: #aaa; flex-shrink: 0; }
.form-control-plain {
  border: none;
  outline: none;
  font-size: 16px;
  color: #666;
  width: 100%;
  background: transparent;
  font-family: inherit;
}
.form-control-plain::placeholder { color: #bbb; }

/* Check Rates button */
.btn-check-rates {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 10px;
  height: 62px;
  padding: 0 42px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  font-family: inherit;
}
.btn-check-rates:hover { background: var(--color-primary-dark); color: var(--color-white); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-accent-soft);
  color: #444;
  padding: 50px 0 0;
  font-size: 14px;
}

/* Logo + description */
.footer-logo { text-decoration: none; }
.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.footer-desc {
  max-width: 780px;
  margin: 18px auto 0;
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}
.footer-desc strong { color: var(--color-primary); }

/* Contact row */
.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin: 26px 0 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #444;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.footer-contact i { color: var(--color-primary); font-size: 15px; }
.footer-contact:hover { color: var(--color-primary); }

/* Section headings */
.footer-heading {
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 16px;
}

/* City / Make grid (3 columns) */
.footer-city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 16px;
}
.footer-city-grid a {
  color: #555;
  text-decoration: none;
  font-size: 12.5px;
}
.footer-city-grid a:hover { color: var(--color-primary); }

.footer-viewall {
  display: inline-block;
  margin-top: 16px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}
.footer-viewall:hover { text-decoration: underline; }

/* OUR SERVICES title */
.footer-services-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-heading-dark);
  letter-spacing: 1px;
  margin: 30px 0 40px;
}

/* Service link lists */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 12.5px;
}
.footer-links a:hover { color: var(--color-primary); }

/* Bottom bar */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s;
}
.footer-socials a:hover { background: var(--color-primary-dark); }

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-bottom-links a {
  color: #444;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.footer-bottom-links a:hover { color: var(--color-primary); }

/* Copyright strip */
.footer-copyright {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 12px 15px;
  font-size: 12px;
  font-weight: 600;
}