/* =======================================================
   COMMERCIAL PAGE — CLEAN MASTER CSS
   Compatible with internal-page.css (no conflicts)
   ======================================================= */

/* MAIN WRAP */
.office-main {
  background: #f3f5fb;
  padding: 18px 0 40px;
}

.office-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 14px;
}

@media (min-width: 1200px) {
  .office-shell {
    padding: 0 20px;
  }
}

/* =======================================================
   HERO SECTION — VIDEO + TITLE CARD
   (NO BLUE STRIP, MATCHES RESIDENTIAL STYLE)
   ======================================================= */

.office-hero {
  margin-bottom: 28px;
}

/* Video block */
.office-hero-video {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  margin-bottom: 18px;
  background: #000;
}

.office-hero-video a {
  position: relative;
  display: block;
}

.office-hero-video img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Play icon */
.office-hero-video .play-btn {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.office-hero-video .play-btn i {
  font-size: 42px;
  color: #fff;
  text-shadow: 0 0 8px rgba(0,0,0,0.7);
}

/* Title card — clean white container */
.office-hero-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 22px 22px 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.office-hero-inner {
  padding: 0 4px;
}

/* Breadcrumbs */
.office-breadcrumbs {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 6px;
}

.office-breadcrumbs a {
  color: #6b7280;
  text-decoration: none;
}

.office-breadcrumbs span {
  margin: 0 3px;
}

/* H1 */
.office-hero-card h1 {
  font-size: 2rem;
  line-height: 1.3;
  margin: 0 0 10px;
  color: #0f172a;
}

/* Intro */
.office-hero-card p {
  font-size: 1rem;
  line-height: 1.55;
  color: #4b5563;
}

/* Responsive hero */
@media (max-width: 768px) {
  .office-hero-video {
    border-radius: 20px;
  }
  .office-hero-video .play-btn {
    width: 58px;
    height: 58px;
  }
  .office-hero-video .play-btn i {
    font-size: 30px;
  }

  .office-hero-card {
    border-radius: 22px;
    padding: 16px;
  }

  .office-hero-card h1 {
    font-size: 1.55rem;
  }
}

/* =======================================================
   LAYOUT: MAIN CONTENT + SIDEBAR
   ======================================================= */

.office-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
  gap: 22px;
}

@media (max-width: 960px) {
  .office-layout {
    grid-template-columns: 1fr;
  }
}

/* =======================================================
   OFFICE CONTENT CARDS
   ======================================================= */

.office-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
}

.office-card h2 {
  font-size: 1.35rem;
  line-height: 1.35;
  margin-bottom: 8px;
  color: #020617;
}

.office-card h3 {
  font-size: 1.05rem;
  margin: 12px 0 6px;
  color: #0b3c88;   /* NAVY HEADING */
}

.office-card p {
  margin-bottom: 10px;
}

.office-lead {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Grid inside cards */
.office-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 768px) {
  .office-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =======================================================
   CITY CARDS — KEEP BLUE LEFT STRIP
   ======================================================= */

.office-city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.office-city-card {
  position: relative;
  background: #ffffff;
  border-radius: 26px;
  padding: 16px 18px 16px 24px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
}

.office-city-card::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: #0b3c88;
}

.office-city-card h3 {
  margin-top: 0;
  color: #0b3c88;
  margin-bottom: 6px;
}

.office-city-card p {
  margin: 0;
  font-size: 0.95rem;
}

/* =======================================================
   FAQ
   ======================================================= */

.office-faq details {
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
  margin-bottom: 10px;
  background: #f9fafb;
}

.office-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #111827;
}

.office-faq summary::-webkit-details-marker {
  display: none;
}

.office-faq summary::before {
  content: "▸";
  margin-right: 6px;
  color: #0b3c88;
  transition: 0.18s ease;
}

.office-faq details[open] summary::before {
  transform: rotate(90deg);
}

.office-faq p {
  margin-top: 6px;
  font-size: 0.95rem;
}

/* =======================================================
   SIDEBAR
   ======================================================= */

.office-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.office-sidebar-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 16px 16px 14px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
}

.office-sidebar-box h3 {
  margin-bottom: 6px;
  color: #020617;
}

.office-sidebar-primary {
  background: linear-gradient(145deg, #eef2ff 0%, #e0edff 100%);
}

.office-sidebar-badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 3px 8px;
  background: #1d4ed8;
  color: #fff;
  border-radius: 999px;
}

.office-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px 8px 0 0;
  padding: 7px 11px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #1d4ed8;
  color: #1d4ed8;
}

/* =======================================================
   BRAND CLOSURE / FLOATING BUTTONS / READ MORE
   ======================================================= */

.brand-closure {
  background: #ffffff;
  padding: 26px 0 24px;
  border-top: 1px solid #e5e7eb;
}

.brand-closure .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 14px;
}

.fab-call {
  position: fixed;
  right: 18px;
  bottom: 88px;
  background: #0b57d0;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 24px rgba(15,23,42,0.45);
}

.fab-wa {
  position: fixed;
  right: 14px;
  bottom: 22px;
  z-index: 70;
}

/* Read more */
.dcc-band {
  max-width: 1180px;
  margin: 0 auto 38px;
  padding: 0 14px;
}