/* ============================================
   GARCÍA Y ASOCIADOS — Stylesheet
   Palette: Navy #1b2e4a | Bronze #b8860b | 
   Gold #c4a265 | Cream #faf7f2
   Fonts: Playfair Display + Source Sans 3
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --navy: #1b2e4a;
  --navy-dark: #0f1d30;
  --navy-light: #2a4468;
  --bronze: #b8860b;
  --gold: #c4a265;
  --gold-light: #d4b87a;
  --cream: #faf7f2;
  --cream-dark: #f0ebe3;
  --white: #ffffff;
  --text-dark: #2c2c2c;
  --text-medium: #5a5a5a;
  --text-light: #8a8a8a;
  --border-light: #e8e2d8;
  --shadow-sm: 0 2px 8px rgba(27,46,74,0.08);
  --shadow-md: 0 4px 20px rgba(27,46,74,0.12);
  --shadow-lg: 0 8px 40px rgba(27,46,74,0.16);
  --shadow-gold: 0 4px 20px rgba(184,134,11,0.2);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
  --max-width: 1200px;
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }

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

/* ---------- Utility ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 700px;
  line-height: 1.8;
}

.section-subtitle.centered {
  margin: 0 auto;
}

.text-center { text-align: center; }
.text-bronze { color: var(--bronze); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze), var(--gold));
  border: none;
  margin: 16px 0;
}

.gold-line.centered {
  margin: 16px auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--bronze), var(--gold));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184,134,11,0.35);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(196,162,101,0.2);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}

.top-bar a:hover {
  color: var(--gold);
}

.top-bar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-bar-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Header ---------- */
.header {
  background: var(--white);
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition);
  box-shadow: none;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  height: 68px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

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

.logo img {
  height: 55px;
  width: auto;
  transition: height var(--transition);
}

.header.scrolled .logo img {
  height: 45px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--bronze);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

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

.nav a {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.3px;
  position: relative;
  transition: color var(--transition);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--bronze);
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.nav .btn-primary {
  padding: 10px 24px;
  font-size: 0.85rem;
  margin-left: 12px;
}

/* ---------- Mobile Menu ---------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Slider ---------- */
.hero {
  position: relative;
  height: 85vh;
  min-height: 550px;
  max-height: 800px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,29,48,0.85) 0%,
    rgba(27,46,74,0.7) 50%,
    rgba(27,46,74,0.5) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  z-index: 2;
  max-width: 750px;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease forwards 0.3s;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease forwards 0.5s;
}

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 580px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease forwards 0.7s;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease forwards 0.9s;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.15);
}

/* ---------- Section Spacing ---------- */
.section {
  padding: 90px 0;
}

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

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

.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: var(--white);
}

.section-navy p {
  color: rgba(255,255,255,0.75);
}

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.why-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(184,134,11,0.1), rgba(196,162,101,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--bronze);
}

.why-card h4 {
  margin-bottom: 12px;
  color: var(--navy);
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---------- About Preview ---------- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}

.about-text .section-label { margin-bottom: 8px; }
.about-text h2 { margin-bottom: 16px; }
.about-text p { margin-bottom: 16px; }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
}

.about-highlight-item .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bronze), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bronze), var(--gold), var(--bronze));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 10px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

/* ---------- Practice Areas ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.area-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.area-card-image {
  height: 200px;
  overflow: hidden;
}

.area-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.area-card:hover .area-card-image img {
  transform: scale(1.05);
}

.area-card-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.area-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.area-card-body p {
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 20px;
}

.area-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--bronze);
  transition: all var(--transition);
}

.area-card-link:hover {
  gap: 10px;
  color: var(--navy);
}

/* ---------- Image Break / Parallax ---------- */
.image-break {
  position: relative;
  height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,29,48,0.8), rgba(27,46,74,0.65));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.image-break h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  max-width: 700px;
}

.image-break p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 24px;
}

/* ---------- Mission / Vision ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.mv-card {
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--bronze), var(--gold));
}

.mv-card h3 {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mv-icon {
  font-size: 1.5rem;
  color: var(--bronze);
}

.mv-card p {
  font-size: 1rem;
  line-height: 1.8;
}

/* ---------- Values Grid ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  background: rgba(184,134,11,0.06);
  border: 1px solid rgba(184,134,11,0.15);
  transition: all var(--transition);
}

.value-item:hover {
  background: rgba(184,134,11,0.1);
  transform: translateY(-3px);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.value-item h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.value-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(196,162,101,0.1);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(196,162,101,0.08);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Practice Area Page ---------- */
.page-hero {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,29,48,0.88), rgba(27,46,74,0.75));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

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

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Practice area content layout */
.practice-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  padding: 80px 0;
}

.practice-content h2 {
  margin-bottom: 16px;
}

.practice-content h3 {
  margin: 30px 0 12px;
  font-size: 1.4rem;
}

.practice-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.services-list {
  margin: 20px 0 30px;
}

.services-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
  color: var(--text-dark);
}

.services-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-size: 0.7rem;
  top: 12px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--cream);
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}

.benefit-item .icon {
  color: var(--bronze);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Sidebar */
.practice-sidebar {}

.sidebar-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 28px 24px;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
}

.sidebar-card h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--navy);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bronze);
}

.sidebar-links a {
  display: block;
  padding: 10px 0;
  color: var(--text-dark);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
}

.sidebar-links a:hover,
.sidebar-links a.active {
  color: var(--bronze);
  padding-left: 8px;
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
}

.sidebar-cta h4 {
  color: var(--white);
  border-bottom-color: var(--gold);
  margin-bottom: 12px;
}

.sidebar-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.sidebar-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid var(--border-light);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--bronze), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--bronze);
  font-weight: 500;
}

.contact-info-card a:hover {
  color: var(--navy);
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.map-wrapper iframe {
  width: 100%;
  height: 280px;
  border: none;
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.contact-form-card h3 {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.12);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ohnohoney {
  position: absolute;
  left: -9999px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(196,162,101,0.15);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,0.6);
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--bronze);
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer-contact-item .icon {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
}

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

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ---------- Thank You ---------- */
.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bronze), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  color: var(--white);
}

.thank-you-section h1 {
  margin-bottom: 16px;
}

.thank-you-section p {
  max-width: 500px;
  margin: 0 auto 28px;
  font-size: 1.1rem;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .about-preview {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image-wrapper img {
    height: 350px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mv-grid {
    grid-template-columns: 1fr;
  }
  
  .practice-layout {
    grid-template-columns: 1fr;
  }
  
  .practice-sidebar {
    order: -1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .top-bar {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 90px 30px 30px;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    transition: right var(--transition);
    gap: 0;
    align-items: stretch;
    z-index: 1050;
  }
  
  .nav.open {
    right: 0;
  }
  
  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 1rem;
  }
  
  .nav a::after {
    display: none;
  }
  
  .nav .btn-primary {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }
  
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
  }
  
  .mobile-overlay.active {
    display: block;
  }
  
  .hero {
    height: 70vh;
    min-height: 450px;
  }
  
  .hero-content {
    padding: 0 24px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .image-break {
    background-attachment: scroll;
    height: 350px;
  }
  
  .contact-form-card {
    padding: 28px 20px;
  }
  
  .page-hero {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .logo-name {
    font-size: 0.95rem;
  }
  
  .logo-tagline {
    font-size: 0.6rem;
  }
}
