/* ============================================================
   P.W.I. Inc — Wallpaper Installation Jacksonville, FL
   styles.css — Mobile-first, modern, premium contractor design
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  background: #0a0f1e;
  color: #e2e8f0;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ---- VARIABLES ---- */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --dark: #0a0f1e;
  --dark2: #111827;
  --dark3: #1a2235;
  --mid: #1e2d45;
  --accent: #2563eb;
  --accent2: #3b82f6;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.5);
  --transition: all 0.3s ease;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: var(--text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0f1e;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(201,168,76,0.6);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  transform: scale(1.05);
}

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header p { max-width: 680px; margin: 0.75rem auto 0; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.75); }
.section-eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-eyebrow.light { color: var(--gold-light); }

/* ---- SCROLL REVEAL ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: transparent;
  transition: var(--transition);
}
#header.scrolled .navbar {
  background: rgba(10,15,30,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  padding: 0.8rem 2rem;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.brand-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #0a0f1e;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px rgba(201,168,76,0.4);
}
.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { left: 10%; right: 10%; }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0f1e !important;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(201,168,76,0.4);
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(201,168,76,0.6); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(10,15,30,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    transition: right 0.35s ease;
    border-left: 1px solid rgba(201,168,76,0.2);
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1rem; width: 100%; padding: 0.75rem 1rem; }
  .nav-cta { margin-top: 0.5rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    url('../images/wallpaper-installation-jacksonville-living-room.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,15,30,0.92) 0%,
    rgba(10,15,30,0.75) 50%,
    rgba(37,99,235,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 2rem 1.5rem;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-content h1 {
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #ffffff 60%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: 50px;
}
.badge i { color: var(--gold); }
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 1.8s infinite;
}
@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: 0.4; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  position: relative;
  background: var(--dark2);
  padding: 5rem 0;
}
.wave-top, .wave-bottom {
  position: absolute;
  left: 0; right: 0;
  line-height: 0;
}
.wave-top { top: -1px; }
.wave-bottom { bottom: -1px; }
.wave-top svg, .wave-bottom svg { width: 100%; height: 60px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
}
.about-img-frame:hover img { transform: scale(1.04); }
.about-img-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0f1e;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.5);
}
.badge-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-content .section-eyebrow { display: inline-block; margin-bottom: 0.75rem; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(201,168,76,0.4);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-frame img { height: 280px; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: var(--dark3);
  padding: 6rem 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  border-color: rgba(201,168,76,0.3);
}
.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.08); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,15,30,0.2), rgba(10,15,30,0.7));
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-overlay { opacity: 1; }
.service-overlay i {
  font-size: 2rem;
  color: var(--gold);
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.6));
}
.service-body {
  padding: 1.5rem;
}
.service-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.service-body p { font-size: 0.9rem; margin: 0; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  position: relative;
  padding: 6rem 0;
  background:
    url('../images/commercial-wallpaper-installation-jacksonville-office.jpg') center/cover no-repeat fixed;
}
.why-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,0.93), rgba(37,99,235,0.35));
}
.why-section .container { position: relative; z-index: 2; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.why-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #0a0f1e;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  transition: transform 0.3s ease;
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-5deg); }
.why-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin: 0; }

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  background: var(--dark2);
  padding: 6rem 0;
  position: relative;
}
.reviews-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--mid);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 4rem;
  color: rgba(201,168,76,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.review-stars i { color: var(--gold); font-size: 0.9rem; }
.review-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0a0f1e;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
}
.review-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-section {
  position: relative;
  padding: 6rem 0;
  background:
    url('../images/feature-wallpaper-installation-jacksonville-dining-room.jpg') center/cover no-repeat;
}
.areas-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,15,30,0.95) 0%, rgba(30,45,69,0.9) 100%);
}
.areas-section .container { position: relative; z-index: 2; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.area-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.area-card:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.area-card i {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  display: block;
}
.area-card span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.area-card small {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.areas-cta {
  text-align: center;
}
.areas-cta p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.areas-cta a { color: var(--gold); font-weight: 600; text-decoration: underline; }
.areas-cta a:hover { color: var(--gold-light); }

@media (max-width: 900px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--dark3);
  padding: 6rem 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--mid);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 4px 24px rgba(201,168,76,0.1);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.faq-icon i { font-size: 0.75rem; color: var(--gold); }
.faq-item.open .faq-icon { transform: rotate(180deg); background: rgba(201,168,76,0.2); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  position: relative;
  padding: 6rem 0;
  background: var(--dark2);
}
.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(37,99,235,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 100% 0%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.contact-section .container { position: relative; z-index: 2; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}
.contact-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-detail i {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}
.contact-detail span, .contact-detail a {
  font-size: 0.95rem;
  color: var(--white);
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--gold); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.req { color: var(--gold); }
.form-group input,
.form-group textarea {
  background: var(--mid);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(30,45,69,0.8);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.btn-submit {
  align-self: flex-start;
  padding: 0.9rem 2.5rem;
}
.form-success-msg {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
}
.form-success-msg i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.form-success-msg h3 { margin-bottom: 0.5rem; }
.form-success-msg p { color: rgba(255,255,255,0.7); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   MAP
   ============================================================ */
.map-section { background: var(--dark); }
.map-header {
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}
.map-header h2 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.map-header p { color: var(--text-muted); font-size: 0.9rem; }
.map-embed iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #060a14; }
.footer-top { padding: 4rem 0 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-logo i {
  font-size: 1.5rem;
  color: var(--gold);
}
.footer-logo span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); }
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li, .footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-nap address p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.footer-nap address a { color: var(--text-muted); transition: color 0.2s; }
.footer-nap address a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* Selection */
::selection { background: rgba(201,168,76,0.3); color: var(--white); }
