/* ==========================================================================
   DESIGN SYSTEM - SOLUTIONS PHARMA LAWYERS
   ========================================================================== */

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

:root {
  /* Color Palette - Premium Slate & Gold (oklch-based) */
  --bg-primary: oklch(0.12 0.055 255);    /* Deep dark blue-slate */
  --bg-secondary: oklch(0.15 0.06 255);   /* Dark slate */
  --bg-light: oklch(0.97 0.008 85);       /* Off-white background */
  --bg-white: #ffffff;
  
  --text-light: #ffffff;
  --text-muted-light: oklch(0.90 0.01 255 / 0.7);
  --text-dark: oklch(0.15 0.02 255);
  --text-muted-dark: oklch(0.45 0.02 255);
  
  --gold-primary: oklch(0.72 0.12 75);    /* Warm classic gold */
  --gold-hover: oklch(0.82 0.10 75);      /* Bright light gold */
  --gold-dark: oklch(0.55 0.12 75);       /* Rich antique gold */
  
  --border-light: oklch(0.90 0.015 85);
  --border-dark: oklch(0.25 0.04 255);
  --border-gold: oklch(0.72 0.12 75 / 0.3);
  
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-italic: 'Cormorant Garamond', serif;
  --font-sans: 'Source Sans 3', sans-serif;
  --font-accent: 'Montserrat', sans-serif;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 10px 30px -10px oklch(0.72 0.12 75 / 0.3);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gold-primary);
  color: var(--bg-primary);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid var(--gold-primary);
  border-radius: 0;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
}

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

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--gold-primary);
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid var(--gold-primary);
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background-color: var(--bg-primary);
  height: 70px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
}

.logo-text {
  color: var(--text-light);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-light);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold-primary);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  opacity: 1;
  color: var(--gold-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-primary);
  color: var(--text-light);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    oklch(0.12 0.055 255 / 0.95) 0%, 
    oklch(0.15 0.06 255 / 0.85) 50%, 
    oklch(0.18 0.06 255 / 0.55) 100%
  );
  z-index: 2;
}

.hero-line {
  position: absolute;
  left: 3rem;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-primary), transparent);
  opacity: 0.4;
  z-index: 3;
}

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

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

.hero-label-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-label-line {
  width: 50px;
  height: 1px;
  background-color: var(--gold-primary);
}

.hero-label {
  font-family: var(--font-accent);
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span.gold-italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-hover);
}

.hero-desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--text-muted-light);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--text-muted-light);
}

.hero-badge svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* Stats Cards (Floating over Hero bottom) */
.hero-stats {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.hero-stats .grid {
  display: grid;
  grid-template-cols: repeat(4, 1fr);
  gap: 1.5rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  padding: 2.5rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid var(--border-dark);
}

.stat-card:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted-light);
}

/* ==========================================================================
   RECOGNITION BAR
   ========================================================================== */
.recognition-bar {
  background-color: oklch(0.93 0.012 85);
  border-top: 1px solid oklch(0.88 0.015 85);
  border-bottom: 1px solid oklch(0.88 0.015 85);
  padding: 1.5rem 0;
  margin-top: 40px; /* offset stats cards height */
}

.recognition-grid {
  display: grid;
  grid-template-cols: repeat(4, 1fr);
  gap: 1.5rem;
}

.rec-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rec-icon {
  width: 38px;
  height: 38px;
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.rec-content {
  display: flex;
  flex-direction: column;
}

.rec-title {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.rec-sub {
  font-size: 0.75rem;
  color: var(--text-muted-dark);
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
section {
  padding: 7rem 0;
}

.section-hdr {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 5rem;
}

.section-label-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-label-line {
  width: 40px;
  height: 1px;
  background-color: var(--gold-primary);
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* ==========================================================================
   SERVICES SECTION (PRACTICE AREAS)
   ========================================================================== */
.services-section {
  background-color: var(--bg-light);
}

.services-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.services-intro .section-hdr {
  align-items: flex-start;
  text-align: left;
  margin-bottom: 0;
  max-width: 600px;
}

.services-intro-text {
  font-size: 1.05rem;
  color: var(--text-muted-dark);
  max-width: 450px;
}

.services-grid {
  display: grid;
  grid-template-cols: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 3rem 2.5rem;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--gold-primary);
}

.service-top {
  position: relative;
}

.service-num {
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: oklch(0.92 0.015 85);
  transition: var(--transition-smooth);
}

.service-card:hover .service-num {
  color: var(--gold-primary);
  opacity: 0.15;
}

.service-icon-box {
  width: 50px;
  height: 50px;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
  background-color: var(--bg-primary);
  color: var(--gold-hover);
}

.service-subtitle {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service-items {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.service-item:last-child {
  margin-bottom: 0;
}

.service-item svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
  background-color: var(--bg-primary);
  color: var(--text-light);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-cols: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-content {
  max-width: 600px;
}

.about-p1 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.about-p2 {
  font-size: 1.05rem;
  color: var(--text-muted-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-list {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text-light);
}

.about-list-item svg {
  color: var(--gold-primary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.about-img-box {
  position: relative;
}

.about-img-frame {
  width: 100%;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.about-img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-img-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold-primary);
  z-index: 1;
  pointer-events: none;
}

/* ==========================================================================
   CASE STUDIES SECTION
   ========================================================================== */
.cases-grid {
  display: grid;
  grid-template-cols: repeat(2, 1fr);
  gap: 2rem;
}

.case-card {
  border: 1px solid var(--border-light);
  background-color: var(--bg-white);
  padding: 3rem 2.5rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.case-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.case-badge {
  background-color: oklch(0.97 0.008 85);
  color: var(--text-dark);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.case-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  font-family: var(--font-accent);
  text-transform: uppercase;
}

.case-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.case-block {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--border-light);
}

.case-block-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.case-block-val {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.case-result-box {
  background-color: oklch(0.97 0.008 85);
  border-left: 4px solid var(--gold-primary);
  padding: 1.5rem;
  margin-top: 2rem;
}

.case-result-title {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.case-result-desc {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.case-result-outcome {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  background-color: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-cols: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-size: 4rem;
  color: var(--gold-primary);
  position: absolute;
  top: -2.5rem;
  left: -1rem;
  opacity: 0.15;
  font-family: var(--font-serif);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.95rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.author-company {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
}

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-cols: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  border: 1px solid var(--border-light);
  background-color: var(--bg-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--gold-primary);
}

.team-avatar-box {
  height: 280px;
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 900;
  position: relative;
  overflow: hidden;
}

.team-avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.team-card:hover .team-avatar-box img {
  transform: scale(1.05);
}

.team-info {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.team-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.team-role {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.team-spec {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.team-contact {
  margin-top: auto;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted-dark);
}

.team-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.team-email:hover {
  color: var(--gold-primary);
}

.team-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-dark);
}

.team-linkedin:hover {
  color: var(--gold-primary);
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
  background-color: var(--bg-light);
}

.pricing-grid {
  display: grid;
  grid-template-cols: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.pricing-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card.featured {
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-premium);
  transform: translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--gold-primary);
  color: var(--bg-primary);
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 0.8rem;
}

.pricing-hdr {
  margin-bottom: 2rem;
}

.pricing-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.pricing-sub {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  letter-spacing: 0.5px;
}

.price-box {
  display: flex;
  align-items: baseline;
  margin: 1.5rem 0;
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.price-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-left: 0.5rem;
}

.price-duration {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  margin-left: 0.5rem;
}

.pricing-desc {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin-bottom: 2rem;
  min-height: 50px;
}

.pricing-features {
  border-top: 1px solid var(--border-light);
  padding: 2rem 0;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.pricing-feature svg {
  color: var(--gold-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.pricing-card .btn-gold,
.pricing-card .btn-outline-gold {
  width: 100%;
}

/* Individual Services Table */
.services-table-wrapper {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.table-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--text-dark);
}

.table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-light);
}

.table-row:last-child {
  border-bottom: none;
}

.table-service-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.table-service-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-cols: 0.9fr 1.1fr;
  gap: 5rem;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-text {
  font-size: 1.05rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.contact-method-details {
  display: flex;
  flex-direction: column;
}

.contact-method-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-method-val {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

a.contact-method-val:hover {
  color: var(--gold-primary);
}

/* Contact Form */
.contact-form {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 4rem;
  box-shadow: var(--shadow-premium);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.form-grid {
  display: grid;
  grid-template-cols: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-grid.single-column {
  grid-template-cols: 1fr;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-light);
  background-color: oklch(0.98 0.005 85);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  background-color: var(--bg-white);
}

textarea.form-input {
  min-height: 150px;
  resize: vertical;
}

.contact-form button[type="submit"] {
  width: 100%;
}

.form-success-msg {
  display: none;
  background-color: oklch(0.9 0.1 140 / 0.15);
  border: 1px solid oklch(0.6 0.15 140);
  color: oklch(0.35 0.1 140);
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  font-weight: 600;
}

/* ==========================================================================
   WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  font-size: 2rem;
  transition: var(--transition-smooth);
  animation: whatsapp-bounce 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  background-color: #20ba5a;
}

@keyframes whatsapp-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: oklch(0.12 0.055 255);
  color: var(--text-light);
  position: relative;
}

.footer-top-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.footer .container {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-cols: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col-desc {
  color: var(--text-muted-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1.5rem;
}

.footer-col-title {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-info-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

.footer-info-item svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

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

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

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  transition: var(--transition-smooth);
}

.footer-legal-link:hover {
  color: var(--gold-primary);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-stats .grid {
    grid-template-cols: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .stat-card:nth-child(2) {
    border-right: none;
  }
  
  .services-grid {
    grid-template-cols: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-cols: 1fr;
    gap: 4rem;
  }
  
  .about-img-box {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .team-grid {
    grid-template-cols: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-cols: 1fr;
    max-width: 500px;
    margin: 0 auto 5rem;
  }
  
  .footer-grid {
    grid-template-cols: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
  
  .navbar {
    height: 70px;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    gap: 2rem;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-dark);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 8rem 0 6rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-stats {
    position: static;
    margin-top: 4rem;
  }
  
  .hero-stats .grid {
    box-shadow: none;
    padding: 1.5rem;
  }
  
  .recognition-grid {
    grid-template-cols: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .services-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .services-grid {
    grid-template-cols: 1fr;
  }
  
  .cases-grid {
    grid-template-cols: 1fr;
  }
  
  .testimonials-grid {
    grid-template-cols: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .team-grid {
    grid-template-cols: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .services-table-wrapper {
    padding: 2rem;
  }
  
  .table-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .contact-grid {
    grid-template-cols: 1fr;
    gap: 4rem;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
  
  .form-grid {
    grid-template-cols: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-legal-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
  
  .hero-stats .grid {
    grid-template-cols: 1fr;
    gap: 1.5rem;
  }
  
  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 1rem;
  }
  
  .stat-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .recognition-grid {
    grid-template-cols: 1fr;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer-grid {
    grid-template-cols: 1fr;
  }
}
