/* ══════════════════════════════════════════
   Bellano Dental — Location Page Styles
   Shared by all individual location pages
   ══════════════════════════════════════════ */

/* ── Nav Dropdown ── */
.nav-item {
  position: relative;
}
.nav-dropdown-trigger {
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--textdk);
  text-decoration: none;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
}
.nav-dropdown-trigger:hover {
  background: var(--soft);
  color: var(--navy);
}
.nav-dropdown-trigger .chevron {
  font-size: 7px;
  transition: transform 0.2s;
}
.nav-item:hover .nav-dropdown-trigger .chevron {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--soft);
  min-width: 210px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 6px 18px rgba(6,14,159,0.12);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy) !important;
  text-decoration: none !important;
  text-transform: none;
  letter-spacing: 0.03em;
  background: transparent;
  transition: background 0.15s;
  border-radius: 0 !important;
}
.nav-dropdown a:hover {
  background: rgba(6,14,159,0.10) !important;
  color: var(--navy) !important;
}

/* ── Location Hero ── */
.loc-hero {
  width: 75%;
  max-width: 1100px;
  margin: 0 auto;
  height: 42vh;
  min-height: 255px;
  overflow: hidden;
  display: block;
}
.loc-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* ── Containers ── */
.loc-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}
.loc-wrap-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Section spacing ── */
.loc-section {
  padding: 72px 0;
}

/* ── Breadcrumb ── */
.loc-breadcrumb {
  background: var(--offwhite);
  padding: 12px 0;
  border-bottom: 1px solid #dde8f5;
}
.loc-breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--textlt);
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  position: static;
  top: auto;
  z-index: auto;
}
.loc-breadcrumb nav a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.loc-breadcrumb nav a:hover { color: var(--textmd); }
.loc-breadcrumb nav span { color: var(--textlt); font-size: 10px; }

/* ── Overview ── */
#loc-overview {
  text-align: center;
  background: var(--white);
}
#loc-overview .loc-wrap h1 {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--navy);
  margin-bottom: 20px;
}
#loc-overview .loc-wrap p {
  font-size: 16px;
  color: var(--textmd);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ── Location Info Card ── */
.loc-card {
  background: var(--white);
  box-shadow: 0 6px 24px rgba(6,14,159,0.10);
  padding: 52px;
  display: flex;
  align-items: flex-start;
  gap: 52px;
  flex-wrap: wrap;
}
.loc-card-text {
  flex: 1;
  min-width: 240px;
  text-align: center;
}
.loc-card-text .loc-sublabel {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  display: block;
}
.loc-card-text h2 {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.loc-card-text p {
  font-size: 14px;
  color: var(--textmd);
  line-height: 1.75;
  margin-bottom: 12px;
}
.loc-card-text a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
}
.loc-card-text a:hover { color: var(--textmd); text-decoration: underline; }
.loc-card-text address {
  font-style: normal;
  font-size: 14px;
  color: var(--textmd);
  line-height: 1.75;
  margin-bottom: 20px;
}
.loc-card-text address a {
  font-size: 14px;
  font-weight: 400;
  color: var(--textmd);
}
.loc-card-text address a:hover { color: var(--navy); text-decoration: underline; }
.loc-card-text .btn-primary,
.loc-card-text a.btn-primary {
  color: var(--white) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}
.loc-card-map {
  flex: 1.2;
  min-width: 280px;
}
.loc-card-map iframe,
.loc-card-map img {
  width: 100%;
  height: 418px;
  border: 0;
  display: block;
  object-fit: cover;
}

/* ── Team ── */
#loc-team {
  background: var(--white);
  text-align: center;
}
#loc-team h2 {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 40px;
}
.loc-team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.loc-team-card {
  width: calc(50% - 28px);
  max-width: 360px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
  display: block;
}
.loc-team-card:hover { transform: translateY(-5px); }
.loc-team-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.loc-team-placeholder {
  width: 100%;
  height: 310px;
  background: var(--lightbg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-team-placeholder svg {
  width: 72px;
  height: 72px;
}
.loc-team-info {
  background: #caeaf4;
  padding: 18px 20px;
  transition: background 0.3s ease;
}
.loc-team-card:hover .loc-team-info { background: var(--soft); }
.loc-team-info h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 4px;
}
.loc-team-info p {
  font-size: 13px;
  color: var(--textmd);
  margin: 0;
}
.loc-team-name {
  font-size: 17px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy) !important;
  margin-bottom: 4px !important;
}
.loc-team-title {
  font-size: 14px !important;
  color: var(--textmd) !important;
  margin: 0 !important;
}

/* ── BBB / Accreditation ── */
#loc-bbb {
  background: var(--soft);
  text-align: center;
}
.loc-bbb-logo-wrap {
  display: block;
  width: 260px;
  margin: 0 auto 28px;
}
.loc-bbb-logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
#loc-bbb h2 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 28px;
}
.loc-review-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 30px;
  padding: 12px 28px;
  font-family: "brandon-grotesque","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-google-review svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-google-review:hover {
  background: var(--navy);
  color: var(--white) !important;
}

/* ── Services ── */
#loc-services {
  background: var(--white);
}
.loc-services-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}
.loc-services-text {
  flex: 1;
  min-width: 240px;
}
.loc-sublabel {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  display: block;
}
.loc-services-text h2 {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 14px;
}
.loc-services-text > p {
  font-size: 16px;
  color: var(--textmd);
  line-height: 1.75;
  margin-bottom: 20px;
}
.loc-services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.loc-services-list li {
  padding: 9px 0 9px 26px;
  position: relative;
  font-size: 15px;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--lightbg);
}
.loc-services-list li:first-child { border-top: 1px solid var(--lightbg); }
.loc-services-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--soft);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}
.loc-services-list li a {
  color: var(--navy);
  text-decoration: underline;
  transition: color 0.2s;
}
.loc-services-list li a:hover { color: var(--textmd); }
.loc-services-image {
  flex: 1;
  min-width: 260px;
}
.loc-offset-image {
  position: relative;
  padding-bottom: 10%;
  padding-right: 10%;
}
.loc-offset-image img {
  position: relative;
  width: 90%;
  z-index: 1;
  display: block;
}
.loc-offset-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 90%;
  background-color: var(--soft);
  z-index: 0;
}

/* ══════════════════════════════════════
   Mobile Responsive
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Mobile nav dropdown — always show as sub-list */
  .nav-dropdown {
    position: static;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    background: var(--lightbg);
    padding: 4px 0 4px 16px;
  }
  .nav-dropdown-trigger {
    padding: 5px 0;
    width: 100%;
  }
  .nav-dropdown a {
    font-size: 11px;
    padding: 7px 10px;
  }

  .loc-hero { height: 44vw; min-height: 200px; }
  .loc-wrap,
  .loc-wrap-wide { padding: 0 20px; }
  .loc-section { padding: 48px 0; }

  #loc-overview .loc-wrap h1 { font-size: 20px; }
  #loc-overview .loc-wrap p { font-size: 14px; }

  .loc-card { flex-direction: column; padding: 28px 20px; gap: 28px; }
  .loc-card-map iframe { height: 260px; }

  .loc-team-grid { gap: 16px; }
  .loc-team-card { width: calc(50% - 8px); }
  .loc-team-card img,
  .loc-team-placeholder { height: 280px; }
  .loc-team-info h3 { font-size: 13px; }
  .loc-team-info p { font-size: 11px; }

  .loc-bbb-logo-wrap { width: 200px; }
  #loc-bbb h2 { font-size: 18px; }

  .loc-services-inner { flex-direction: column; gap: 36px; }
  .loc-services-image { width: 100%; }
  .loc-offset-image { padding-bottom: 8%; padding-right: 8%; }
}

@media (max-width: 480px) {
  .loc-team-grid { flex-direction: column; align-items: center; }
  .loc-team-card { width: 100%; max-width: 320px; }
  .loc-team-card img,
  .loc-team-placeholder { height: 320px; }
}

/* ── Clickable map image ── */
.loc-map-link { display: block; }
.loc-map-link img { transition: opacity 0.2s ease; cursor: pointer; }
.loc-map-link:hover img { opacity: 0.85; }
