/* =============================================
   ALL PHAZE PROPERTY SOLUTIONS LLC
   Main Stylesheet — styles.css
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ─── CSS Variables ─────────────────────────── */
:root {
  --navy:       #1a2744;
  --navy-dark:  #111b33;
  --navy-light: #2A3F6F;
  --gold:       #4A90C4;
  --gold-dark:  #2d6fa8;
  --white:      #ffffff;
  --light:      #f8f9fa;
  --light-blue: #e8f0f9;
  --text:       #2d3748;
  --text-light: #718096;
  --border:     #e2e8f0;
  --radius:     8px;
  --radius-lg:  16px;
  --transition: all 0.25s ease;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 14px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; height: auto; display: block; }
.navbar-logo img {
  height: 55px !important;
  width: auto !important;
  max-width: none;
}
a    { text-decoration: none; color: inherit; transition: var(--transition); }
ul   { list-style: none; }

/* ─── Typography ─────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(1.9rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p  { line-height: 1.7; }

.section-eyebrow {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.section-intro {
  color: var(--text-light);
  max-width: 580px;
  margin: .75rem auto 0;
  font-size: 1.05rem;
}
.text-center { text-align: center; }

/* ─── Layout ─────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-alt { background: var(--light); }

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary { background: var(--gold); color: white; border-color: var(--gold); }
.btn-primary:hover {
  background: var(--gold-dark); border-color: var(--gold-dark);
  transform: translateY(-2px); box-shadow: 0 6px 18px rgba(74,144,196,.35);
}
.btn-outline { background: transparent; color: #ffffff; border: 2px solid #ffffff; } .btn-outline:hover { background: #ffffff; color: #1a2744; } .btn-outline:hover { background: #1a2744; color: #ffffff; }
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: #ffffff; color: white; transform: translateY(-2px); }
.btn-navy { background: #ffffff; color: white; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ─── Navbar ─────────────────────────────────── */
.navbar { position: sticky; top: 0; z-index: 1000; background: #ffffff; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1180px; margin: 0 auto; padding: 0 1.5rem;
  height: 70px;
}
.navbar-logo {
  display: flex; align-items: center; gap: .7rem;
  color: white; text-decoration: none; flex-shrink: 0;
}
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text  { display: flex; flex-direction: column; line-height: 1.15; }
.logo-main  { font-size: 1.1rem; font-weight: 800; color: white; letter-spacing: .06em; }
.logo-sub   { font-size: .62rem; font-weight: 600; color: var(--gold); letter-spacing: .14em; text-transform: uppercase; }

.navbar-nav {
  display: flex; align-items: center; gap: .15rem; list-style: none;
}
.navbar-nav a {
  color: #1a2744; font-weight: 500; font-size: .9rem;
  padding: .45rem .85rem; border-radius: var(--radius); transition: var(--transition);
}
.navbar-nav a:hover,
.navbar-nav a.active { color: var(--gold); background: rgba(255,255,255,.07); }

.nav-phone-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--gold); color: white !important;
  padding: .55rem 1.1rem !important; border-radius: var(--radius) !important;
  font-weight: 700 !important; font-size: .875rem !important;
}
.nav-phone-btn:hover { background: var(--gold-dark) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #1a2744; border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav { display: none; background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,.1); }
.mobile-nav.open { display: block; }
.mobile-nav ul { padding: .75rem 1.5rem; }
.mobile-nav ul li a {
  display: block; color: rgba(255,255,255,.82); padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07); font-weight: 500; font-size: .95rem;
}
.mobile-nav ul li:last-child a { border-bottom: none; }
.mobile-nav ul li a:hover { color: var(--gold); padding-left: .5rem; }
.mobile-phone { display: block; margin: .75rem 1.5rem 1.25rem; text-align: center; }

/* ─── Hero ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 620px;
  display: flex; align-items: center;
  background-image:
    linear-gradient(160deg, rgba(8,14,32,.82) 0%, rgba(15,26,58,.88) 100%),
    url('images/hero-bg.jpg');
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 10% 50%, rgba(74,144,196,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 30%, rgba(36,51,99,.5) 0%, transparent 70%);
}
.hero-content { max-width: 860px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(74,144,196,.14); border: 1px solid rgba(74,144,196,.35);
  color: var(--gold); padding: .38rem 1rem; border-radius: 50px;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 { color: white; margin-bottom: 1.25rem; font-weight: 800; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { text-align: center; max-width: 680px; margin: 0.4rem auto 0; color: rgba(255,255,255,0.92); text-shadow: 0 1px 4px rgba(0,0,0,0.4); font-size: 1.1rem; }
.hero-cta { display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-cta .btn svg { width: 18px; height: 18px; }

/* ─── Trust Bar ──────────────────────────────── */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.trust-items {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 1.5rem 2.25rem;
}
.trust-item {
  display: flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: .82rem; color: var(--navy);
  white-space: nowrap;
}
.trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.trust-divider  { width: 1px; height: 22px; background: var(--border); }

/* ─── Homepage Service Cards ─────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.5rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(74,144,196,.25); }
.service-icon {
  width: 50px; height: 50px;
  background: var(--light-blue);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--navy);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.service-card p  { font-size: .855rem; color: var(--text-light); margin-bottom: 1.15rem; line-height: 1.65; }
.service-link {
  font-size: .855rem; font-weight: 700; color: var(--navy);
  display: inline-flex; align-items: center; gap: .25rem; transition: var(--transition);
}
.service-link:hover { color: var(--gold); gap: .5rem; }

/* ─── Review Cards ───────────────────────────── */
.reviews-intro { text-align: center; margin-bottom: 3rem; }
.stars-display  { display: flex; gap: 4px; justify-content: center; margin-bottom: .5rem; }
.star { color: var(--gold); font-size: 1.5rem; }
.reviews-meta { font-size: .85rem; color: var(--text-light); }
.reviews-meta strong { color: var(--navy); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.6rem;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-stars { display: flex; gap: 3px; margin-bottom: .9rem; }
.review-stars .star { font-size: .95rem; }
.review-text {
  font-size: .875rem; color: var(--text); line-height: 1.75;
  margin-bottom: 1.2rem; font-style: italic;
}
.review-author { display: flex; align-items: center; gap: .7rem; }
.review-avatar {
  width: 40px; height: 40px; background: #ffffff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 800; color: var(--gold); flex-shrink: 0;
}
.review-name  { font-weight: 700; font-size: .875rem; color: var(--navy); }
.review-date  { font-size: .77rem; color: var(--text-light); }
.review-google { display: flex; align-items: center; gap: .3rem; font-size: .72rem; font-weight: 600; margin-top: 2px; color: var(--text-light); }
.g-blue  { color: #4285F4; }
.g-red   { color: #EA4335; }
.g-yellow{ color: #FBBC05; }
.g-green { color: #34A853; }

/* ─── Work CTA Section ───────────────────────── */
.work-cta {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  padding: 4.5rem 0; text-align: center;
}
.work-cta h2 { color: white; margin-bottom: .75rem; }
.work-cta p  { color: rgba(255,255,255,.72); margin-bottom: 2rem; font-size: 1.05rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ─── Service Areas ──────────────────────────── */
.areas-pills { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 2.25rem; }
.area-pill {
  background: white; border: 2px solid var(--navy);
  color: var(--navy); padding: .5rem 1.35rem;
  border-radius: 50px; font-weight: 600; font-size: .875rem;
  transition: var(--transition); cursor: default;
}
.area-pill:hover { background: #1a2744; color: #ffffff; border-color: #1a2744; }

/* ─── CTA Banner ─────────────────────────────── */
.cta-banner { background: #1a2744; padding: 4.5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner .btn-outline { background: transparent; color: #ffffff; border: 2px solid #ffffff; }
.cta-banner .btn-outline:hover { background: #ffffff; color: #1a2744; }
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(74,144,196,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .btn-outline { background: transparent; color: #ffffff; border: 2px solid #ffffff; }
.cta-banner .btn-outline:hover { background: #ffffff; color: #1a2744; }
.cta-banner h2 { color: white; margin-bottom: .75rem; }
.cta-banner .btn-outline { background: transparent; color: #ffffff; border: 2px solid #ffffff; }
.cta-banner .btn-outline:hover { background: #ffffff; color: #1a2744; }
.cta-banner p  { color: rgba(255,255,255,.72); margin-bottom: 2.25rem; font-size: 1.05rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-outline { background: transparent; color: #ffffff; border: 2px solid #ffffff; }
.cta-banner .btn-outline:hover { background: #ffffff; color: #1a2744; }
.cta-buttons   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─────────────────────────────────── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.72); padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.footer-logo { display: flex; align-items: center; gap: .75rem; color: white; text-decoration: none; margin-bottom: 1rem; }
.footer-brand > p { font-size: .875rem; line-height: 1.75; max-width: 270px; }
.footer h4 {
  color: white; font-size: .9rem; margin-bottom: 1.2rem;
  padding-bottom: .45rem; border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer ul { display: flex; flex-direction: column; gap: .45rem; }
.footer ul a { color: rgba(255,255,255,.6); font-size: .855rem; transition: var(--transition); }
.footer ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .6rem; font-size: .855rem; margin-bottom: .7rem; }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.footer-contact-item a { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding: 1.25rem 0; font-size: .78rem; color: rgba(255,255,255,.35); border-top: 0; }

/* ─── Page Hero (inner pages) ────────────────── */
.page-hero { 
  background: var(--navy); padding: 4rem 0; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(74,144,196,.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 { color: white; margin-bottom: .75rem; position: relative; }
.page-hero p  { color: rgba(255,255,255,.72); max-width: 540px; margin: 0 auto 2rem; font-size: 1.05rem; position: relative; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; justify-content: center; margin-bottom: 1.25rem; font-size: .82rem; color: rgba(255,255,255,.45); position: relative; }
.breadcrumb a   { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); font-weight: 600; }
.breadcrumb svg  { width: 12px; height: 12px; }

/* ─── Services Page Full Cards ───────────────── */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.service-full-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: var(--transition);
}
.service-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(74,144,196,.28); }
.service-full-card .service-icon { background: rgba(26,39,68,.06); }
.service-full-card h3  { font-size: 1.15rem; margin-bottom: .65rem; }
.service-full-card > p { font-size: .875rem; color: var(--text-light); margin-bottom: 1.25rem; line-height: 1.7; }
.checklist { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.5rem; }
.checklist li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .855rem; color: var(--text);
}
.checklist li::before {
  content: '';
  display: inline-flex; flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231a2744' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}
.estimate-link {
  font-size: .855rem; font-weight: 700; color: var(--navy);
  display: inline-flex; align-items: center; gap: .3rem;
  padding-bottom: 2px; border-bottom: 2px solid var(--gold);
  transition: var(--transition);
}
.estimate-link:hover { color: var(--gold); gap: .55rem; }

/* ─── Gallery / Work Page ────────────────────── */
.gallery-filters { display: flex; gap: .65rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
  padding: .48rem 1.15rem; border-radius: 50px;
  font-size: .82rem; font-weight: 600; cursor: pointer;
  border: 2px solid var(--navy); background: transparent;
  color: var(--navy); transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: #1a2744; color: #ffffff; border-color: #1a2744; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }
.gallery-item  { background: var(--light); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.gallery-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.gallery-placeholder {
  height: 210px;
  background: linear-gradient(145deg, #dde3ef 0%, #c8d0e3 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; position: relative; overflow: hidden;
}
.gallery-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(26,39,68,.04) 0%, rgba(26,39,68,.12) 100%);
}
.gallery-placeholder svg { width: 38px; height: 38px; opacity: .28; color: var(--navy); position: relative; z-index: 1; }
.gallery-placeholder span { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); opacity: .4; position: relative; z-index: 1; }
.gallery-info { padding: 1rem 1.2rem; }
.gallery-tag { display: inline-block; font-size: .68rem; font-weight: 700; background: var(--light-blue); color: var(--navy); padding: .18rem .55rem; border-radius: 50px; margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .07em; }
.gallery-info h3 { font-size: .92rem; margin-bottom: .2rem; }
.gallery-info p  { font-size: .78rem; color: var(--text-light); }

/* ─── Contact Page ───────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; align-items: start; }
.contact-form-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-card h2   { font-size: 1.5rem; margin-bottom: .35rem; }
.contact-form-card > p  { color: var(--text-light); font-size: .875rem; margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .82rem; font-weight: 700; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .72rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .9rem; font-family: inherit; color: var(--text);
  background: white; transition: border-color .2s; outline: none;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,39,68,.07); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center;
  padding-right: 2.25rem;
}
.form-group textarea { resize: vertical; min-height: 115px; }
.form-submit { grid-column: 1 / -1; padding-top: .4rem; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; }
.hidden { display: none !important; }

/* Contact info panel */
.contact-info-panel { display: flex; flex-direction: column; gap: 1.25rem; }
.info-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem; }
.info-card h3 { font-size: .95rem; margin-bottom: 1.1rem; color: var(--navy); padding-bottom: .45rem; border-bottom: 2px solid var(--gold); display: inline-block; }
.info-item { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: .9rem; }
.info-item:last-child { margin-bottom: 0; }
.info-icon { width: 34px; height: 34px; background: #ffffff; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.info-icon svg { width: 17px; height: 17px; }
.info-label { font-size: .72rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .07em; }
.info-value { font-size: .875rem; font-weight: 600; color: var(--text); margin-top: 1px; }
.info-value a { color: var(--navy); }
.info-value a:hover { color: var(--gold); }

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-panel { display: grid; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .navbar-nav { display: none; }
  .hamburger  { display: flex; }
  .hero { min-height: 520px; }
  .hero-content { max-width: 860px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .trust-items { gap: .75rem 1.25rem; }
  .trust-divider { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 1.75rem; }
  .contact-info-panel { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid { grid-template-columns: 1fr; }
  .hero-cta { display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
  .hero-cta .btn { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; }
  .trust-item span { font-size: .77rem; }
}
















