/* =============================================
   LuxeElectric — Main Stylesheet
   Dark + Gold Premium Theme
   ============================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --gold:        #f5a623;
  --gold-light:  #ffd166;
  --gold-dark:   #c87d10;
  --bg:          #0a0a0a;
  --surface:     #111111;
  --surface-2:   #181818;
  --surface-3:   #202020;
  --text:        #efefef;
  --text-muted:  #a0a0a0;
  --text-faint:  #666666;
  --border:      rgba(255,255,255,0.07);
  --border-gold: rgba(245,166,35,0.28);
  --glow:        rgba(245,166,35,0.1);
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0,0,0,0.45);
  --shadow-gold: 0 0 28px rgba(245,166,35,0.1);
  --transition:  0.25s cubic-bezier(0.4,0,0.2,1);
  --nav-height:  66px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.page-hero + .section { padding-top: 48px; }

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.22);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.badge i { font-size: 0.68rem; }

.section-header { margin-bottom: 44px; }
.section-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.22;
  margin-top: 10px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 14px;
  max-width: 520px;
}
.section-header.center { text-align: center; }
.section-header.center p { margin: 16px auto 0; }

.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-top: 16px;
}
.center .divider { margin: 16px auto 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  outline: none;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  box-shadow: 0 2px 10px rgba(245,166,35,0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245,166,35,0.32);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-outline {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(235,235,235,0.82);
}
.btn-outline:hover {
  border-color: rgba(245,166,35,0.6);
  color: #ffffff;
  background: rgba(245,166,35,0.07);
  transform: translateY(-1px);
}
.btn-outline:active { transform: translateY(0); }

.btn-lg { padding: 14px 30px; font-size: 0.95rem; }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: #0d0d0d;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(245,166,35,0.08);
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.navbar.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  text-decoration: none;
  background: none;
}
.nav-logo-icon-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-icon {
  height: 36px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 5px rgba(255,180,0,0.3));
  transition: transform 0.35s ease, filter 0.35s ease;
}
.nav-logo:hover .nav-logo-icon {
  transform: scale(1.04);
  filter: drop-shadow(0 0 8px rgba(255,180,0,0.45));
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  transform: translateY(1px);
}
.nav-logo-main {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.nav-logo:hover .nav-logo-main {
  color: #f5b942;
}
.nav-logo-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.nav-links a.active {
  color: var(--gold);
  background: rgba(245,166,35,0.1);
  border-radius: 100px;
  font-weight: 600;
}
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(245,166,35,0.1);
  padding: 8px 20px 28px;
  z-index: 999;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  display: none;
}
.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Nav links */
.mobile-nav a:not(.btn) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.97rem;
  font-weight: 500;
  color: rgba(240,240,240,0.75);
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}
.mobile-nav a:not(.btn):last-of-type { border-bottom: none; }
.mobile-nav a:not(.btn):hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
  padding-left: 18px;
}
.mobile-nav a:not(.btn).active {
  color: var(--gold);
  background: rgba(245,166,35,0.07);
  font-weight: 600;
}
.mobile-nav a:not(.btn).active::after {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.8;
}

/* CTA button in mobile nav */
.mobile-nav .btn {
  margin-top: 18px;
  width: 100%;
  justify-content: center;
}
.mobile-nav .btn-primary {
  color: #000 !important;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  box-shadow: none;
  border-radius: 12px;
  padding: 15px 28px;
}
.mobile-nav .btn-primary:hover,
.mobile-nav .btn-primary:active {
  transform: scale(0.98);
  box-shadow: 0 2px 12px rgba(245,166,35,0.25);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Background image with continuous Ken Burns zoom */
.hero::before {
  content: '';
  position: absolute;
  inset: -8%;
  background: url('../images/Hero image.jpeg') center center / cover no-repeat;
  animation: hero-zoom 18s ease-in-out infinite alternate;
  z-index: 0;
  will-change: transform;
}

/* Multi-layer gradient overlay — left side heavier for text legibility */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.93) 0%, rgba(0,0,0,0.72) 48%, rgba(0,0,0,0.38) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 28%, transparent 58%, rgba(0,0,0,0.65) 100%),
    radial-gradient(ellipse 90% 80% at 70% 50%, transparent 30%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

@keyframes hero-zoom {
  from { transform: scale(1.0);  }
  to   { transform: scale(1.08); }
}

.hero-visual { display: none; }

.hero .container,
.hero .scroll-indicator { position: relative; z-index: 2; }

.hero-content { max-width: 560px; }

.hero h1 {
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  animation: hero-fade-up 0.8s ease both;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 0.97rem;
  color: rgba(195,195,195,0.82);
  line-height: 1.72;
  max-width: 440px;
  margin-bottom: 28px;
  animation: hero-fade-up 0.8s ease 0.15s both;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: hero-fade-up 0.8s ease 0.28s both;
}

/* Button icon micro-interactions */
.btn i { transition: transform 0.25s ease; }
.btn:hover .fa-arrow-right { transform: translateX(4px); }
.btn:hover .fa-bolt { transform: scale(1.2) rotate(-5deg); }
.btn:hover .fa-paper-plane { transform: translateX(3px) translateY(-3px); }

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat strong {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* Hero eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,166,35,0.85);
  background: rgba(245,166,35,0.07);
  border: 1px solid rgba(245,166,35,0.18);
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 18px;
  animation: hero-fade-up 0.9s ease both;
}
.hero-eyebrow i { font-size: 0.72rem; }

/* Hero trust badges */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 0;
  animation: hero-fade-up 0.9s ease 0.5s both;
}
.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(210,210,210,0.75);
  letter-spacing: 0.02em;
}
.hero-trust-badge i {
  color: rgba(245,166,35,0.75);
  font-size: 0.78rem;
}
.hero-trust-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .hero-trust { gap: 12px; }
  .hero-trust-divider { display: none; }
  .hero-trust-badge { font-size: 0.78rem; }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator i { font-size: 1.2rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Trust / Stats Bar ---------- */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ---------- Services Section ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle top-left warm tint on hover */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(245,166,35,0.05) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover {
  border-color: rgba(245,166,35,0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,166,35,0.1);
}
.service-card:hover::before { opacity: 1; }

/* Icon */
.service-icon {
  width: 58px; height: 58px;
  background: rgba(245,166,35,0.07);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  color: var(--gold);
  margin-bottom: 22px;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.1);
  background: rgba(245,166,35,0.14);
  box-shadow: 0 0 18px rgba(245,166,35,0.22);
}

/* Title */
.service-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #f0f0f0;
}

/* Description */
.service-card p {
  font-size: 0.875rem;
  color: rgba(170,170,170,0.85);
  line-height: 1.75;
  margin-bottom: 0;
}

/* CTA link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.25s ease, gap 0.3s ease;
  position: relative;
}
.service-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.service-link:hover {
  color: var(--gold-light);
  gap: 11px;
}
.service-link:hover::after { width: 100%; }
.service-link i {
  transition: transform 0.3s ease;
}
.service-link:hover i { transform: translateX(3px); }

/* Featured service card */
.service-card.featured {
  background: linear-gradient(145deg, #16120a, #131313);
  border-color: rgba(245,166,35,0.3);
  box-shadow: 0 0 0 1px rgba(245,166,35,0.06) inset;
}
.service-card.featured::after {
  content: 'Most Popular';
  position: absolute;
  top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  pointer-events: none;
}
.service-card.featured:hover {
  border-color: rgba(245,166,35,0.45);
  box-shadow: 0 12px 36px rgba(245,166,35,0.14), 0 4px 16px rgba(0,0,0,0.5);
}

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--surface); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.stars i { color: var(--gold); font-size: 0.9rem; }
.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.author-name {
  font-size: 0.95rem;
  font-weight: 600;
}
.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- Home Intro Section Background ---------- */
.intro-section {
  position: relative;
  overflow: hidden;
  background:
    /* Particles */
    radial-gradient(circle 1.5px at 12% 22%, rgba(245,166,35,0.6)  0%, transparent 100%),
    radial-gradient(circle 1px  at 78% 15%, rgba(245,166,35,0.5)  0%, transparent 100%),
    radial-gradient(circle 2px  at 90% 72%, rgba(245,166,35,0.45) 0%, transparent 100%),
    radial-gradient(circle 1px  at 30% 85%, rgba(245,166,35,0.4)  0%, transparent 100%),
    radial-gradient(circle 1.5px at 94% 42%, rgba(245,166,35,0.48) 0%, transparent 100%),
    radial-gradient(circle 1px  at  5% 58%, rgba(245,166,35,0.38) 0%, transparent 100%),
    radial-gradient(circle 1px  at 52% 90%, rgba(245,166,35,0.35) 0%, transparent 100%),
    radial-gradient(circle 2px  at 42% 10%, rgba(245,166,35,0.52) 0%, transparent 100%),
    radial-gradient(circle 1px  at 66% 78%, rgba(245,166,35,0.32) 0%, transparent 100%),
    radial-gradient(circle 1.5px at 22% 50%, rgba(245,166,35,0.38) 0%, transparent 100%),
    /* Strong center glow behind heading */
    radial-gradient(ellipse 40% 50% at 50% 38%, rgba(245,166,35,0.18) 0%, transparent 62%),
    /* Wide soft bloom */
    radial-gradient(ellipse 70% 75% at 50% 45%, rgba(245,166,35,0.07) 0%, transparent 70%),
    /* Side glows */
    radial-gradient(ellipse 38% 70% at   0% 50%, rgba(245,166,35,0.09) 0%, transparent 62%),
    radial-gradient(ellipse 38% 70% at 100% 50%, rgba(245,166,35,0.08) 0%, transparent 62%),
    #000;
}

/* Ring 1 — outer */
.intro-section::before {
  content: '';
  position: absolute;
  width: 680px; height: 680px;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.07);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Ring 2 — inner */
.intro-section::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.09);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Content above decorative layers */
.intro-section .container {
  position: relative;
  z-index: 1;
}

/* ---------- Home Intro Pillars ---------- */
.intro-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.intro-pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.intro-pillar:hover {
  border-color: rgba(245,166,35,0.3);
  box-shadow: 0 8px 32px rgba(245,166,35,0.08);
  transform: translateY(-4px);
}
.intro-pillar-icon {
  width: 56px; height: 56px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: background 0.35s, box-shadow 0.35s;
}
.intro-pillar:hover .intro-pillar-icon {
  background: rgba(245,166,35,0.14);
  box-shadow: 0 0 16px rgba(245,166,35,0.2);
}
.intro-pillar h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.intro-pillar p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
@media (max-width: 640px) {
  .intro-pillars { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--surface);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(245,166,35,0.06), transparent);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(245,166,35,0.04), transparent);
  border-radius: 50%;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ---------- Footer ---------- */
.footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 60px 0 28px;
}
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(245,166,35,0.07) 0%, rgba(245,166,35,0.02) 100%);
  border: 1px solid rgba(245,166,35,0.22);
  border-radius: var(--radius-lg);
  padding: 26px 36px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.footer-cta p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.footer-cta p span {
  color: var(--gold);
}
@media (max-width: 600px) {
  .footer-cta { flex-direction: column; text-align: center; }
  .footer-cta .btn { width: 100%; justify-content: center; }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 52px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-logo img {
  width: 50px;
  height: auto;
  display: block;
  flex-shrink: 0;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.footer-logo-main {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}
.footer-logo-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
  white-space: nowrap;
}
.footer-brand p {
  color: #8a8a8a;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,166,35,0.06);
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #8a8a8a;
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item span {
  color: #8a8a8a;
  font-size: 0.875rem;
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: #555;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--gold); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: calc(var(--nav-height) + 20px) 0 24px;
  position: relative;
  overflow: hidden;
  background:
    /* Particles */
    radial-gradient(circle 1.5px at 17% 26%, rgba(245,166,35,0.65) 0%, transparent 100%),
    radial-gradient(circle 1px  at 73% 18%, rgba(245,166,35,0.55) 0%, transparent 100%),
    radial-gradient(circle 2px  at 86% 68%, rgba(245,166,35,0.5)  0%, transparent 100%),
    radial-gradient(circle 1px  at 34% 80%, rgba(245,166,35,0.45) 0%, transparent 100%),
    radial-gradient(circle 1.5px at 91% 38%, rgba(245,166,35,0.5) 0%, transparent 100%),
    radial-gradient(circle 1px  at  7% 60%, rgba(245,166,35,0.4)  0%, transparent 100%),
    radial-gradient(circle 1px  at 55% 86%, rgba(245,166,35,0.38) 0%, transparent 100%),
    radial-gradient(circle 2px  at 44% 14%, rgba(245,166,35,0.55) 0%, transparent 100%),
    radial-gradient(circle 1px  at 62% 74%, rgba(245,166,35,0.35) 0%, transparent 100%),
    radial-gradient(circle 1.5px at 25% 55%, rgba(245,166,35,0.4) 0%, transparent 100%),
    radial-gradient(circle 1px  at 78% 88%, rgba(245,166,35,0.3)  0%, transparent 100%),
    /* Strong tight center glow — main highlight */
    radial-gradient(ellipse 36% 48% at 50% 44%, rgba(245,166,35,0.18) 0%, transparent 60%),
    /* Soft wide bloom */
    radial-gradient(ellipse 65% 75% at 50% 48%, rgba(245,166,35,0.07) 0%, transparent 70%),
    /* Side glows — reduced */
    radial-gradient(ellipse 38% 70% at  0% 50%, rgba(245,166,35,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 38% 70% at 100% 50%, rgba(245,166,35,0.08) 0%, transparent 60%),
    #000;
  border-bottom: 1px solid rgba(245,166,35,0.12);
  text-align: center;
}

/* Ring 1 — large outer, toned down */
.page-hero::before {
  content: '';
  position: absolute;
  width: 660px; height: 660px;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -46%);
  pointer-events: none;
  z-index: 0;
}

/* Ring 2 — inner, toned down */
.page-hero::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.14);
  top: 50%; left: 50%;
  transform: translate(-50%, -38%);
  pointer-events: none;
  z-index: 0;
}

/* Content above decorative layers */
.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 12px 0 16px;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-faint); }

/* ---------- Services Full Page ---------- */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Premium image-top card */
.service-full-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-full-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,0.22);
  box-shadow: 0 10px 32px rgba(0,0,0,0.5);
}

/* --- Image block --- */
.sfc-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.sfc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.service-full-card:hover .sfc-image img {
  transform: scale(1.07);
}

/* Full dark gradient overlay for readability + bleed into body */
.sfc-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.18) 0%,
      rgba(0,0,0,0.1) 40%,
      rgba(0,0,0,0.55) 75%,
      #111111 100%);
  pointer-events: none;
}

/* Placeholder gradient when image is missing */
.sfc-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(212,160,23,0.35);
}
.sfc-image-placeholder.p-residential {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1208 50%, #0e0b04 100%);
}
.sfc-image-placeholder.p-commercial {
  background: linear-gradient(135deg, #080c12 0%, #0d1520 50%, #090d14 100%);
}
.sfc-image-placeholder.p-smart {
  background: linear-gradient(135deg, #080d10 0%, #0a1a1e 50%, #06101a 100%);
}
.sfc-image-placeholder.p-panel {
  background: linear-gradient(135deg, #0d0808 0%, #1a0c08 50%, #110906 100%);
}
.sfc-image-placeholder.p-emergency {
  background: linear-gradient(135deg, #120808 0%, #1e0e0a 50%, #140906 100%);
}
.sfc-image-placeholder.p-outdoor {
  background: linear-gradient(135deg, #080d08 0%, #0c1a0c 50%, #091208 100%);
}
.sfc-image-placeholder.p-ev {
  background: linear-gradient(135deg, #08080e 0%, #10101e 50%, #0a0a18 100%);
}
.sfc-image-placeholder.p-landscape {
  background: linear-gradient(135deg, #080e09 0%, #0d1e0f 50%, #0a1209 100%);
}

/* --- Body block --- */
.sfc-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Icon + title row */
.sfc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.sfc-icon {
  width: 44px; height: 44px;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: #d4a017;
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.service-full-card:hover .sfc-icon {
  background: rgba(212, 160, 23, 0.15);
  box-shadow: 0 0 14px rgba(212, 160, 23, 0.25);
}
.sfc-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* Description */
.sfc-body > p {
  color: #9a9a9a;
  font-size: 0.88rem;
  line-height: 1.72;
  margin-bottom: 20px;
  flex: 1;
}

/* CTA link */
.sfc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: gap 0.25s ease, color 0.25s ease;
}
.sfc-cta:hover { color: var(--gold-light); gap: 13px; }
.sfc-cta i { transition: transform 0.25s ease; }
.sfc-cta:hover i { transform: translateX(3px); }

/* Tags */
.sfc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}
.sfc-tag {
  background: rgba(212, 160, 23, 0.07);
  border: 1px solid rgba(212, 160, 23, 0.2);
  color: #b8862a;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}
.sfc-tag:hover {
  background: rgba(212, 160, 23, 0.15);
  color: #d4a017;
}

/* Legacy alias — keeps any old .service-features / .feature-tag references working */
.service-features { display: flex; flex-wrap: wrap; gap: 7px; }
.feature-tag {
  background: rgba(212,160,23,0.07);
  border: 1px solid rgba(212,160,23,0.2);
  color: #b8862a;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .sfc-image { height: 200px; }
  .sfc-body { padding: 20px 20px 22px; }
}
@media (max-width: 480px) {
  .services-full-grid { grid-template-columns: 1fr; }
  .sfc-image { height: 190px; }
}

/* Process section */
.process-section { background: var(--surface); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 15%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.process-step { text-align: center; position: relative; }
.step-number {
  width: 56px; height: 56px;
  background: var(--surface-2);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 20px;
}
.process-step h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- About Page ---------- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.about-image {
  position: relative;
  min-height: 500px;
}
.about-image-box {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 0;
  margin: 0;
}
.about-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-badge-float { display: none; }
.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 12px 0 20px;
}
.about-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.value-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.value-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.value-item h5 { font-size: 0.9rem; font-weight: 600; margin-bottom: 3px; }
.value-item p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  margin: 0 auto 16px;
  border: 3px solid rgba(245,166,35,0.2);
}
.team-card h4 { font-size: 1rem; font-weight: 600; }
.team-card .role {
  font-size: 0.8rem;
  color: var(--gold);
  margin: 4px 0 12px;
}
.team-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Certifications */
.certs-section { background: var(--surface); }
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cert-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.cert-card:hover { border-color: var(--border-gold); }
.cert-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.cert-card h5 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.cert-card p { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- Contact Section Background ---------- */
.contact-section {
  position: relative;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E") repeat,
    radial-gradient(ellipse 65% 55% at 88% 12%, rgba(255,170,0,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 12% 90%, rgba(255,170,0,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 50% 42%, rgba(255,170,0,0.04) 0%, transparent 55%),
    #000;
  overflow: hidden;
}

/* Top-right glow blob */
.contact-section::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.04) 0%, transparent 68%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Bottom-left glow blob */
.contact-section::after {
  content: '';
  position: absolute;
  bottom: -140px; left: -140px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245,166,35,0.03) 0%, transparent 68%);
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

/* Ensure content sits above blobs */
.contact-section .container {
  position: relative;
  z-index: 1;
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}
.contact-info h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 10px 0 12px;
}
.contact-info > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-cards { display: flex; flex-direction: column; gap: 10px; }
.contact-card {
  background: transparent;
  border: none;
  border-left: 2px solid rgba(245,166,35,0.18);
  border-radius: 0;
  padding: 14px 0 14px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color var(--transition);
}
.contact-card:hover { border-left-color: rgba(245,166,35,0.5); }
.contact-card-icon {
  width: 36px; height: 36px;
  background: rgba(245,166,35,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-card h4 { font-size: 0.82rem; font-weight: 600; margin-bottom: 3px; color: var(--text); }
.contact-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-form-wrap h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: #aaaaaa;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--text);
  font-size: 0.88rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group select option { background: var(--surface); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(245,166,35,0.45);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.07);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; font-size: 0.85rem; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

/* Input icon wrapper */
.input-icon-wrap {
  position: relative;
}
.input-icon-wrap > i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-faint);
  font-size: 0.82rem;
  pointer-events: none;
  transition: color 0.25s;
  z-index: 1;
}
.input-icon-wrap input,
.input-icon-wrap select {
  padding-left: 40px;
}
.input-icon-wrap:focus-within > i {
  color: var(--gold);
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(245,166,35,0.06);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  margin-top: 20px;
}
.form-success i { font-size: 2rem; color: var(--gold); margin-bottom: 10px; }
.form-success h4 { font-size: 1.1rem; margin-bottom: 6px; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* ---------- Map Section ---------- */
.map-wrap {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(245,166,35,0.2);
  box-shadow: 0 0 40px rgba(245,166,35,0.06);
}
.map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(92%) contrast(88%) brightness(0.55);
}
.map-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(245,166,35,0.04) 0%, transparent 70%),
    linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.map-content {
  position: absolute;
  bottom: 28px; left: 28px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245,166,35,0.18);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  max-width: 260px;
}
.map-content > i {
  font-size: 1.6rem;
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(245,166,35,0.35));
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 480px) {
  .map-wrap { height: 320px; }
}

/* ---------- FAQ Section ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--border-gold); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  gap: 12px;
}
.faq-question i {
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-full-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 32px; }
  .about-image { min-height: 320px; }
  .about-image-box { min-height: 320px; }
  .intro-pillars { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  .section { padding: 60px 0; }
  .section-sm { padding: 40px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-logo-icon { height: 30px; width: auto; }
  .nav-logo-main { font-size: 0.88rem; letter-spacing: 0.11em; }
  .nav-logo-sub  { font-size: 0.55rem; letter-spacing: 0.16em; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .hero p { font-size: 0.95rem; }
  .hero-cta { gap: 10px; }
  .services-grid { grid-template-columns: 1fr; }
  .intro-pillars { grid-template-columns: 1fr; gap: 12px; }
  .cta-banner { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .footer-cta { padding: 20px 24px; }
  .services-full-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; width: 100%; }
  .hero-trust { gap: 10px; }
  .hero-trust-divider { display: none; }
  .page-hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .contact-form-wrap { padding: 20px 16px; }
  .cta-banner { padding: 28px 20px; }
  .footer-grid { gap: 24px; }
  .sfc-body { padding: 18px 18px 20px; }
}
