/* =========================================================
   DW Locksmiths — GOLD PREMIUM UI (FULL OVERWRITE)
   File: /public_html/css/style.css
   Goals: premium finish, clean spacing, strong readability, modern depth
   ========================================================= */

/* =========================
   TOKENS
========================= */
:root{
  --dw-green:#00b140;
  --dw-green-2:#14e46f;

  --dw-ink:#0b1220;
  --dw-ink-2:#0f172a;
  --dw-muted:#475569;

  --dw-bg-1:#f3f6fb;
  --dw-bg-2:#eef2f7;
  --dw-white:#ffffff;

  --dw-border: rgba(15,23,42,.10);
  --dw-border-soft: rgba(15,23,42,.07);

  --dw-radius:18px;
  --dw-radius-lg:24px;

  --dw-shadow-soft: 0 18px 45px rgba(15,23,42,.10);
  --dw-shadow-card: 0 22px 60px rgba(15,23,42,.12);
  --dw-shadow-hero: 0 28px 75px rgba(0,0,0,.40);
  --dw-shadow-chip: 0 10px 24px rgba(15,23,42,.08);
}

/* =========================
   BASE
========================= */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--dw-ink-2);
  line-height: 1.7;
  background:
    radial-gradient(1200px 500px at 20% 0%, rgba(0,177,64,.10), transparent 55%),
    radial-gradient(900px 450px at 85% 10%, rgba(20,228,111,.08), transparent 60%),
    linear-gradient(180deg, var(--dw-bg-1), var(--dw-bg-2));
}

a{ color: inherit; }
a:hover{ opacity:.92; }

p{ margin-bottom: 14px; color: var(--dw-muted); font-size: 16px; }
ul{ margin-bottom: 14px; }
li{ margin: 8px 0; color: var(--dw-muted); }

main{
  padding: 40px 0 70px;
}

/* =========================
   NAVBAR
========================= */
.navbar{
  background: var(--dw-green) !important;
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
}

.navbar .navbar-brand,
.navbar .nav-link{
  color:#fff !important;
  font-weight: 850;
}

.dropdown-menu{
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 22px 60px rgba(15,23,42,.18);
  padding: 10px;
}

.dropdown-item{
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 750;
}

.dropdown-item:hover{
  background: rgba(0,177,64,.10);
}

/* Logo */
.dw-logo{
  height: 72px;
  width:auto;
  display:block;
}

.navbar.navbar-expand-lg{
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* =========================
   BUTTONS
========================= */
.btn,
button.btn{
  border-radius: 999px !important;
  font-weight: 900 !important;
  letter-spacing: .2px;
}

.btn-soft{
  border-radius: 999px !important;
}

/* Call button */
.btn-call{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  background: #0b1220 !important;
  color:#fff !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  text-decoration: none !important;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.btn-call:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0,0,0,.28);
}

/* WhatsApp (any wa.me link looks premium sitewide) */
a[href*="wa.me/"]{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding: 12px 18px !important;
  border-radius:999px !important;
  font-weight:900 !important;
  letter-spacing:.2px !important;
  background: linear-gradient(135deg, var(--dw-green), var(--dw-green-2)) !important;
  color:#0b1220 !important;
  border: 1px solid rgba(15,23,42,.10) !important;
  box-shadow: 0 14px 30px rgba(15,23,42,.12) !important;
  text-decoration:none !important;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

a[href*="wa.me/"]:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(15,23,42,.16) !important;
}

/* =========================
   HERO (Premium)
========================= */
.hero{
  position:relative;
  padding: 58px 0 46px;
  background: radial-gradient(1200px 500px at 15% 0%, rgba(0,177,64,.28), transparent 55%),
              radial-gradient(900px 450px at 85% 10%, rgba(20,228,111,.18), transparent 60%),
              linear-gradient(180deg,#050b17 0%, #0b1220 60%, #050b17 100%);
  color:#fff;
  overflow:hidden;
}

.hero:before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.38), rgba(0,0,0,.06));
  pointer-events:none;
}

.hero .container{ position:relative; z-index:2; }

.hero-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--dw-radius-lg);
  padding: 32px;
  box-shadow: var(--dw-shadow-hero);
  backdrop-filter: blur(8px);
}

.hero-title{
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -.7px;
  margin: 0 0 12px;
}

.hero-sub{
  font-size: 16px;
  opacity: .95;
  margin: 0 0 14px;
  color: rgba(255,255,255,.92);
}

.hero-bullets{
  padding-left: 18px;
  margin: 12px 0 0;
}

.hero-bullets li{
  color: rgba(255,255,255,.90);
  margin: 8px 0;
}

.hero-media{
  position:relative;
  border-radius: var(--dw-radius-lg);
  overflow:hidden;
  box-shadow: var(--dw-shadow-hero);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  max-height: 440px;
}

.hero-photo{
  width:100%;
  height: 440px;
  object-fit: cover;
  display:block;
}

.dw-exp-badge{
  position:absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  background: linear-gradient(135deg, var(--dw-green), var(--dw-green-2));
  color:#0b1220;
  padding: 14px 18px;
  border-radius: 20px;
  font-weight: 950;
  font-size: 18px;
  line-height: 1.05;
  text-align:center;
  box-shadow: 0 20px 45px rgba(0,0,0,.35);
  border: 3px solid rgba(255,255,255,.92);
}

.dw-exp-badge small{
  display:block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .7px;
  margin-top: 4px;
  text-transform: uppercase;
  opacity: .95;
}

/* =========================
   VERIFIED STRIP
========================= */
.verify-strip{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-top: 18px;
  align-items:center;
}

.verify-strip a{ text-decoration:none !important; }

.verified-badge{
  display:inline-block;
  width: 300px;
  height: 86px;
  border-radius: 16px;
  background: #fff url("/img/google-verified-business.png") center no-repeat;
  background-size: contain;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
  color: transparent !important;
  transition: transform .15s ease, box-shadow .15s ease;
}

.verified-badge:hover{
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(0,0,0,.42);
}

.verify-link{
  color: rgba(255,255,255,.92) !important;
  font-weight: 900;
  text-decoration: underline !important;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

/* =========================
   CONTENT CARD (the “missing professionalism”)
========================= */
.page-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--dw-radius-lg);
  padding: 42px;
  box-shadow: var(--dw-shadow-card);
  backdrop-filter: blur(6px);
}

.page-card hr{
  border-top: 1px solid rgba(15,23,42,.10);
  margin: 34px 0;
  opacity: 1;
}

.section-title,
.page-card h2{
  font-weight: 950;
  letter-spacing: -.5px;
  font-size: 32px;
  margin: 0 0 14px;
  color: var(--dw-ink-2);
}

.page-card h3{
  font-weight: 900;
  font-size: 20px;
  margin: 18px 0 10px;
  color: var(--dw-ink-2);
}

/* Nice content links */
.page-card a{
  color: #0b3d2e;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.page-card a:hover{ opacity:.9; }

/* Bullet lists look premium */
.page-card ul{
  padding-left: 22px;
}
.page-card li{
  margin: 8px 0;
}

/* =========================
   SERVICE CHIP BUTTONS
========================= */
.services-area-buttons,
.nearby-areas{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
}

.services-area-buttons a,
.nearby-areas a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f1f5f9 !important;
  border: 1px solid rgba(15,23,42,.08) !important;
  font-weight: 900;
  text-decoration:none !important;
  color: var(--dw-ink-2) !important;
  box-shadow: var(--dw-shadow-chip);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

.services-area-buttons a:hover,
.nearby-areas a:hover{
  background: #ffffff !important;
  border-color: rgba(0,177,64,.35) !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15,23,42,.12);
}

/* =========================
   CTA BLOCK (authority / conversion)
========================= */
.cta-block{
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--dw-radius-lg);
  padding: 30px;
  box-shadow: 0 18px 45px rgba(15,23,42,.10);
}

/* Make tel links inside content look like call buttons */
.page-card a[href^="tel:"]{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding: 12px 18px !important;
  border-radius:999px !important;
  font-weight:900 !important;
  background:#0b1220 !important;
  color:#ffffff !important;
  border:1px solid rgba(15,23,42,.18) !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.14) !important;
  text-decoration:none !important;
  transition: transform .15s ease, box-shadow .15s ease;
}
.page-card a[href^="tel:"]:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0,0,0,.18) !important;
}

/* =========================
   FOOTER
========================= */
.site-footer{
  background:#0b1220;
  color:#fff;
  padding: 44px 0;
  margin-top: 70px;
  box-shadow: 0 -18px 50px rgba(0,0,0,.18);
}

.site-footer strong{
  font-size: 18px;
  letter-spacing: -.2px;
}

/* =========================
   MOBILE REFINEMENTS
========================= */
@media (max-width: 991px){
  .dw-logo{ height: 60px; }

  .hero{ padding: 30px 0 22px; }
  .hero-title{ font-size: 30px; }
  .hero-card{ padding: 18px; }

  .hero-media{ max-height: 320px; border-radius: 22px; }
  .hero-photo{ height: 320px; }

  .page-card{
    padding: 24px;
  }

  .verified-badge{
    width: 100%;
    max-width: 360px;
    height: 92px;
  }

  .services-area-buttons a,
  .nearby-areas a{
    width: 100%;
    justify-content:flex-start;
  }
}