/* ===========================
   TRUE VISION PHOTOGRAPHY
   Main Stylesheet
   =========================== */

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

:root {
  --gold: #c9a84c;
  --gold-light: #e0c068;
  --gold-dark: #a88630;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-mid: #1a1a1a;
  --dark-card: #1e1e1e;
  --dark-border: #2a2a2a;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-text: #bbbbbb;
  --gray-mid: #888888;
  --font-body: 'Montserrat', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --transition: all 0.3s ease;
  --shadow: 0 10px 40px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.2);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--white);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 700; }
p { color: var(--gray-text); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}
.section-title { color: var(--white); margin-bottom: 1rem; }
.section-desc { color: var(--gray-text); max-width: 650px; font-size: 1rem; }

/* --- Utility Classes --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.35);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--gold);
  color: var(--black);
}

/* --- Gold Divider --- */
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}
.gold-divider.centered { margin: 1rem auto 1.5rem; }

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(10px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu a {
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  border-radius: 3px;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--gold);
}
.nav-menu a:hover::after, .nav-menu a.active::after {
  left: 0.85rem; right: 0.85rem;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-dropdown > a::after { display: none; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--dark-mid);
  border: 1px solid var(--dark-border);
  border-top: 2px solid var(--gold);
  min-width: 240px;
  border-radius: 0 0 6px 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.7rem 1.25rem;
  font-size: 0.83rem;
  color: var(--gray-text);
  border-bottom: 1px solid var(--dark-border);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--gold); background: rgba(201,168,76,0.06); padding-left: 1.6rem; }

.nav-cta { margin-left: 1rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1800&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.05);
  animation: heroPan 20s ease-in-out infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.05) translateX(0); }
  to   { transform: scale(1.05) translateX(-2%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 1.5rem;
  margin-left: calc((100vw - 1200px)/2);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-badge i { font-size: 0.7rem; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold); }
.hero-desc { font-size: 1.05rem; color: var(--gray-text); margin-bottom: 2rem; max-width: 560px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 0.3rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ===========================
   TRUST BADGES
   =========================== */
.trust-bar {
  background: var(--dark-mid);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 1.5rem 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.trust-item i {
  font-size: 1.3rem;
  color: var(--gold);
}
.trust-item .ti-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.trust-item .ti-sub {
  font-size: 0.7rem;
  color: var(--gray-mid);
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services-section { background: var(--dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), var(--shadow-gold);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body { padding: 1.5rem; }
.service-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-card-icon i { color: var(--gold); font-size: 1rem; }
.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.88rem; margin-bottom: 1.2rem; }
.service-card a.card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.service-card a.card-link:hover { gap: 0.7rem; }

/* ===========================
   PRICING SECTION
   =========================== */
.pricing-section { background: var(--black); }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 3rem auto 0;
}
.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  padding: 2.5rem;
  position: relative;
  transition: var(--transition);
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 0.25rem 1rem;
  border-radius: 50px;
}
.pricing-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.pricing-card h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin: 1rem 0 0.25rem;
}
.pricing-price sup { font-size: 1.4rem; vertical-align: top; margin-top: 0.4rem; }
.pricing-note { font-size: 0.78rem; color: var(--gray-mid); margin-bottom: 1.5rem; }
.pricing-divider { height: 1px; background: var(--dark-border); margin: 1.5rem 0; }
.pricing-features { margin-bottom: 2rem; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.88rem;
  color: var(--gray-text);
}
.pricing-features li i { color: var(--gold); font-size: 0.85rem; margin-top: 0.15rem; flex-shrink: 0; }

/* ===========================
   WHY US SECTION
   =========================== */
.why-section { background: var(--dark-mid); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.why-icon i { color: var(--gold); font-size: 1.2rem; }
.why-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.why-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.6rem; }
.why-card p { font-size: 0.85rem; }

/* ===========================
   AREAS SECTION
   =========================== */
.areas-section { background: var(--black); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.area-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: var(--transition);
}
.area-card:hover { border-color: var(--gold); }
.area-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.area-card p { font-size: 0.85rem; }

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1400 50%, #0a0a0a 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { max-width: 550px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===========================
   PAGE HERO (Inner Pages)
   =========================== */
.page-hero {
  padding: 140px 0 70px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { font-size: 0.6rem; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 600px; margin: 0 auto 1.5rem; font-size: 1.05rem; }

/* ===========================
   SERVICE PAGE CONTENT
   =========================== */
.service-intro { background: var(--dark); }
.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-intro-img {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.service-intro-img img { width: 100%; height: 450px; object-fit: cover; }
.service-intro-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  pointer-events: none;
}

.service-features { background: var(--black); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 1.75rem;
  transition: var(--transition);
}
.feature-item:hover { border-color: var(--gold); transform: translateY(-3px); }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature-icon i { color: var(--gold); font-size: 1.1rem; }
.feature-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--white); }
.feature-item p { font-size: 0.87rem; }

.process-section { background: var(--dark-mid); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(10% + 24px);
  right: calc(10% + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-dark));
  opacity: 0.3;
}
.process-step { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px;
  background: var(--dark-card);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.process-step h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.8rem; }

/* ===========================
   ABOUT PAGE
   =========================== */
.about-story { background: var(--dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 800;
}
.about-badge-float .big-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1;
  display: block;
}
.about-badge-float small { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }

.values-section { background: var(--black); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 2rem;
  border-top: 3px solid var(--gold);
}
.value-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.87rem; }

.team-section { background: var(--dark-mid); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.team-card img { width: 100%; height: 260px; object-fit: cover; }
.team-card-body { padding: 1.5rem; }
.team-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.8rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.85rem; }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-section { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon i { color: var(--gold); font-size: 0.9rem; }
.contact-detail-text h5 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 0.25rem; }
.contact-detail-text p { font-size: 0.9rem; margin: 0; }
.contact-detail-text a:hover { color: var(--gold); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours-table td {
  padding: 0.4rem 0;
  font-size: 0.87rem;
  color: var(--gray-text);
  border-bottom: 1px solid var(--dark-border);
}
.hours-table td:first-child { color: var(--white); font-weight: 500; width: 120px; }
.hours-table tr:last-child td { border-bottom: none; }

.contact-form-wrap {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-text);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-mid);
  border: 1px solid var(--dark-border);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-mid); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group select option { background: var(--dark-mid); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; }

.map-section { background: var(--black); }
.map-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
  height: 420px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

.social-section { background: var(--dark-mid); padding: 50px 0; }
.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--dark-border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-text);
  transition: var(--transition);
}
.social-link i { font-size: 0.9rem; }
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark-mid);
  border-top: 1px solid var(--dark-border);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--dark-border);
}
.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer-brand p { font-size: 0.87rem; max-width: 280px; margin-bottom: 1.5rem; }
.footer-social {
  display: flex;
  gap: 0.6rem;
}
.footer-social a {
  width: 36px; height: 36px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-text);
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.85rem; color: var(--gray-mid); display: flex; align-items: center; gap: 0.4rem; }
.footer-col ul a i { font-size: 0.55rem; color: var(--gold); }
.footer-col ul a:hover { color: var(--gold); padding-left: 0.3rem; }

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  color: var(--gray-mid);
}
.footer-contact li i { color: var(--gold); font-size: 0.9rem; margin-top: 0.1rem; flex-shrink: 0; }
.footer-contact li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: var(--gray-mid);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: var(--gray-mid); }
.footer-bottom a:hover { color: var(--gold); }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section { background: var(--dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 1.75rem;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.4); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--gray-text);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.88rem; }
.testimonial-title { font-size: 0.75rem; color: var(--gray-mid); }

/* ===========================
   GALLERY STRIP
   =========================== */
.gallery-strip { background: var(--black); overflow: hidden; padding: 0; }
.gallery-strip-inner {
  display: flex;
  gap: 4px;
  height: 220px;
}
.gallery-strip-inner img {
  flex: 1;
  min-width: 0;
  object-fit: cover;
  transition: flex 0.5s ease;
  filter: grayscale(20%);
}
.gallery-strip-inner img:hover {
  flex: 2.5;
  filter: grayscale(0%);
}

/* ===========================
   STATS COUNTER
   =========================== */
.stats-section {
  background: var(--dark-mid);
  padding: 60px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  margin-top: 0.4rem;
}
.stat-item .stat-desc {
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-top: 0.3rem;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .hero-content { margin-left: 1.5rem; }
}

@media (max-width: 900px) {
  .grid-2, .about-grid, .service-intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 480px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-badge-float { position: static; margin-top: 1rem; display: inline-block; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.98);
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 999;
    padding: 2rem;
  }
  .nav-menu.open a { font-size: 1.1rem; padding: 0.75rem 1.5rem; }
  .nav-menu.open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    background: rgba(255,255,255,0.05);
    min-width: auto;
    border-radius: 6px;
    margin-top: 0.25rem;
  }
  .services-grid, .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid, .values-grid, .team-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-content { margin: 0; padding: 0 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-strip-inner { height: 140px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1.5rem; }
  .trust-items { gap: 1.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ===========================
   MISC / ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.section-header { margin-bottom: 0.5rem; }

/* Sticky close button for mobile nav */
.nav-close {
  display: none;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}
.nav-menu.open .nav-close { display: block; }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 500;
  font-size: 1rem;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-2px); }
