/* ==========================================================================
   DRA. RENATA RODRIGUES - LUXURY DESIGN SYSTEM & STYLESHEET
   Palette: Dark Charcoal (#0b090a), Dusty Rose Gold (#c58d84), Accent Gold (#cda87c), Light Blush (#f8f2f0)
   ========================================================================== */

:root {
  /* Color Palette */
  --primary-rose: #c58d84;
  --primary-rose-hover: #b37b72;
  --primary-rose-light: rgba(197, 141, 132, 0.15);
  --accent-gold: #cda87c;
  
  --bg-dark: #0b090a;
  --bg-dark-card: #151113;
  --bg-blush: #f8f2f0;
  --bg-blush-card: #ffffff;
  
  --text-white: #ffffff;
  --text-rose-light: #e8dedc;
  --text-muted-dark: rgba(255, 255, 255, 0.75);
  
  --text-dark: #2c1e20;
  --text-muted: #665255;
  
  --border-rose: rgba(197, 141, 132, 0.25);
  --border-white: rgba(255, 255, 255, 0.12);

  /* Shadows */
  --shadow-sm: 0 4px 15px rgba(11, 9, 10, 0.05);
  --shadow-md: 0 10px 30px rgba(11, 9, 10, 0.12);
  --shadow-lg: 0 20px 40px rgba(11, 9, 10, 0.2);
  --shadow-rose: 0 10px 25px rgba(197, 141, 132, 0.35);

  /* Fonts */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions & Layout */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-blush);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* Container */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-padding {
  padding: 100px 0;
}

/* Typography Helpers */
.font-serif {
  font-family: var(--font-heading);
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--primary-rose-light);
  color: var(--primary-rose);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid var(--border-rose);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
}

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

.text-center .section-subtitle {
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-pill-rose {
  background-color: var(--primary-rose);
  color: var(--text-white);
  box-shadow: var(--shadow-rose);
  border: 1px solid var(--primary-rose);
}

.btn-pill-rose:hover {
  background-color: var(--primary-rose-hover);
  border-color: var(--primary-rose-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(197, 141, 132, 0.45);
}

.btn-pill-outline {
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-pill-outline:hover {
  border-color: var(--primary-rose);
  color: var(--primary-rose);
  background: rgba(197, 141, 132, 0.08);
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--primary-rose);
  color: var(--text-white);
  box-shadow: var(--shadow-rose);
}

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

.btn-secondary {
  background-color: var(--bg-dark);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

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

.btn-outline {
  border: 1px solid var(--primary-rose);
  color: var(--text-dark);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-rose);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn i {
  font-size: 1.1rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08) rotate(8deg);
  background-color: #20ba5a;
  color: #ffffff;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 22px 0;
  background: rgba(11, 9, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197, 141, 132, 0.15);
}

.header.scrolled {
  padding: 14px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  background: rgba(11, 9, 10, 0.96);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: brightness(1.05);
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 1.5px;
  line-height: 1;
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--primary-rose);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  letter-spacing: 1.2px;
  position: relative;
  text-transform: uppercase;
  transition: var(--transition);
}

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

.nav-link:hover {
  color: var(--primary-rose);
}

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

.nav-link.active {
  color: var(--text-white);
}

.nav-cta {
  padding: 10px 22px;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
}

.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--text-white);
}

/* ==========================================================================
   HERO SECTION (DARK CHARCOAL & LUXURY BLUSH)
   ========================================================================== */
.hero {
  padding-top: 160px;
  padding-bottom: 0;
  position: relative;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 70% 30%, rgba(197, 141, 132, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(205, 168, 124, 0.08) 0%, transparent 40%);
  overflow: hidden;
  color: var(--text-white);
}

.hero-watermark-bg {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-bottom: 60px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.12;
  color: var(--text-white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted-dark);
  margin-bottom: 38px;
  line-height: 1.75;
  max-width: 530px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* 4 Feature Icons Row in Hero */
.hero-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 580px;
}

.feature-pill-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.feature-pill-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-rose);
  font-size: 1.15rem;
  background: rgba(197, 141, 132, 0.08);
}

.feature-pill-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-rose);
}

.feature-pill-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  line-height: 1.35;
}

/* Hero Right Image */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

.hero-doctor-img-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-doctor-img-container img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: top center;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

/* Hero Wave Transition Divider */
.hero-wave-divider {
  width: 100%;
  height: 80px;
  position: relative;
  z-index: 3;
  margin-top: -20px;
}

.hero-wave-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ==========================================================================
   STATS BAR SECTION (LIGHT BLUSH BACKGROUND)
   ========================================================================== */
.stats-bar-section {
  background-color: var(--bg-blush);
  padding: 10px 0 50px;
  position: relative;
  z-index: 4;
}

.stats-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.stat-card-item {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding: 15px 20px;
  border-right: 1px solid rgba(197, 141, 132, 0.25);
}

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

.stat-icon-circle {
  width: 54px;
  height: 54px;
  border: 1.5px solid var(--border-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-rose);
  font-size: 1.35rem;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(197, 141, 132, 0.12);
  flex-shrink: 0;
}

.stat-icon-circle svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-rose);
}

.stat-card-info {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about {
  background-color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
}

.about-img-box img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 30px 0 40px;
}

.about-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.about-item i {
  width: 28px;
  height: 28px;
  background: var(--primary-rose-light);
  color: var(--primary-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  border: 1px solid var(--border-rose);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services {
  background-color: var(--bg-blush);
}

.services-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-muted);
  background: #ffffff;
  border: 1px solid var(--border-rose);
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-rose);
  color: #ffffff;
  border-color: var(--primary-rose);
  box-shadow: var(--shadow-rose);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 35px;
  border: 1px solid var(--border-rose);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-rose), var(--accent-gold));
  opacity: 0;
  transition: var(--transition);
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 0;
  background: #ffffff;
  border: 2px solid var(--primary-rose);
}

.featured-img {
  height: 100%;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

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

.featured-content {
  padding: 40px;
}

.service-icon-wrapper {
  width: 56px;
  height: 56px;
  background: var(--primary-rose-light);
  color: var(--primary-rose);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  border: 1px solid var(--border-rose);
}

.service-icon-wrapper svg {
  width: 28px;
  height: 28px;
  fill: var(--primary-rose);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(197, 141, 132, 0.15);
}

.service-link {
  font-weight: 700;
  color: var(--primary-rose);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ==========================================================================
   DIFFERENTIALS SECTION (DARK LUXURY)
   ========================================================================== */
.differentials {
  background-color: var(--bg-dark);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.differentials .section-tag {
  background: rgba(197, 141, 132, 0.15);
  color: var(--primary-rose);
}

.differentials .section-title {
  color: var(--text-white);
}

.differentials .section-subtitle {
  color: var(--text-muted-dark);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.diff-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-white);
  padding: 35px 25px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  text-align: center;
}

.diff-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: var(--primary-rose);
}

.diff-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-rose-light);
  color: var(--primary-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  border: 1px solid var(--border-rose);
}

.diff-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-white);
}

.diff-card p {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  line-height: 1.65;
}

/* ==========================================================================
   CONVÊNIOS SECTION
   ========================================================================== */
.convenios {
  background-color: #ffffff;
}

.convenios-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.convenio-card {
  background: var(--bg-blush);
  border: 1.5px solid var(--border-rose);
  padding: 25px 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.convenio-card:hover {
  border-color: var(--primary-rose);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.convenio-icon {
  font-size: 2rem;
  color: var(--primary-rose);
}

.convenio-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.convenio-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq {
  background-color: var(--bg-blush);
}

.faq-wrapper {
  max-width: 800px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-rose);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-question i {
  font-size: 1.1rem;
  color: var(--primary-rose);
  transition: transform 0.3s ease;
}

.faq-item.active {
  border-color: var(--primary-rose);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 25px;
}

/* ==========================================================================
   LOCATION & CONTACT SECTION
   ========================================================================== */
.location {
  background-color: #ffffff;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
  align-items: center;
}

.location-info-card {
  background: var(--bg-blush);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-rose);
  box-shadow: var(--shadow-sm);
}

.info-group {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 25px;
}

.info-group:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 46px;
  height: 46px;
  background: #ffffff;
  color: var(--primary-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid var(--border-rose);
}

.info-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.info-text p, .info-text a {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.info-text a:hover {
  color: var(--primary-rose);
}

.map-wrapper {
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid #ffffff;
}

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

/* ==========================================================================
   FOOTER (DARK CHARCOAL LUXURY)
   ========================================================================== */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 70px 0 30px;
  border-top: 1px solid var(--border-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about p {
  color: var(--text-muted-dark);
  margin: 20px 0 25px;
  font-size: 0.92rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-dark-card);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid var(--border-white);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-rose);
  border-color: var(--primary-rose);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-white);
  margin-bottom: 24px;
}

.footer-link {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
  transition: var(--transition);
  display: block;
  margin-bottom: 10px;
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 15px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-features-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .feature-pill-item {
    align-items: center;
    text-align: center;
  }

  .hero-image-wrapper {
    justify-content: center;
  }

  .about-grid, .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-card.featured-card {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-card-item {
    border-right: none;
    border-bottom: 1px solid rgba(197, 141, 132, 0.2);
    padding-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: auto;
    max-height: 55px;
  }

  .section-padding {
    padding: 70px 0;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
  }

  .nav-menu.active {
    right: 0;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-card-item {
    justify-content: flex-start;
  }
}
