/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  background: transparent;
}
#navbar.navbar-scrolled {
  background: #1A1A1A;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
@media (max-width: 767px) {
  #navbar {
    background: #1A1A1A;
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #6B2737;
  transition: width 0.25s ease;
}
.nav-link:hover {
  color: #fff;
}
.nav-link:hover::after {
  width: 100%;
}

.mobile-nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  padding: 0.5rem 0;
  display: block;
  transition: color 0.2s;
}
.mobile-nav-link:hover {
  color: #fff;
}

/* ============================================================
   LOGO MONOGRAM
   ============================================================ */
.logo-monogram {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
  font-weight: 700;
  color: #6B2737;
  line-height: 1;
  letter-spacing: 0;
}

/* ============================================================
   LANGUAGE BUTTONS
   ============================================================ */
.lang-btn {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 3px;
  padding: 4px 9px;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.lang-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
.lang-btn.active-lang {
  background: #6B2737;
  border-color: #6B2737;
  color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(107, 39, 55, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(107, 39, 55, 0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(107, 39, 55, 0.05) 0%, transparent 40%),
    linear-gradient(150deg, #111111 0%, #1E1E1E 45%, #111111 100%);
}
.hero-overlay {
  background: rgba(17, 17, 17, 0.15);
}

.hero-section h1::before {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: #6B2737;
  margin: 0 auto 1rem;
}

.hero-credentials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-cred-dot {
  color: rgba(107, 39, 55, 0.55);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: #6B2737;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.9rem 2.75rem;
  border-radius: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary:hover {
  background: #8A3349;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 39, 55, 0.4);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ============================================================
   SECTION ELEMENTS
   ============================================================ */
.section-badge {
  display: inline-block;
  color: #6B2737;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #6B2737;
  padding-bottom: 3px;
}
.section-badge-light {
  display: inline-block;
  color: rgba(107, 39, 55, 0.75);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid rgba(107, 39, 55, 0.5);
  padding-bottom: 3px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 0.75rem;
  text-align: center;
  line-height: 1.2;
}
.section-subtitle {
  color: #6b7280;
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.65;
}

/* ============================================================
   PRACTICE CARDS
   ============================================================ */
.practice-card {
  background: #fff;
  border: 1px solid #e9eaeb;
  border-top: 3px solid transparent;
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
  transition: border-top-color 0.25s, box-shadow 0.25s, transform 0.25s;
  text-align: center;
}
.practice-card:hover {
  border-top-color: #6B2737;
  box-shadow: 0 10px 36px rgba(26, 26, 26, 0.09);
  transform: translateY(-4px);
}
.practice-icon {
  font-size: 2.25rem;
  margin-bottom: 0.85rem;
  display: block;
}
.practice-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A1A;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-stats-grid {
  border-top: 1px solid #e9eaeb;
  padding-top: 1.5rem;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-text-block {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.9;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: #6B2737;
  box-shadow: 0 0 0 3px rgba(107, 39, 55, 0.1);
  background: #fff;
}
.form-input::placeholder {
  color: #b0b8c1;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}
[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 24px;
}

/* ============================================================
   RTL ADJUSTMENTS
   ============================================================ */
[dir="rtl"] .section-title {
  font-family: 'Playfair Display', serif;
}
[dir="rtl"] .nav-link::after {
  left: auto;
  right: 0;
}
[dir="rtl"] .hero-credentials {
  direction: rtl;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #F4F4F2;
}
::-webkit-scrollbar-thumb {
  background: #6B2737;
  border-radius: 3px;
}

/* ============================================================
   SMOOTH SCROLL & SELECTION
   ============================================================ */
html {
  scroll-behavior: smooth;
}
::selection {
  background: rgba(107, 39, 55, 0.2);
  color: #1A1A1A;
}
