/* ============================================
   MPW Dentistry - Premium & Elegant Design
   Dr Michael Walker - Sleep Dentist Sydney
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --color-bg-dark: #0f0f1a;
  --color-bg-primary: #141420;
  --color-bg-secondary: #1a1a28;
  --color-bg-card: #1e1e2a;
  --color-gold: #c9a84c;
  --color-gold-light: #e8d5a3;
  --color-gold-dark: #a68a3a;
  --color-text-light: #f0f0f0;
  --color-text-muted: #b0b0c0;
  --color-text-dark: #1a1a2e;
  --color-white: #ffffff;
  --color-border: rgba(201, 168, 76, 0.2);
  --color-overlay: rgba(15, 15, 26, 0.85);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --transition: all 0.3s ease;
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-gold-light);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Gold Decorative Elements ---------- */
.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  margin: 1rem 0 1.5rem;
}

.gold-line-center {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  margin: 1rem auto 1.5rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-bg-dark);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: var(--color-bg-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
}

/* ---------- Header / Navigation ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000000;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.header.scrolled {
  background: #000000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  height: 90px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img {
  height: 60px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-white);
  font-weight: 700;
}

.logo-text span {
  color: var(--color-gold);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav a {
  color: var(--color-text-light);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  padding: 8px 11px;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
  width: 60%;
}

.nav a:hover,
.nav a.active {
  color: var(--color-gold);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  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: 10px 20px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  border-bottom: none;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.05);
}

/* Header Phone */
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 7px 14px;
  border: 1px solid var(--color-gold);
  border-radius: 2px;
  transition: var(--transition);
  white-space: nowrap;
  margin-left: 8px;
  flex-shrink: 0;
}

.header-phone:hover {
  background: var(--color-gold);
  color: #000;
}

.header-phone svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-bg-dark), var(--color-bg-secondary));
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05), transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 90px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--color-gold);
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Page Hero (internal pages) ---------- */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--color-bg-dark), var(--color-bg-secondary));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06), transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--color-gold);
}

/* ---------- Sections ---------- */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--color-bg-dark);
}

.section-darker {
  background: var(--color-bg-primary);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 168, 76, 0.3);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.card h3 {
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.card-link:hover {
  color: var(--color-gold-light);
}

/* ---------- Feature List ---------- */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.feature-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.8rem;
}

/* ---------- Two Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col-text h2 {
  margin-bottom: 0.5rem;
}

.two-col-text p {
  margin-bottom: 1rem;
}

.two-col-image {
  background: var(--color-bg-card);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 168, 76, 0.08);
  position: relative;
}

.two-col-image::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 2px;
  pointer-events: none;
  z-index: 1;
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ---------- Hero with Background Image ---------- */
.hero-bg {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 15, 26, 0.88), rgba(26, 26, 40, 0.78));
  z-index: 1;
}

.hero-bg .container {
  position: relative;
  z-index: 2;
}

/* ---------- Page Hero with Background ---------- */
.page-hero-bg {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 15, 26, 0.9), rgba(26, 26, 40, 0.88));
  z-index: 1;
}

.page-hero-bg .container {
  position: relative;
  z-index: 2;
}

.page-hero-bg h1,
.page-hero-bg p,
.page-hero-bg .section-label,
.page-hero-bg .breadcrumb,
.page-hero-bg .gold-line-center {
  position: relative;
  z-index: 2;
}

/* ---------- Image Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
}

.gallery-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-item .caption {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ---------- Team Card with Image ---------- */
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-card-featured {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
}

.team-card-featured:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.team-card-featured img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.team-card-featured .team-card-body {
  padding: 2rem;
}

/* ---------- Full-width Image Banner ---------- */
.image-banner {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-banner .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 15, 26, 0.3), rgba(15, 15, 26, 0.7));
}

/* ---------- Hero Subpage (agent-generated variant) ---------- */
.hero.hero-subpage {
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero.hero-subpage::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(15, 15, 26, 0.9), rgba(26, 26, 40, 0.85));
  z-index: 1;
}

.hero.hero-subpage::after {
  display: none;
}

.hero.hero-subpage .container {
  position: relative;
  z-index: 2;
}

/* ---------- Hero Inner (agent-generated variant) ---------- */
.hero-inner {
  padding: 160px 0 80px;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 15, 26, 0.9), rgba(26, 26, 40, 0.85));
  z-index: 1;
}

.hero-inner .container {
  position: relative;
  z-index: 2;
}

.hero-subtitle,
.page-hero-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* ---------- Content Image (inline in sections) ---------- */
.content-image {
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  margin: 2rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ---------- Framed Image (standalone images with elegant frame) ---------- */
.framed-image {
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 168, 76, 0.08);
  padding: 6px;
  background: var(--color-bg-card);
}

.framed-image img {
  width: 100%;
  border-radius: 2px;
  display: block;
}

@media (max-width: 768px) {
  .page-hero-bg { padding: 130px 0 60px; }
  .hero-inner { padding: 130px 0 60px; }
  .team-card-featured img { height: 260px; }
  .image-banner { height: 250px; }
  .gallery-item img { height: 200px; }
}

/* ---------- Stats Row ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-gold);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-primary));
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06), transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  position: relative;
  z-index: 1;
}

.cta-banner p {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0.5rem auto 2rem;
  font-size: 1.05rem;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* ---------- Content Sections ---------- */
.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block h2 {
  margin-bottom: 0.5rem;
}

.content-block h3 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--color-gold);
}

.content-block p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.content-block ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.content-block ul li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--color-text-muted);
}

.content-block ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

/* ---------- Team Cards ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
}

.team-avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-dark));
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.team-card h3 {
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--color-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ---------- Contact Form ---------- */
.contact-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 3rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--color-bg-dark);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 14px 16px;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* ---------- Map Container ---------- */
.map-container {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Contact Info Cards ---------- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-info-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
}

.contact-info-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info-card h4 {
  margin-bottom: 0.5rem;
  color: var(--color-gold);
}

/* ---------- Footer ---------- */
.footer {
  background: #000000;
  border-top: 1px solid var(--color-border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about .logo-text {
  margin-bottom: 1rem;
}

.footer-about p {
  font-size: 0.9rem;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .hero h1 { font-size: 2.6rem; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }

  .nav.open {
    transform: translateY(0);
  }

  .nav a {
    padding: 12px 0;
    font-size: 1rem;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    min-width: auto;
    padding-left: 1rem;
  }

  .header .container {
    padding-right: 1rem;
  }

  .mobile-toggle {
    display: flex;
    padding: 12px;
  }

  .header-phone {
    font-size: 0;
    padding: 10px;
    border-radius: 50%;
    margin-left: auto;
  }

  .header-phone svg {
    width: 20px;
    height: 20px;
  }

  .hero h1 { font-size: 2.2rem; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero { padding: 130px 0 60px; }
  .section { padding: 60px 0; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }
  .card-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero h1 { font-size: 1.8rem; }
  .stat-number { font-size: 2.2rem; }
}

/* ---------- Feature Grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 2rem;
  transition: var(--transition);
}

.feature-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.feature-item h3 {
  margin-bottom: 0.5rem;
}

/* ---------- Process Grid ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.process-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.process-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.process-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.8rem;
  line-height: 1;
}

.process-item h3 {
  margin-bottom: 0.5rem;
}

/* ---------- Breadcrumb Section ---------- */
.breadcrumb-section {
  padding: 100px 0 10px;
  background: var(--color-bg-dark);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.breadcrumb-section a {
  color: var(--color-gold);
}

.breadcrumb-nav {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-nav a:hover {
  color: var(--color-gold);
}

/* ---------- Step Grid ---------- */
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.step-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}

.step-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.8rem;
  line-height: 1;
}

.step-item h3 {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
}