:root {
  --navy: #16365C;
  --gold: #D4AF37;
  --white: #ffffff;
  --slate: #64748b;
  --bg-light: #f8fafc;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: 'Segoe UI', Arial, sans-serif; line-height: 1.6; color: #334155; }
.container { max-width: 1200px; margin: auto; padding: 0 20px; }

/* --- Header & Layout --- */
.site-header { background: var(--navy); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.header-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }

/* --- Professional Service Hero with Background Image --- */
.service-hero-v2 {
  position: relative;
  padding: 100px 0;
  color: #fff;
  text-align: center;
  background: url('/assets/hero.jpg') center/cover no-repeat;
  overflow: hidden;
}

.service-hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(22, 54, 92, 0.9), rgba(22, 54, 92, 0.75));
  z-index: 1;
}

.hero-v2-content { position: relative; z-index: 2; }


.logo-img {
  width: 44px;        /* perfect for header */
  height: 44px;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}



/* --- Desktop Nav (Browser Mode) --- */
@media (min-width: 1024px) {
  .nav-desktop { display: flex; align-items: center; gap: 8px; }
  .nav-link { color: var(--white); padding: 10px 15px; text-decoration: none; font-weight: 600; border-radius: 8px; transition: 0.3s; }
  .nav-link:hover { color: var(--gold); }

  /* Invisible Bridge Fix */
  .nav-dropdown { position: relative; padding-bottom: 20px; margin-bottom: -20px; }
  .dropdown-panel {
    display: none; position: absolute; top: 100%; left: 0; width: 240px;
    background: white; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    opacity: 0; transform: translateY(-10px); transition: 0.2s ease; z-index: 100;
  }
  .dropdown-panel a { display: block; padding: 12px 20px; color: var(--navy); text-decoration: none; font-weight: 600; border-bottom: 1px solid #f1f5f9; }
  .dropdown-panel a:hover { background: var(--gold); color: white; }

  .mobile-toggle, .mobile-menu { display: none !important; }
  
  

    .logo-img {
    width: 44px;
    height: 44px;
    }
  
}

/* --- Mobile Nav (Phone Mode) --- */
@media (max-width: 1023px) {
  .nav-desktop, .quote-desktop { display: none !important; }
  .mobile-toggle { display: block !important; background: none; border: 1px solid white; color: white; padding: 8px; border-radius: 6px; cursor: pointer; }
  .mobile-menu { display: none; background: var(--navy); width: 100%; }
  body.menu-open .mobile-menu { display: block; }
  .mobile-menu-inner { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
  .mobile-item { color: white; padding: 15px; text-decoration: none; font-weight: 700; background: none; border: none; text-align: left; width: 100%; font-size: 16px; }
  .mobile-sub { display: none; flex-direction: column; background: rgba(255,255,255,0.05); border-radius: 8px; padding-left: 15px; }
  .mobile-sub.open { display: flex; }
}