/* =====================
   GLOBAL RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #05070d;
  color: #ffffff;
  line-height: 1.6;
}

/* =====================
   NAVBAR
===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #f3d38a;
}

.navbar nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #dddddd;
  font-size: 14px;
  transition: color 0.3s;
}

.navbar nav a:hover {
  color: #f3d38a;
}

.lang-btn {
  margin-left: 20px;
  padding: 8px 14px;
  font-size: 12px;
  border-radius: 20px;
  border: 1px solid #f3d38a;
  background: transparent;
  color: #f3d38a;
  cursor: pointer;
}
.navbar nav {
  display: flex;
  align-items: center;
  gap: 25px;
  white-space: nowrap;
}

.navbar nav a {
  display: inline-block;
}

/* HERO SLIDER CSS */
.hero {
  position: relative;
  height: 90vh;
  min-height: 520px;
  background-size: cover;
  background-position: center top; /* FACE SAFE */
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-slider {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease, transform 6s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 20, 40, 0.65),
    rgba(0, 20, 40, 0.35)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 20px;
  text-align: center;
}


.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero p {
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
}


.hero-buttons .btn {
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
}

.btn.primary {
  background: #c9a24d;
  color: #001428;
}

.btn.outline {
  border: 2px solid #fff;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    height: 85vh;
  }

  .hero-content {
    text-align: center;
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }
}


/* =====================
   BUTTONS
===================== */
.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 14px 34px;
  border-radius: 40px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gold {
  background: linear-gradient(135deg, #f3d38a, #cfa24a);
  color: #000000;
}

.outline {
  border: 1px solid #f3d38a;
  color: #f3d38a;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(243,211,138,0.4);
}

/* =====================
   SECTIONS (FLOW FIX)
===================== */
section {
  position: relative;
  padding: 120px 60px;
  text-align: center;
  clear: both;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #f3d38a;
  margin-bottom: 50px;
}

/* =====================
   CLINICAL CARDS
===================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(243,211,138,0.35);
  padding: 35px 25px;
  border-radius: 22px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}

.card img {
  width: 75px;
  margin-bottom: 20px;
}

.card h4 {
  font-family: 'Playfair Display', serif;
  color: #f3d38a;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  opacity: 0.85;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 35px rgba(243,211,138,0.35);
}

/* =====================
   ABOUT / TEXT SECTIONS
===================== */
.about p,
.contact p,
.legal p {
  max-width: 850px;
  margin: auto;
  font-size: 15px;
  opacity: 0.9;
}

/* =====================
   APPOINTMENT FORM
===================== */
form {
  max-width: 520px;
  margin: auto;
}

input, textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: none;
  font-family: 'Poppins', sans-serif;
}

textarea {
  resize: none;
  height: 120px;
}

/* =====================
   FOOTER
===================== */
footer {
  background: #02030a;
  padding: 40px 20px;
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
}
.footer-menu {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-menu a {
  color: #f3d38a;
  text-decoration: none;
  font-size: 13px;
  opacity: 0.85;
}

.footer-menu a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* =====================
   WHATSAPP BUTTON
===================== */
.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #ffffff;
  padding: 16px;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  z-index: 2000;
}

/* =====================
   SCROLL ANIMATION
===================== */
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

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

/* =====================
   MOBILE RESPONSIVE
===================== */
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 38px;
  }

  section {
    padding: 90px 20px;
  }

  .buttons {
    flex-direction: column;
  }
}
/* ===== HARD OVERRIDE : RESEARCH CARD TITLES ===== */

section#research .card h4,
section.research .card h4,
.research .grid .card h4 {
  font-size: 20px !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-align: center !important;
  white-space: normal !important;
  word-break: normal !important;
  max-width: 100% !important;
  margin: 12px auto 10px !important;
  display: block !important;
}

/* Desktop */
@media (min-width: 1024px) {
  section#research .card h4 {
    font-size: 22px !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  section#research .card h4 {
    font-size: 17px !important;
    line-height: 1.35 !important;
    padding: 0 10px !important;
  }
}
/* ===== FINAL TITLE LOCK (JS SAFE) ===== */

.research .card h4 {
  margin: 0;
  padding: 0;
}

.research .card h4 .title {
  display: block;
  font-size: clamp(16px, 4vw, 22px);
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  white-space: normal;
  word-break: keep-all;
  max-width: 90%;
  margin: 0 auto 10px;
}
/* ===== APPOINTMENT FORM ===== */

.appointment {
  padding: 80px 20px;
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.appointment .sub {
  max-width: 500px;
  margin: 10px auto 40px;
  color: #555;
}

.appointment-form {
  display: grid;
  gap: 20px;
}

.appointment-form .field {
  text-align: left;
}

.appointment-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.appointment-form input,
.appointment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.appointment-form input:focus,
.appointment-form textarea:focus {
  outline: none;
  border-color: #2c7be5;
}

.appointment-form .btn-primary {
  margin-top: 10px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #2c7be5;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.appointment-form .btn-primary:hover {
  background: #1a5dcc;
}

.appointment-form .note {
  font-size: 13px;
  color: #777;
  margin-top: 10px;
}

/* Mobile */
@media (max-width: 600px) {
  .appointment {
    padding: 60px 15px;
  }
}
/* ===== GOLDEN APPOINTMENT BUTTON ===== */

#appointment button[type="submit"] {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#appointment button[type="submit"]:hover {
  background: linear-gradient(135deg, #e6c85c, #c9a44c);
  transform: translateY(-2px);
}

#appointment button[type="submit"]:active {
  transform: scale(0.98);
}

/* ===== APPOINTMENT FORM READABILITY FIX ===== */

.appointment label {
  color: #f3d38a;
  font-weight: 500;
}

.appointment input,
.appointment textarea {
  background: rgba(255,255,255,0.95);
  color: #000;
}

.appointment input::placeholder,
.appointment textarea::placeholder {
  color: #666;
}

.appointment .note {
  color: #ccc;
  font-size: 13px;
}
/* ===== HAMBURGER MENU ===== */

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #f3d38a;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    display: none;
  }

  .navbar nav.active {
    display: flex;
  }

  .navbar nav a {
    font-size: 16px;
  }
}
/* ===== HERO PREMIUM POLISH ===== */
.hero h1 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero h3 {
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero p {
  max-width: 640px;
  margin: 0 auto 35px;
  font-size: 16px;
                     }
/* ===== HERO MOBILE FACE FIX (FINAL) ===== */
@media (max-width: 768px) {

  .hero {
    position: relative;
    background-position: top center !important;
    min-height: 100vh;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.55) 55%,
      rgba(0,0,0,0.9) 100%
    );
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 24px 20px 60px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.2;
  }

}

/* ===== HERO TYPOGRAPHY & SPACING POLISH ===== */

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

/* Main Heading */
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

/* Subtitle (Consultant Neurologist...) */
.hero h3 {
  font-size: 14px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* Description paragraph */
.hero p {
  font-size: 15px;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 34px;
  opacity: 0.9;
}

/* Buttons spacing */
.buttons {
  gap: 16px;
}

/* ===== MOBILE POLISH ===== */
@media (max-width: 768px) {

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

  .hero h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .hero h3 {
    font-size: 12px;
    letter-spacing: 1.4px;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

}
/* =========================
   HERO FIX – FINAL
========================= */

.hero {
  position: relative;
  height: 90vh;
  min-height: 520px;
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.65)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 20px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero p {
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.6;
  opacity: 0.9;
}

.hero-buttons {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-buttons a {
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .hero {
    height: 85vh;
  }

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

/* ===== HERO MOBILE GAP FIX (FINAL) ===== */

.hero,
.hero-slider,
.hero-slide {
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #05070d;
}


/* Mobile strict lock */
@media (max-width: 768px) {
  .hero,
  .hero-slider,
  .hero-slide {
    min-height: 100vh;
    height: 100vh;
  }
}
/* =====================
   AREAS OF EXPERTISE
===================== */

.expertise {
  padding: 110px 60px;
  background: #05070d;
  text-align: center;
}

.expertise h2 {
  font-family: 'Playfair Display', serif;
  color: #f3d38a;
  font-size: 36px;
  margin-bottom: 60px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: auto;
}

.expertise-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(243,211,138,0.3);
  border-radius: 22px;
  padding: 32px 26px;
  transition: all 0.35s ease;
}

.expertise-card h4 {
  font-family: 'Playfair Display', serif;
  color: #f3d38a;
  margin-bottom: 12px;
  font-size: 20px;
}

.expertise-card p {
  font-size: 14.5px;
  line-height: 1.6;
  opacity: 0.88;
}

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(243,211,138,0.25);
}

/* Mobile */
@media (max-width: 768px) {
  .expertise {
    padding: 80px 20px;
  }
}
/* =====================
   CONTACT CARDS
===================== */

.contact-cards {
  padding: 90px 60px;
  background: #02030a;
  text-align: center;
}

.contact-cards h2 {
  font-family: 'Playfair Display', serif;
  color: #f3d38a;
  font-size: 34px;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  justify-content: center;
}

.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(243,211,138,0.3);
  border-radius: 22px;
  padding: 30px 40px;
  min-width: 280px;
  transition: all 0.35s ease;
}

.contact-card h4 {
  font-family: 'Playfair Display', serif;
  color: #f3d38a;
  margin-bottom: 10px;
  font-size: 20px;
}

.contact-card a {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  opacity: 0.9;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(243,211,138,0.25);
}

/* Mobile */
@media (max-width: 768px) {
  .contact-cards {
    padding: 70px 20px;
  }
   }
/* =====================
   PROFESSIONAL AFFILIATION
===================== */

.affiliation {
  padding: 70px 20px;
  background: #05070d;
  text-align: center;
}

.affiliation-card {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(243,211,138,0.35);
  border-radius: 18px;
  padding: 26px 34px;
}

.affiliation-card h4 {
  font-family: 'Playfair Display', serif;
  color: #f3d38a;
  margin-bottom: 10px;
}

.affiliation-card p {
  font-size: 14.5px;
  line-height: 1.6;
  opacity: 0.9;
}
.affiliation h2 {
  font-family: 'Playfair Display', serif;
  color: #f3d38a;
  font-size: 34px;
  margin-bottom: 30px;
}
/* =====================
   FAQ SECTION
===================== */
.faq {
  max-width: 900px;
  margin: auto;
  text-align: left;
}

.faq h2 {
  text-align: center;
  margin-bottom: 50px;
}

.faq-container details {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(243,211,138,0.35);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-container details:hover {
  box-shadow: 0 0 20px rgba(243,211,138,0.25);
}

.faq-container summary {
  font-weight: 600;
  font-size: 16px;
  color: #f3d38a;
  list-style: none;
}

.faq-container summary::-webkit-details-marker {
  display: none;
}

.faq-container p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #dddddd;
}

/* Mobile */
@media (max-width: 768px) {
  .faq-container summary {
    font-size: 15px;
  }
}
.hero h1 {
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto 30px;
}
.buttons .btn {
  min-width: 180px;
  text-align: center;
}
section {
  padding-top: 140px;
  padding-bottom: 140px;
}
.card:hover {
  box-shadow: 0 0 20px rgba(243,211,138,0.25);
}
/* =====================
   WHY CHOOSE SECTION
===================== */
.why-choose {
  padding: 110px 60px;
  text-align: center;
}

.why-choose h2 {
  margin-bottom: 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: auto;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(243,211,138,0.35);
  padding: 30px 25px;
  border-radius: 22px;
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}

.why-card h4 {
  color: #f3d38a;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.why-card p {
  font-size: 14.5px;
  opacity: 0.9;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(243,211,138,0.35);
}

/* Mobile */
@media (max-width: 768px) {
  .why-choose {
    padding: 80px 20px;
  }
}
/* =====================
   EDUCATION HUB
===================== */
.education {
  padding: 120px 60px;
  text-align: center;
}

.education h2 {
  margin-bottom: 10px;
}

.edu-sub {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 15px;
  opacity: 0.85;
}

.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: auto;
}

.edu-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(243,211,138,0.35);
  padding: 32px 26px;
  border-radius: 22px;
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
  text-align: left;
}

.edu-card h4 {
  font-family: 'Playfair Display', serif;
  color: #f3d38a;
  margin-bottom: 12px;
}

.edu-card p {
  font-size: 14.5px;
  line-height: 1.7;
  opacity: 0.9;
}

.edu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 28px rgba(243,211,138,0.3);
}

/* Mobile */
@media (max-width: 768px) {
  .education {
    padding: 90px 20px;
  }
}
/* ===============================
   CLINICAL DISCUSSIONS PAGE
=============================== */

.discussions {
  padding: 80px 8%;
  background: #f8f9fb;
  text-align: center;
}

.discussions h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #0b1c2d;
  margin-bottom: 20px;
}

.disc-sub {
  max-width: 850px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Grid */
.disc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Cards */
.disc-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.disc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.disc-card h4 {
  font-size: 20px;
  color: #0b1c2d;
  margin-bottom: 12px;
  font-weight: 600;
}

.disc-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* Disclaimer */
.disc-note {
  margin-top: 60px;
  padding: 25px;
  background: #fff;
  border-left: 5px solid #c9a227;
  border-radius: 10px;
}

.disc-note p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 768px) {
  .discussions {
    padding: 60px 6%;
  }

  .discussions h2 {
    font-size: 30px;
  }

  .disc-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .discussions h2 {
    font-size: 26px;
  }

  .disc-sub {
    font-size: 15px;
  }
}
/* Footer Full Style */
.site-footer {
  background: #02030a;
  padding: 70px 40px 30px;
  color: #cccccc;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}
/* ... (footer CSS that we shared earlier) ... */
/* Clinical Discussions Hero */
.clinical-hero {
  background: #05070d;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.clinical-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.clinical-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}
/* =========================
   CONSULTATION PAGE (FINAL)
========================= */

.page-hero {
  padding: 160px 20px 100px;
  background: radial-gradient(circle at top, rgba(243,211,138,0.18), #05070d 70%);
  text-align: center;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #f3d38a;
  margin-bottom: 15px;
}

.page-hero p {
  max-width: 720px;
  margin: auto;
  opacity: 0.9;
}

.consultation-content {
  padding: 100px 20px;
  max-width: 1100px;
  margin: auto;
}

.consult-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.consult-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(243,211,138,0.35);
  border-radius: 22px;
  padding: 32px;
  text-align: left;
  transition: all 0.35s ease;
}

.consult-card h3 {
  font-family: 'Playfair Display', serif;
  color: #f3d38a;
  margin-bottom: 10px;
}

.consult-card p {
  font-size: 14px;
  opacity: 0.9;
}

.consult-card .fee {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  color: #f3d38a;
}

.consult-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #f3d38a, #cfa24a);
  color: #000;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.consult-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 22px rgba(243,211,138,0.45);
}

.consult-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(243,211,138,0.3);
}

.disclaimer {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 32px;
  }
}
/* =====================
   HAMBURGER MENU
===================== */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #f3d38a;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .navbar nav a,
  .navbar .lang-btn {
    margin: 0;
    font-size: 16px;
  }
}

/* ===== GLOBAL MOBILE FIX ===== */
body {
  overflow-x: hidden;
}

/* ===== CONTAINER FIX ===== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* ===== PAGE HEADING FIX ===== */
h1, h2 {
  font-size: clamp(26px, 6vw, 42px);
  line-height: 1.3;
  margin-bottom: 20px;
}

/* ===== CARD FIX ===== */
.card {
  width: 100%;
  margin: 15px auto;
  padding: 20px;
  border-radius: 18px;
  box-sizing: border-box;
}

/* ===== CARD TEXT FIX ===== */
.card p {
  font-size: 15px;
  line-height: 1.7;
}

/* ===== PRICING TEXT FIX ===== */
.card strong {
  font-weight: 600;
}

/* ===== WHATSAPP BUTTON FIX ===== */
.btn {
  display: inline-block;
  background: #c9a45c;
  color: #000 !important;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
}

.btn:hover {
  background: #ddb873;
}

/* ===== REMOVE BLUE LINK ISSUE ===== */
a {
  color: inherit;
  text-decoration: none;
}

/* ===== HEADER GAP FIX ===== */
header {
  padding: 15px 20px;
}

/* ===== FOOTER FIX ===== */
footer {
  margin-top: 40px;
  padding: 30px 20px;
  text-align: center;
}

footer a {
  margin: 0 8px;
  font-size: 14px;
}

/* ===== MOBILE MENU SAFE FIX ===== */
@media (max-width: 768px) {
  .nav-links {
    width: 220px;
    right: 15px;
    top: 65px;
  }
}
/* ===== ARTICLE PAGE ===== */

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  padding: 120px 40px;
}

.article-content {
  background: rgba(255,255,255,0.03);
  padding: 40px;
  border-radius: 20px;
}

.article-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #f3d38a;
}

.article-meta {
  font-size: 14px;
  opacity: 0.7;
  margin: 10px 0 25px;
}

.article-share {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.article-share a {
  font-size: 13px;
  padding: 6px 14px;
  border: 1px solid #f3d38a;
  border-radius: 20px;
  color: #f3d38a;
  text-decoration: none;
}

.article-content h2 {
  font-size: 26px;
  margin-top: 40px;
  color: #f3d38a;
}

.keywords {
  font-size: 14px;
  opacity: 0.85;
}

/* ===== SIDEBAR ===== */

.article-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-box {
  background: rgba(255,255,255,0.04);
  padding: 25px;
  border-radius: 18px;
  margin-bottom: 30px;
}

.sidebar-box h4 {
  color: #f3d38a;
  margin-bottom: 15px;
}

.sidebar-box ul {
  list-style: none;
}

.sidebar-box li {
  margin-bottom: 10px;
}

.sidebar-box a {
  color: #ddd;
  font-size: 14px;
  text-decoration: none;
}

.sidebar-box a:hover {
  color: #f3d38a;
}

/* ===== NAV ===== */

.article-nav {
  display: flex;
  gap: 15px;
  margin-top: 50px;
}

.article-nav a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #f3d38a;
  color: #f3d38a;
  text-decoration: none;
  font-size: 14px;
}

/* ===== AUTHOR ===== */

.author-box {
  margin-top: 60px;
  padding: 30px;
  border: 1px solid rgba(243,211,138,0.3);
  border-radius: 18px;
}

.author-box h3 {
  color: #f3d38a;
  margin-bottom: 10px;
}

/* ===== MOBILE ===== */

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
    padding: 100px 20px;
  }

  .article-sidebar {
    position: relative;
    top: 0;
  }
}
/* ===== DESKTOP AUTHORITY FIX ===== */

@media (min-width: 1100px) {

  .article-layout {
    max-width: 1400px;
    grid-template-columns: 1fr 380px;
    gap: 80px;
  }

  .article-content {
    padding: 60px;
  }

  .article-content h1 {
    font-size: 46px;
    line-height: 1.25;
  }

  .article-content p {
    font-size: 18px;
    line-height: 1.9;
  }

  .article-content h2 {
    font-size: 30px;
    margin-top: 60px;
  }

  .article-sidebar {
    padding-top: 40px;
  }

  .sidebar-box {
    padding: 30px;
  }
}
