@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@700;800&display=swap');

:root {
  --accent: #1a5490;
  --accent-dark: #0f3a66;
  --accent-light: #e6f5ef;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e5e7eb;
  --shadow: 0 4px 16px rgba(0,0,0,.07);
  --shadow-lg: 0 20px 40px rgba(0,0,0,.13);
  --radius: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--text); line-height: 1.65; font-size: 16px; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* NAV */
nav {
  background: var(--accent);
  padding: .9rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
nav .logo { color: #fff; font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 800; letter-spacing: -.3px; }
nav ul { list-style: none; display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }
nav ul li a { color: rgba(255,255,255,.88); font-size: .9rem; font-weight: 500; transition: color .2s; }
nav ul li a:hover { color: #fff; text-decoration: none; }
.nav-cta { background: #fff; color: var(--accent) !important; padding: .45rem 1.1rem; border-radius: 6px; font-weight: 700 !important; font-size: .88rem !important; }
.nav-phone { color: #fff !important; font-weight: 700 !important; font-size: .9rem !important; }

/* HERO */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/images/work-photo-1.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(.38);
  transform: scale(1.03);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.5) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 740px; padding: 2.5rem 1.5rem; }
.hero h1 { font-family: 'Poppins', sans-serif; font-size: 2.6rem; line-height: 1.18; margin-bottom: 1rem; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
.hero p { font-size: 1.15rem; margin-bottom: 1.8rem; opacity: .92; }
.btn { display: inline-block; padding: .9rem 2.2rem; border-radius: 7px; font-weight: 700; font-size: 1rem; cursor: pointer; border: none; transition: transform .15s, box-shadow .15s, opacity .15s; text-decoration: none !important; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.22); opacity: 1; }
.btn-primary { background: #f90; color: #000; }
.btn-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.8); margin-left: .6rem; }

/* SOCIAL PROOF BAR */
.proof-bar {
  background: var(--accent-light);
  border-bottom: 1px solid var(--border);
  padding: .85rem 2rem;
}
.proof-bar-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.proof-badge {
  display: flex; align-items: center; gap: .5rem;
  font-size: .92rem; font-weight: 600; color: var(--accent-dark);
}
.proof-badge span { font-size: 1.1rem; }

/* SECTIONS */
section { padding: 4.5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { text-transform: uppercase; letter-spacing: 1.5px; font-size: .75rem; font-weight: 700; color: var(--accent); margin-bottom: .5rem; }
h2 { font-family: 'Poppins', sans-serif; font-size: 2rem; line-height: 1.2; margin-bottom: .75rem; color: var(--text); }
.section-intro { font-size: 1.08rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 650px; }

/* SERVICE CARDS */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.card h3 { font-size: 1.1rem; font-weight: 700; color: var(--accent-dark); margin-bottom: .5rem; }
.card p { font-size: .95rem; color: var(--text-muted); line-height: 1.6; }

/* HOW IT WORKS */
.how-section { background: var(--bg-alt); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 2.5rem; position: relative; }
.step { text-align: center; padding: 1.5rem; }
.step-icon { font-size: 2.4rem; margin-bottom: 1rem; display: block; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: .85rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; color: var(--text); }
.step p { font-size: .92rem; color: var(--text-muted); }

/* TRUST STATS */
.trust { background: var(--accent); color: #fff; }
.trust h2 { color: #fff; }
.trust .section-intro { color: rgba(255,255,255,.75); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; text-align: center; }
.trust-item { padding: 1rem; }
.trust-item .num { font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 800; color: #f90; line-height: 1; margin-bottom: .35rem; }
.trust-item p { font-size: .95rem; color: rgba(255,255,255,.82); }

/* TESTIMONIALS */
.testimonials-section { background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.testimonial-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  line-height: .8;
  color: var(--accent);
  opacity: .18;
  position: absolute;
  top: 1rem; left: 1.2rem;
  font-family: Georgia, serif;
  font-weight: 700;
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: .75rem; }
.testimonial-text { font-size: .97rem; color: var(--text); line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: .75rem; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem;
}
.reviewer-name { font-weight: 700; font-size: .92rem; color: var(--text); }
.reviewer-loc { font-size: .82rem; color: var(--text-muted); }

/* LOCAL SECTION */
.local-section { background: var(--bg-alt); }
.local-photos { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.local-photos img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}
.cta-banner h2 { font-family: 'Poppins', sans-serif; font-size: 2rem; margin-bottom: .75rem; color: #fff; }
.cta-banner p { font-size: 1.1rem; margin-bottom: 2rem; opacity: .88; }
.cta-banner .btn-primary { font-size: 1.1rem; padding: 1rem 2.5rem; }
.cta-banner .btn-secondary { border-color: rgba(255,255,255,.6); }

/* FAQ */
.faq-section { background: var(--bg-alt); }
.faq-list { margin-top: 1.5rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left;
  padding: 1.1rem 1.4rem;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 600; color: var(--text);
  font-family: 'Inter', sans-serif;
}
.faq-question:hover { color: var(--accent); }
.faq-chevron { font-size: .85rem; transition: transform .25s; color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; padding: 0 1.4rem; }
.faq-answer p { padding-bottom: 1.1rem; font-size: .97rem; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-answer { max-height: 300px; }

/* FORM */
.form-section { background: #fff; }
.form-wrap { max-width: 620px; margin: 0 auto; }
label { display: block; margin-bottom: .3rem; font-weight: 600; font-size: .88rem; color: var(--text); }
input, select, textarea {
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 7px; margin-bottom: 1.1rem;
  font-size: .97rem; font-family: inherit;
  color: var(--text); background: var(--bg-alt);
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
  background: #fff;
}
textarea { height: 120px; resize: vertical; }
button[type=submit] { width: 100%; font-size: 1.05rem; padding: 1rem; }

/* FOOTER */
footer {
  background: #111;
  color: #9ca3af;
  padding: 3rem 2rem 1.5rem;
  font-size: .9rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.5rem;
}
.footer-brand .logo-foot { color: #fff; font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 800; margin-bottom: .6rem; }
.footer-brand p { font-size: .88rem; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: .75rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul li a { color: #9ca3af; font-size: .88rem; }
.footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-bottom { text-align: center; font-size: .82rem; color: #6b7280; }
.footer-bottom a { color: #9ca3af; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s; }
.blog-card:hover { box-shadow: var(--shadow-lg); }
.blog-card-body { padding: 1.4rem; }
.blog-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--accent-dark); margin-bottom: .4rem; }
.blog-card .date { font-size: .82rem; color: var(--text-muted); margin-bottom: .5rem; }
.blog-post-body h2 { font-size: 1.4rem; margin: 1.5rem 0 .5rem; color: var(--accent-dark); }
.blog-post-body p { margin-bottom: 1rem; }
.blog-post-body ul { margin: .5rem 0 1rem 1.5rem; }

/* FLOATING MOBILE CTA */
.float-cta {
  display: none;
  position: fixed; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  z-index: 999;
  background: #f90; color: #000;
  padding: .85rem 2.2rem;
  border-radius: 50px;
  font-weight: 800; font-size: 1rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.28);
  white-space: nowrap;
  text-decoration: none !important;
  transition: transform .2s, box-shadow .2s;
}
.float-cta:hover { transform: translateX(-50%) translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.32); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
  .grid-3 { grid-template-columns: 1fr; }
  nav ul { gap: .75rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .proof-bar-inner { gap: 1rem; }
  .float-cta { display: block; }
  section { padding: 3rem 1.2rem; }
  .cta-banner { padding: 3rem 1.2rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  nav { padding: .8rem 1rem; }
  .nav-phone { display: none; }
}


/* PROMINENT PHONE STYLES */
.phone-hero {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.6);
  color: #fff; font-size: 1.4rem; font-weight: 800;
  padding: .6rem 1.6rem; border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  text-decoration: none !important;
  transition: background .2s, transform .15s;
  letter-spacing: .3px;
}
.phone-hero:hover { background: rgba(255,255,255,.25); transform: scale(1.03); color: #fff; }

.phone-bar {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: .8rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .2px;
}
.phone-bar a { color: #fff; font-size: 1.15rem; font-weight: 800; }
.phone-bar a:hover { text-decoration: none; opacity: .9; }

.float-cta {
  background: var(--accent) !important;
  color: #fff !important;
  font-size: 1.05rem !important;
  padding: 1rem 2.5rem !important;
  box-shadow: 0 6px 28px rgba(0,0,0,.35) !important;
}


/* ═══════════════════════════════════════
   PHOTO SPLIT SECTION
═══════════════════════════════════════ */
.photo-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split-img {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
.split-content {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-alt);
}
.split-content h2 { font-size: 1.9rem; margin-bottom: 1rem; }
.split-content p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2rem; }
@media (max-width: 768px) {
  .photo-split-section { grid-template-columns: 1fr; }
  .split-img { min-height: 280px; }
  .split-content { padding: 2.5rem 1.5rem; }
}

/* ═══════════════════════════════════════
   PHOTO MOSAIC
═══════════════════════════════════════ */
.photo-mosaic-section { padding: 0 0 4rem; background: #fff; }
.photo-mosaic-section .container { padding-top: 4rem; }
.photo-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 8px;
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.photo-mosaic img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s ease; }
.photo-mosaic img:hover { transform: scale(1.04); }
.photo-mosaic img:first-child { grid-row: span 2; }
@media (max-width: 700px) {
  .photo-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .photo-mosaic img:first-child { grid-row: span 1; grid-column: span 2; }
}

/* Hide old sections now replaced */
#gallery { display: none; }
.local-photos { display: none; }
