/* ============================================================
   Moore Power Electrical — Main Stylesheet
   ============================================================ */

:root {
  --teal:        #3D7A6F;
  --teal-dark:   #2c5a52;
  --teal-light:  #4e9b8d;
  --gold:        #F5C035;
  --gold-dark:   #d4a520;
  --dark:        #1a2332;
  --dark-mid:    #2c3e50;
  --grey:        #6c757d;
  --grey-light:  #f4f6f8;
  --white:       #ffffff;
  --text:        #2d3748;
  --border:      #e2e8f0;

  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Open Sans', sans-serif;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.18);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.3s ease;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* ── Utilities ────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(61,122,111,.1);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-tag.gold {
  color: var(--gold-dark);
  background: rgba(245,192,53,.15);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,192,53,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,122,111,.35);
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: var(--dark);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-logo.scrolled img { height: 40px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: .03em;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-cta { margin-left: 0; }
.nav-portal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.18);
  padding: 7px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-portal:hover {
  color: var(--gold);
  border-color: rgba(245,192,53,.45);
  background: rgba(245,192,53,.06);
}
.power-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--white);
  transition: var(--transition);
}
.power-btn:hover {
  background: rgba(245,192,53,.15);
  border-color: rgba(245,192,53,.4);
  color: var(--gold);
}
.power-btn.active {
  background: rgba(245,192,53,.2);
  border-color: var(--gold);
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide:nth-child(1) { background-image: url('../images/iCloud%20Photos%20from%20David%20Moore/IMG_6323.JPEG'); }
.hero-slide:nth-child(2) { background-image: url('../images/iCloud%20Photos%20from%20David%20Moore/IMG_6904.JPG'); }
.hero-slide:nth-child(3) { background-image: url('../images/iCloud%20Photos%20from%20David%20Moore/IMG_1738.JPEG'); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,35,50,.82) 0%,
    rgba(26,35,50,.55) 60%,
    rgba(61,122,111,.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,192,53,.15);
  border: 1px solid rgba(245,192,53,.3);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,.82);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
}
.hero-phone:hover { color: var(--gold); }
.hero-phone-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.hero-indicators {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.hero-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}
.scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  font-family: var(--font-head);
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
}

/* ══════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--dark);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-family: var(--font-head);
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .03em;
}
.trust-item .trust-icon {
  font-size: 1.2rem;
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════ */
.services { padding: 90px 0; background: var(--white); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { color: var(--dark); margin-bottom: 14px; }
.section-header p  { color: var(--grey); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-img {
  height: 190px;
  overflow: hidden;
  position: relative;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,35,50,.5), transparent);
}
.service-icon-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.service-body { padding: 22px 20px 24px; }
.service-body h3 { color: var(--dark); margin-bottom: 8px; }
.service-body p  { color: var(--grey); font-size: .9rem; line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   WHY CHOOSE US
   ══════════════════════════════════════════════════════════ */
.why-us {
  padding: 90px 0;
  background: var(--grey-light);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(61,122,111,.08), transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.why-image img { width: 100%; height: 480px; object-fit: cover; }
.why-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--dark);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}
.why-image-badge .badge-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.why-image-badge .badge-label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-top: 2px;
}
.why-content h2 { color: var(--dark); margin-bottom: 16px; }
.why-content .lead {
  color: var(--grey);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.75;
}
.why-points { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-point-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: rgba(61,122,111,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--teal);
  transition: var(--transition);
}
.why-point:hover .why-point-icon {
  background: var(--teal);
  color: var(--white);
}
.why-point-text h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.why-point-text p { color: var(--grey); font-size: .9rem; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   GALLERY TEASER
   ══════════════════════════════════════════════════════════ */
.gallery-teaser { padding: 90px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
  margin-bottom: 36px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.gallery-item:nth-child(2) { grid-column: 3; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 4; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 3; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 4; grid-row: 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,35,50,.45);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-footer { text-align: center; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.testimonials {
  padding: 90px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.testimonials::after {
  content: '"';
  position: absolute;
  top: -30px;
  right: 60px;
  font-size: 18rem;
  font-family: var(--font-head);
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
}
.testimonials .section-tag { color: var(--gold); background: rgba(245,192,53,.15); }
.testimonials h2 { color: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(245,192,53,.2);
  transform: translateY(-4px);
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: .9rem;
}
.author-info span { color: rgba(255,255,255,.5); font-size: .82rem; }

/* ══════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/iCloud%20Photos%20from%20David%20Moore/IMG_6904.JPG') center/cover no-repeat;
  opacity: .12;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); margin-bottom: 10px; }
.cta-text p  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 500px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.cta-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
}
.cta-phone-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.cta-divider { color: rgba(255,255,255,.4); font-size: 1.5rem; }

/* ══════════════════════════════════════════════════════════
   SERVICE AREA
   ══════════════════════════════════════════════════════════ */
.service-area {
  background: #f5f5f5;
  padding: 40px 0;
  text-align: center;
}
.service-area h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #3D7A6F;
  margin-bottom: 12px;
}
.service-area p {
  font-size: .9rem;
  color: #666;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
footer {
  background: var(--dark);
  padding: 64px 0 0;
  color: rgba(255,255,255,.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo { height: 44px; margin-bottom: 18px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-tagline {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: .82rem;
  font-style: italic;
  margin-top: 12px;
}
footer h4 {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a::before { content: '→'; opacity: 0; transition: var(--transition); }
.footer-links a:hover::before { opacity: 1; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: .9rem;
}
.footer-contact-icon {
  width: 32px; height: 32px;
  background: rgba(61,122,111,.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  color: var(--teal-light);
}
.footer-contact-item a { color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
}
.footer-bottom span { color: rgba(255,255,255,.4); }
.footer-bottom .footer-cert {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
}
.footer-cert span { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  opacity: .7;
  transition: var(--transition);
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }

/* ══════════════════════════════════════════════════════════
   MOBILE NAVIGATION MENU
   ══════════════════════════════════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.mobile-menu-close:hover { color: var(--gold); border-color: rgba(245,192,53,.4); }
.mobile-portal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35) !important;
  border: 1px solid rgba(255,255,255,.12);
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-portal:hover { color: var(--gold) !important; border-color: rgba(245,192,53,.35); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .power-btn { display: flex; }

  .hero { height: 100svh; }
  .hero-sub { font-size: 1rem; }
  .scroll-hint { display: none; }

  .trust-bar-inner { gap: 20px; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-image img { height: 300px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
  .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .gallery-item:nth-child(4) { grid-column: 1; grid-row: 3; }
  .gallery-item:nth-child(5) { grid-column: 2; grid-row: 3; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-phone { font-size: 1.2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .trust-bar-inner { flex-direction: column; gap: 14px; }
}
