:root {
  /* Classical, Organized & Premium Medical Palette */
  --primary-h: 215;
  --primary-s: 70%;
  --primary-l: 20%; /* Deep Royal Navy Blue (#0F2E59) */
  --primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
  --primary-m: hsl(var(--primary-h), 65%, 28%);
  --primary-light: hsl(var(--primary-h), 50%, 96%);
  
  --secondary: #206095; /* Classic Medical Slate Blue */
  --secondary-light: #ecf3fa;
  
  --accent: #bfa15f; /* Elegant Warm Gold Accent */
  --accent-light: #f7f4ec;
  --accent-glow: rgba(191, 161, 95, 0.12);
  
  --emerald: #059669; /* Tax Compliant Green */
  --emerald-light: #ecfdf5;
  
  --dark: #0f1c2c;
  --text-main: #334155;
  --text-muted: #64748b;
  --bg-main: #ffffff;
  --bg-soft: #faf9f6; /* Ivory / Warm off-white */
  --bg-table-alt: #f8fafc;
  
  --glass-white: #ffffff;
  --glass-border: #e2e8f0;
  
  /* Classical Subtle Shadows */
  --shadow-sm: 0 2px 6px rgba(15, 28, 44, 0.02);
  --shadow-md: 0 10px 30px rgba(15, 28, 44, 0.04);
  --shadow-lg: 0 20px 45px rgba(15, 28, 44, 0.07);
  --shadow-classic: 0 0 0 1px rgba(15, 28, 44, 0.05), 0 4px 20px rgba(15, 28, 44, 0.03);
  --shadow-hover: 0 15px 35px rgba(15, 28, 44, 0.09);
  
  /* Traditional Border Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Global resets for the Classical Landing */
.landing-modern {
  font-family: 'Cairo', 'Open Sans', 'Roboto', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.8;
  font-size: 15px;
}

.landing-modern * {
  box-sizing: border-box;
}

.landing-modern section {
  padding: 100px 0;
  position: relative;
}

/* Helper Utilities */
.text-emerald { color: var(--emerald) !important; }
.bg-emerald-light { background-color: var(--emerald-light) !important; }
.bg-teal-light { background-color: var(--primary-light) !important; }
.text-teal { color: var(--secondary) !important; }
.text-teal-dark { color: var(--primary) !important; }
.bg-emerald { background-color: var(--emerald) !important; }

/* Custom Classical Gold accent details */
.text-gold { color: var(--accent) !important; }
.bg-gold-light { background-color: var(--accent-light) !important; }
.border-gold-soft { border-color: rgba(191, 161, 95, 0.2) !important; }

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Elegant Classic Section Headers */
.landing-modern .section-header {
  margin-bottom: 60px;
  position: relative;
}

.landing-modern .section-header .section-subtitle-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(191, 161, 95, 0.2);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.landing-modern .section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.landing-modern .section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

.landing-modern .section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Classical Header & Navigation */
.landing-modern .navbar {
  position: sticky;
  top: 0;
  z-index: 1050;
  padding: 1.1rem 0;
  background: #ffffff;
  border-bottom: 2px solid var(--accent-light);
  box-shadow: 0 4px 20px rgba(15, 28, 44, 0.02);
  transition: var(--transition);
}

.landing-modern .navbar-brand-modern {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.landing-modern .brand-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.landing-modern .brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-modern .brand-info {
  display: flex;
  flex-direction: column;
}

.landing-modern .brand-title {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.landing-modern .brand-tagline {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Nav Menu Toggler */
.landing-modern .navbar-toggler-custom {
  border: 1px solid var(--glass-border);
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 10px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.landing-modern .navbar-toggler-custom:hover {
  background-color: var(--bg-soft);
  border-color: var(--accent);
}

.landing-modern .navbar-toggler-custom .bar {
  width: 22px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
}

@media (min-width: 992px) {
  .landing-modern .navbar-toggler-custom {
    display: none;
  }
}

/* Custom Navigation Menu items */
.landing-modern .navbar-nav-custom {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.75rem;
}

.landing-modern .nav-link-custom {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

.landing-modern .nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
  transform: translateX(-50%);
}

.landing-modern .nav-link-custom:hover {
  color: var(--accent);
}

.landing-modern .nav-link-custom:hover::after {
  width: 80%;
}


.landing-modern .nav-actions-modern {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.landing-modern .btn-lang-switch {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.landing-modern .btn-lang-switch:hover {
  color: var(--accent);
}

.landing-modern .btn-login-modern {
  background: var(--primary);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--primary);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.landing-modern .btn-login-modern:hover {
  background: #ffffff;
  color: var(--primary) !important;
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Classical Hero Section */
.landing-modern .hero-modern {
  padding-top: clamp(80px, 9vw, 110px);
  padding-bottom: clamp(60px, 7vw, 90px);
  background: #ffffff;
  overflow: hidden;
  border-bottom: 2px solid var(--bg-soft);
}

.landing-modern .hero-content-block,
.landing-modern .hero-visual-block {
  position: relative;
  z-index: 5;
}

.landing-modern .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-light);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(191, 161, 95, 0.25);
  margin-bottom: 1.75rem;
}

.landing-modern .hero-title-text {
  font-size: clamp(2.3rem, 4.5vw, 3.3rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.landing-modern .hero-desc-text {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 570px;
}

.landing-modern .btn-hero-gradient {
  background: var(--primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 2.4rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(15, 46, 89, 0.15);
  border: 1px solid var(--primary);
  transition: var(--transition);
}

.landing-modern .btn-hero-gradient:hover {
  background: #ffffff;
  color: var(--primary) !important;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.landing-modern .btn-hero-outline {
  border: 2px solid var(--accent);
  color: var(--accent) !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.4rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: transparent;
  transition: var(--transition);
}

.landing-modern .btn-hero-outline:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
}

.landing-modern .hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2.2rem;
  border-top: 2px solid var(--accent-light);
}

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

.landing-modern .stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--primary);
}

.landing-modern .stat-lbl {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 6px;
}

/* Classical Symmetrical Portrait Image Frame */
.landing-modern .hero-visual-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.landing-modern .hero-main-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent);
  padding: 12px;
  background-color: #ffffff;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 3;
}

/* Elegantly styled absolute badges */
.landing-modern .floating-card {
  position: absolute;
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  border: 1px solid var(--accent);
  box-shadow: var(--shadow-md);
}

.landing-modern .zatca-cert-card {
  top: 12%;
  right: -10px;
}

.landing-modern .patient-flow-card {
  bottom: 12%;
  left: -10px;
}

.landing-modern .floating-card .card-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.landing-modern .floating-card .card-info {
  display: flex;
  flex-direction: column;
}

.landing-modern .floating-card .card-title {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 2px;
}

.landing-modern .floating-card .card-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}



/* About Section */
.landing-modern .about-section {
  background-color: #ffffff;
  border-bottom: 1px solid var(--bg-soft);
}

.landing-modern .about-visual img {
  border: 1px solid var(--accent);
  padding: 12px;
  background-color: #ffffff;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm) !important;
}

.landing-modern .lead-styled {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-main);
}

.landing-modern .about-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  background-color: var(--bg-soft);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.landing-modern .about-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.landing-modern .about-feature-card .feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(191, 161, 95, 0.2);
}

.landing-modern .btn-gradient-fill {
  background: var(--primary);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 700;
  padding: 0.95rem 2.4rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 1px solid var(--primary);
  box-shadow: 0 4px 12px rgba(15, 46, 89, 0.15);
}

.landing-modern .btn-gradient-fill:hover {
  background: #ffffff;
  color: var(--primary) !important;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Services & Editorial Card Design */
.landing-modern .services-section {
  background-color: var(--bg-soft);
  border-bottom: 1px solid rgba(15, 28, 44, 0.02);
}

.landing-modern .tabs-slider-container {
  display: flex;
  background-color: #ffffff;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.landing-modern .tab-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}

.landing-modern .tab-btn.active {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.landing-modern .service-card {
  background-color: #ffffff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border) !important;
  padding: 2.2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-classic);
}

.landing-modern .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.landing-modern .service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent) !important;
}

.landing-modern .service-card:hover::before {
  transform: scaleX(1);
}

.landing-modern .service-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  background-color: var(--accent-light);
  border: 1px solid rgba(191, 161, 95, 0.2);
}

.landing-modern .service-card h5 {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 0.85rem;
}

.landing-modern .service-desc-truncate {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.landing-modern .service-arrow {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--bg-soft);
  color: var(--text-muted);
  transition: var(--transition);
}

.landing-modern .service-card:hover .service-arrow {
  background-color: var(--accent);
  color: #fff !important;
}

.landing-modern .package-style-card {
  border-top: 1px solid var(--glass-border) !important;
}

.landing-modern .package-style-card::before {
  background-color: var(--primary);
  transform: scaleX(0);
}

.landing-modern .package-style-card:hover::before {
  transform: scaleX(1);
}

.landing-modern .package-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background-color: var(--accent-light);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(191, 161, 95, 0.2);
}

.landing-modern .package-info-stats {
  background-color: var(--bg-soft);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
}

/* Classical Doctors Section */
.landing-modern .doctors-section {
  background-color: #ffffff;
  border-bottom: 2px solid var(--accent-light);
}

.landing-modern .doctor-card-modern {
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border) !important;
  overflow: hidden;
  transition: var(--transition);
  background-color: #ffffff;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.landing-modern .doctor-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent) !important;
}

.landing-modern .doctor-image-container {
  height: 240px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 2px solid var(--accent-light);
}

.landing-modern .doc-icon-placeholder {
  font-size: 5.5rem;
  color: #cbd5e1;
}

.landing-modern .doc-badge-status {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: var(--text-main);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--accent);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.landing-modern .doc-badge-status .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--emerald);
  border-radius: 50%;
  display: inline-block;
}

.landing-modern .doctor-info-box {
  padding: 1.5rem !important;
}

.landing-modern .doctor-info-box h5 {
  color: var(--primary);
  font-weight: 850;
  font-size: 1.2rem;
}

.landing-modern .doctor-license-badge {
  background-color: var(--accent-light);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(191, 161, 95, 0.2);
}

/* Classical Partners & Insurance Section */
.landing-modern .partners-section {
  background-color: var(--bg-soft);
  border-bottom: 1px solid rgba(15, 28, 44, 0.02);
  padding: 60px 0;
}

.landing-modern .partner-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background-color: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 15px;
  transition: var(--transition);
}

.landing-modern .partner-logo-box:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.landing-modern .partner-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: var(--transition);
}

.landing-modern .partner-logo-box:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.landing-modern .partner-logo-box i {
  font-size: 2.2rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.landing-modern .partner-logo-box:hover i {
  color: var(--primary);
}

/* Classical Testimonials Section */
.landing-modern .testimonials-section {
  background-color: #ffffff;
  border-bottom: 1px solid var(--bg-soft);
}

.landing-modern .testimonial-card {
  background-color: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-classic);
  transition: var(--transition);
}

.landing-modern .testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.landing-modern .testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.25;
}

.landing-modern .testimonial-card .quote-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.landing-modern .testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--glass-border);
  padding-top: 1.25rem;
}

.landing-modern .testimonial-card .client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  border: 1px solid var(--accent);
}

.landing-modern .testimonial-card .client-meta h6 {
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.landing-modern .testimonial-card .client-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Classical Working Hours Section */
.landing-modern .working-hours-section {
  background-color: var(--bg-soft);
  border-bottom: 1px solid rgba(15, 28, 44, 0.02);
}

.landing-modern .hours-card {
  background: #ffffff;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.landing-modern .hours-table {
  width: 100%;
  margin-bottom: 0;
}

.landing-modern .hours-table th {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--accent);
  padding: 1rem;
  text-transform: uppercase;
}

.landing-modern .hours-table td {
  padding: 1.1rem 1rem;
  vertical-align: middle;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  border-bottom: 1px solid var(--glass-border);
}

.landing-modern .hours-table tr:last-child td {
  border-bottom: none;
}

.landing-modern .hours-table tr:hover td {
  background-color: var(--accent-light);
  color: var(--primary);
}

.landing-modern .hours-notice-box {
  background-color: var(--accent-light);
  border-inline-start: 4px solid var(--accent);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--primary-m);
}

/* Classical Accordion FAQ Section */
.landing-modern .faq-section {
  background-color: #ffffff;
  border-bottom: 1px solid var(--bg-soft);
}

.landing-modern .accordion-faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.landing-modern .faq-item {
  background: #ffffff;
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 1.1rem;
  overflow: hidden;
  transition: var(--transition);
}

.landing-modern .faq-item:hover {
  border-color: var(--accent) !important;
}

.landing-modern .faq-toggle-btn {
  background-color: #ffffff !important;
  outline: none !important;
  border-radius: var(--radius-sm) !important;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}

.landing-modern .faq-chevron {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
  border: 1px solid var(--glass-border);
}

.landing-modern .faq-item.active .faq-chevron {
  transform: rotate(180deg);
  background-color: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.landing-modern .faq-content-pane {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.landing-modern .faq-content-pane div {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Symmetrical Elegant Classical Footer */
.landing-modern .footer-modern {
  background-color: var(--dark) !important;
  color: #cbd5e1;
  padding-top: 80px;
  padding-bottom: 30px;
  border-top: 3px solid var(--accent);
}

.landing-modern .footer-modern a {
  transition: var(--transition);
}

.landing-modern .footer-link-list li {
  margin-bottom: 0.85rem;
}

.landing-modern .footer-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.landing-modern .footer-link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

/* RTL translation fix */
[dir="rtl"] .landing-modern .footer-link:hover {
  transform: translateX(-4px);
}

.landing-modern .footer-social-links a {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: #cbd5e1;
}

.landing-modern .footer-social-links a:hover {
  background-color: var(--accent);
  color: #ffffff !important;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.landing-modern .vat-badge-footer {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(191, 161, 95, 0.25) !important;
  border-radius: var(--radius-sm);
}

.landing-modern .border-white-opacity {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Animations (Strictly non-glow, classical only) */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

.landing-modern .animate-float {
  animation: float 5s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .landing-modern section {
    padding: 70px 0;
  }
  
  .landing-modern .navbar-collapse {
    background-color: #ffffff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    margin-top: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--accent);
  }
  
  .landing-modern .navbar-nav-custom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    width: 100%;
    margin-bottom: 1.25rem !important;
  }
  
  .landing-modern .nav-actions-modern {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  
  .landing-modern .btn-lang-switch,
  .landing-modern .btn-login-modern {
    width: 100%;
    justify-content: center;
  }
  
  .landing-modern .hero-modern {
    padding-top: 100px;
    text-align: center;
  }
  
  .landing-modern .hero-desc-text {
    margin-left: auto;
    margin-right: auto;
  }
  
  .landing-modern .hero-actions-container {
    justify-content: center;
  }
  
  .landing-modern .hero-visual-wrapper {
    margin-top: 3.5rem;
  }
  
  .landing-modern .border-end-custom {
    border-inline-end: none;
    border-bottom: 2px solid var(--accent-light);
    padding-bottom: 1.5rem;
  }
  
  .landing-modern .floating-card {
    display: none !important;
  }
}
