/* ============================================
   ELDORADO — COMPONENT STYLES
   Premium Corporate Shipping & Logistics
   ============================================ */

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  height: var(--header-height);
  transition: background-color var(--transition-slow), box-shadow var(--transition-slow), height var(--transition-slow);
  background-color: transparent;
}

.site-header.scrolled {
  background-color: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  height: 70px;
}

/* Ensure header stays above mobile nav overlay when menu is open */
.site-header.menu-open {
  z-index: calc(var(--z-overlay) + 10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.header-logo img {
  height: 100px;
  width: auto;
  transition: height var(--transition-slow);
}

.site-header.scrolled .header-logo img {
  height: 70px;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.main-nav > a,
.main-nav > .nav-dropdown > a {
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  white-space: nowrap;
}

.main-nav > a:hover,
.main-nav > a.active,
.main-nav > .nav-dropdown > a:hover {
  color: var(--gold-400);
  background-color: rgba(200, 168, 78, 0.1);
}

/* Dropdown menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform var(--transition-base);
}

.nav-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background-color: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 168, 78, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-2xl);
}

[dir="rtl"] .dropdown-menu {
  left: auto;
  right: 0;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  color: var(--gray-300);
  transition: all var(--transition-base);
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background-color: rgba(200, 168, 78, 0.1);
  color: var(--gold-400);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  padding: 2px;
}

.lang-switcher button {
  color: var(--gray-400);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  min-width: 36px;
  text-align: center;
}

.lang-switcher button:hover {
  color: var(--white);
}

.lang-switcher button.active {
  background-color: var(--gold-400);
  color: var(--navy-800);
}

/* Mobile Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  z-index: var(--z-modal);
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  z-index: var(--z-overlay);
  padding: calc(var(--header-height) + var(--space-8)) var(--space-6) var(--space-8);
  overflow-y: auto;
  flex-direction: column;
  align-items: center;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: var(--white);
  font-size: var(--text-lg);
  padding: var(--space-3) var(--space-4);
  display: block;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  width: 100%;
  max-width: 320px;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold-400);
  background-color: rgba(200, 168, 78, 0.08);
}

.mobile-nav .mobile-lang {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.mobile-nav .mobile-lang button {
  color: var(--gray-400);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-600);
  transition: all var(--transition-base);
}

.mobile-nav .mobile-lang button.active {
  background: var(--gold-400);
  color: var(--navy-800);
  border-color: var(--gold-400);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-800);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(200, 168, 78, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

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

.btn-outline-gold {
  background: transparent;
  color: var(--gold-400);
  border: 2px solid var(--gold-400);
}

.btn-outline-gold:hover {
  background: var(--gold-400);
  color: var(--navy-800);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy-800);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-slider);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 14, 26, 0.85) 0%,
    rgba(10, 22, 40, 0.7) 50%,
    rgba(17, 34, 64, 0.6) 100%
  );
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
  padding-top: var(--header-height);
}

.hero-slide-content h1 {
  color: var(--white);
  font-size: var(--text-6xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  max-width: 700px;
}

.hero-slide-content h1 .gold-text {
  color: var(--gold-400);
  display: block;
}

.hero-slide-content .hero-subtitle {
  color: var(--gray-200);
  font-size: var(--text-xl);
  max-width: 560px;
  margin-bottom: var(--space-8);
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200, 168, 78, 0.2);
}

.hero-stats-inner {
  display: flex;
  justify-content: center;
  gap: var(--space-16);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-5) var(--space-6);
}

.hero-stat {
  text-align: center;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero-stat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(200, 168, 78, 0.15);
  color: var(--gold-400);
  flex-shrink: 0;
}

.hero-stat-icon svg {
  width: 20px;
  height: 20px;
}

.hero-stat-text {
  text-align: start;
}

.hero-stat-value {
  color: var(--gold-400);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.2;
}

.hero-stat-label {
  color: var(--gray-400);
  font-size: var(--text-xs);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: var(--space-2);
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}

.slider-dot.active {
  background: var(--gold-400);
  border-color: var(--gold-400);
  width: 36px;
  border-radius: var(--radius-full);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(10, 22, 40, 0.5);
  border: 1px solid rgba(200, 168, 78, 0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.slider-arrow:hover {
  background: var(--gold-400);
  color: var(--navy-800);
}

.slider-arrow-prev { left: var(--space-6); }
.slider-arrow-next { right: var(--space-6); }

[dir="rtl"] .slider-arrow-prev {
  left: auto;
  right: var(--space-6);
}

[dir="rtl"] .slider-arrow-next {
  right: auto;
  left: var(--space-6);
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-slow);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-300));
  transform: scaleX(0);
  transition: transform var(--transition-slow);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(200, 168, 78, 0.3);
}

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

.service-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--gold-400);
  transition: all var(--transition-base);
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-800);
  transform: scale(1.1);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-4);
}

.service-card .card-link {
  color: var(--gold-500);
  font-size: var(--text-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  transition: gap var(--transition-base), color var(--transition-base);
}

.service-card .card-link:hover {
  color: var(--gold-400);
  gap: var(--space-2);
}

.service-card .card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

[dir="rtl"] .service-card .card-link svg {
  transform: rotate(180deg);
}

[dir="rtl"] .service-card .card-link:hover svg {
  transform: rotate(180deg) translateX(4px);
}

/* ============================================
   WHY SECTION / TRUST
   ============================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.trust-item {
  text-align: center;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.trust-item:hover {
  background: rgba(200, 168, 78, 0.05);
}

.trust-item-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  border-radius: var(--radius-full);
  background: rgba(200, 168, 78, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  transition: all var(--transition-base);
}

.trust-item:hover .trust-item-icon {
  background: var(--gold-400);
  color: var(--navy-800);
  transform: scale(1.1);
}

.trust-item-icon svg {
  width: 24px;
  height: 24px;
}

.trust-item h4 {
  font-size: var(--text-lg);
  color: var(--white);
  margin-bottom: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
}

.trust-item p {
  font-size: var(--text-sm);
  color: var(--gray-400);
}

.trust-cta {
  text-align: center;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(200, 168, 78, 0.15);
}

.trust-cta p {
  font-size: var(--text-lg);
  color: var(--gray-300);
  margin-bottom: var(--space-6);
}

/* ============================================
   PAGE HERO (Internal Pages)
   ============================================ */
.page-hero {
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.page-hero .gold-text {
  color: var(--gold-400);
}

.page-hero p {
  color: var(--gray-300);
  font-size: var(--text-lg);
  max-width: 640px;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
}

.breadcrumbs a {
  color: var(--gray-400);
  transition: color var(--transition-base);
}

.breadcrumbs a:hover {
  color: var(--gold-400);
}

.breadcrumbs .separator {
  color: var(--gray-600);
}

.breadcrumbs .current {
  color: var(--gold-400);
  font-weight: 500;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: var(--space-5);
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--gray-700);
  margin-bottom: var(--space-2);
}

.form-control {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--gray-800);
  transition: all var(--transition-base);
  line-height: 1.5;
}

.form-control:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(200, 168, 78, 0.15);
}

.form-control::placeholder {
  color: var(--gray-400);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

[dir="rtl"] select.form-control {
  background-position: left 12px center;
  padding-right: var(--space-4);
  padding-left: 36px;
}

.form-error {
  font-size: var(--text-xs);
  color: var(--error);
  margin-top: var(--space-1);
  display: none;
}

.form-group.error .form-control {
  border-color: var(--error);
}

.form-group.error .form-error {
  display: block;
}

/* Form Row */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-900);
  color: var(--gray-400);
  padding: var(--space-16) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(200, 168, 78, 0.1);
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.8;
  margin-top: var(--space-4);
  color: var(--gray-400);
}

.footer-brand img {
  height: 50px;
  margin-bottom: var(--space-4);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(200, 168, 78, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--gold-400);
  color: var(--navy-800);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-column h4 {
  color: var(--white);
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-5);
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-400);
}

[dir="rtl"] .footer-column h4::after {
  left: auto;
  right: 0;
}

.footer-column ul li {
  margin-bottom: var(--space-2);
}

.footer-column ul li a {
  font-size: var(--text-sm);
  color: var(--gray-400);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.footer-column ul li a:hover {
  color: var(--gold-400);
  padding-inline-start: var(--space-2);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) 0;
  font-size: var(--text-xs);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-4);
}

.footer-bottom-links a {
  color: var(--gray-500);
  font-size: var(--text-xs);
  transition: color var(--transition-base);
}

.footer-bottom-links a:hover {
  color: var(--gold-400);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(200, 168, 78, 0.3);
}

.faq-item.active {
  border-color: rgba(200, 168, 78, 0.4);
  box-shadow: 0 2px 12px rgba(200, 168, 78, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy-800);
  cursor: pointer;
  text-align: start;
  background: var(--white);
  transition: all var(--transition-base);
}

.faq-question:hover {
  color: var(--gold-500);
}

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--gold-400);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-6) var(--space-5);
}

.faq-answer p {
  font-size: var(--text-sm);
  line-height: 1.8;
  color: var(--gray-600);
}

/* ============================================
   PROCESS STEPS — Premium Timeline
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-200), var(--gold-400));
  opacity: 0.25;
  border-radius: 2px;
}

.process-step {
  text-align: center;
  position: relative;
  padding: var(--space-6) var(--space-4);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: all 0.4s ease;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-300));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  transition: width 0.4s ease;
}

.process-step:hover {
  border-color: rgba(200, 168, 78, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(200, 168, 78, 0.1);
}

.process-step:hover::before {
  width: 100%;
}

.process-step-number {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-800);
  font-size: var(--text-2xl);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition-base);
}

.process-step:hover .process-step-number {
  transform: scale(1.15);
  box-shadow: var(--shadow-gold-lg);
}

.process-step h4 {
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: 0;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-sticky);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: pulse-whatsapp 2s infinite;
}

[dir="rtl"] .whatsapp-float {
  right: auto;
  left: var(--space-6);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ============================================
   NEWS BADGE
   ============================================ */
.news-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(200, 168, 78, 0.1);
  border: 1px solid rgba(200, 168, 78, 0.3);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-4);
  font-size: var(--text-xs);
  color: var(--gold-400);
  margin-bottom: var(--space-4);
  transition: all var(--transition-base);
  backdrop-filter: blur(8px);
}

.news-badge:hover {
  background: rgba(200, 168, 78, 0.2);
  transform: translateY(-1px);
}

.news-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--gold-400);
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 168, 78, 0.2);
}

.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  position: relative;
  overflow: hidden;
}

.blog-card-image .blog-category {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--gold-400);
  color: var(--navy-800);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

[dir="rtl"] .blog-card-image .blog-category {
  left: auto;
  right: var(--space-3);
}

.blog-card-body {
  padding: var(--space-5);
}

.blog-card-body h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
}

.blog-card-body p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-3);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--gray-400);
}

/* ============================================
   TIMELINE (About Page)
   ============================================ */
.timeline {
  position: relative;
  padding: var(--space-8) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-400), var(--navy-700));
  transform: translateX(-50%);
}

[dir="rtl"] .timeline::before {
  left: 50%;
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  padding-left: 0;
  margin-bottom: var(--space-8);
  position: relative;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background: var(--gold-400);
  border: 3px solid var(--navy-800);
  transform: translateX(-50%);
  z-index: 1;
  transition: all var(--transition-base);
}

.timeline-item:hover::before {
  transform: translateX(-50%) scale(1.3);
  box-shadow: 0 0 15px rgba(200, 168, 78, 0.4);
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  max-width: 400px;
  box-shadow: var(--shadow-md);
  margin: 0 var(--space-8);
  transition: all var(--transition-base);
}

.timeline-content:hover {
  box-shadow: var(--shadow-lg);
}

.timeline-content h4 {
  color: var(--gold-500);
  font-size: var(--text-lg);
  font-family: var(--font-body);
  margin-bottom: var(--space-1);
}

.timeline-content h5 {
  font-size: var(--text-base);
  font-family: var(--font-body);
  margin-bottom: var(--space-2);
}

.timeline-content p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: 0;
}

/* ============================================
   CONTACT INFO CARDS
   ============================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  border-color: rgba(200, 168, 78, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.contact-info-card .info-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card .info-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-card h4 {
  font-size: var(--text-base);
  font-family: var(--font-body);
  margin-bottom: var(--space-2);
}

.contact-info-card p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--gold-500);
  font-weight: 600;
  font-size: var(--text-sm);
}

.contact-info-card a:hover {
  color: var(--gold-400);
}

/* ============================================
   BENEFITS LIST — Premium Card Grid
   ============================================ */
.benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 100% !important;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefits-list li::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at top right, rgba(200, 168, 78, 0.06), transparent);
  pointer-events: none;
}

.benefits-list li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-300));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

[dir="rtl"] .benefits-list li::after {
  transform-origin: left;
}

.benefits-list li:hover {
  border-color: rgba(200, 168, 78, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(200, 168, 78, 0.1);
}

.benefits-list li:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

[dir="rtl"] .benefits-list li:hover::after {
  transform-origin: right;
}

.benefits-list li svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 2px;
  background: linear-gradient(135deg, rgba(200, 168, 78, 0.12), rgba(200, 168, 78, 0.04));
  padding: 4px;
  border-radius: var(--radius-md);
  box-sizing: content-box;
}

.benefits-list li span {
  font-weight: 500;
  line-height: 1.7;
}

/* ============================================
   SUCCESS / THANK-YOU
   ============================================ */
.success-container {
  text-align: center;
  padding: var(--space-16) 0;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-6);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--success), #059669);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s ease;
}

.success-icon svg {
  width: 48px;
  height: 48px;
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  text-align: center;
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
}

.error-page::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.05), transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

.error-page h1 {
  font-size: clamp(6rem, 15vw, 12rem);
  color: var(--gold-400);
  line-height: 1;
  text-shadow: 0 4px 30px rgba(200, 168, 78, 0.3);
}

.error-page h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.error-page p {
  color: var(--gray-400);
  max-width: 500px;
  margin: 0 auto var(--space-8);
}

/* ============================================
   SERVICE DETAIL PAGE COMPONENTS — Premium
   ============================================ */
.service-intro {
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: 2;
  max-width: 800px;
  background: linear-gradient(135deg, rgba(200, 168, 78, 0.04), rgba(200, 168, 78, 0.01));
  border: 1px solid rgba(200, 168, 78, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.service-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-300), var(--gold-400));
}

.service-intro::after {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(200, 168, 78, 0.08);
  line-height: 1;
  pointer-events: none;
}

[dir="rtl"] .service-intro::after {
  right: auto;
  left: 30px;
}

.service-detail-card {
  background: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 168, 78, 0.2);
}

/* Related Services — Enhanced Cards */
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.related-service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.related-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-300));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.related-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(200, 168, 78, 0.1);
  border-color: rgba(200, 168, 78, 0.3);
}

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

.related-service-card .related-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.related-service-card:hover .related-icon {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-800);
  transform: scale(1.1);
}

.related-service-card .related-icon svg {
  width: 24px;
  height: 24px;
}

.related-service-card h4 {
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.related-service-card span {
  color: var(--gold-500);
  font-size: var(--text-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  transition: color 0.3s ease;
}

.related-service-card:hover span {
  color: var(--gold-400);
}

/* Who Is This For — Premium Cards */
.target-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.target-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.target-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(200, 168, 78, 0.06), transparent);
  pointer-events: none;
}

.target-item:hover {
  border-color: rgba(200, 168, 78, 0.3);
  background: linear-gradient(135deg, var(--gold-50), var(--white));
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.target-item svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  color: var(--gold-400);
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(200, 168, 78, 0.12), rgba(200, 168, 78, 0.04));
  padding: 4px;
  border-radius: var(--radius-md);
  box-sizing: content-box;
}

.target-item span {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ============================================
   BLOG CATEGORIES
   ============================================ */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  justify-content: center;
}

.blog-category-btn {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-base);
}

.blog-category-btn:hover,
.blog-category-btn.active {
  background: var(--gold-400);
  color: var(--navy-800);
  border-color: var(--gold-400);
}

/* ============================================
   CTA SECTION (Reusable)
   ============================================ */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto var(--space-8);
  font-size: var(--text-lg);
}

/* ============================================
   CONSULTATION FORM WRAPPER
   ============================================ */
.consultation-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-10);
  align-items: start;
}

.consultation-info {
  background: var(--navy-800);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  color: var(--white);
}

.consultation-info h3 {
  color: var(--white);
  font-family: var(--font-body);
  margin-bottom: var(--space-4);
}

.consultation-info p {
  color: var(--gray-300);
}

.consultation-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.consultation-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold-400);
  flex-shrink: 0;
}

.consultation-info-item span {
  color: var(--gray-300);
  font-size: var(--text-sm);
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-container {
  width: 100%;
  height: 400px;
  background: var(--gray-100);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  overflow: hidden;
}

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

/* ============================================
   BLOG GRID & CARDS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-slow);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(200, 168, 78, 0.3);
}

.blog-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-category {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-800);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  z-index: 2;
}

[dir="ltr"] .blog-category {
  right: auto;
  left: var(--space-4);
}

.blog-card-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
  line-height: 1.6;
  color: var(--navy-800);
}

.blog-card-body p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-200);
  font-size: var(--text-xs);
  color: var(--gray-400);
}

.blog-card-meta .blog-date {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.blog-card-meta .blog-date svg {
  width: 14px;
  height: 14px;
}

.blog-read-more {
  color: var(--gold-500);
  font-weight: 600;
  font-size: var(--text-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  transition: gap var(--transition-base), color var(--transition-base);
}

.blog-read-more:hover {
  color: var(--gold-400);
  gap: var(--space-2);
}

.blog-read-more svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

[dir="rtl"] .blog-read-more svg {
  transform: rotate(180deg);
}

[dir="rtl"] .blog-read-more:hover svg {
  transform: rotate(180deg) translateX(4px);
}

.blog-card a.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* ============================================
   ARTICLE PAGE — PREMIUM REDESIGN
   ============================================ */
.article-header {
  padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-8);
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 40%, var(--navy-700) 100%);
  position: relative;
  overflow: hidden;
}

.article-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: articlePulse 6s ease-in-out infinite;
}

.article-header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes articlePulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.article-meta-bar .article-category {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-800);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-meta-bar .article-date,
.article-meta-bar .article-read-time {
  color: var(--gray-400);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.article-meta-bar svg {
  width: 16px;
  height: 16px;
}

.article-header h1 {
  color: var(--white);
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: var(--space-4);
  max-width: 800px;
  background: linear-gradient(135deg, var(--white) 60%, var(--gold-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.article-header .article-excerpt {
  color: var(--gray-300);
  font-size: var(--text-lg);
  line-height: 1.8;
  max-width: 700px;
}

.article-featured-image {
  margin-top: var(--space-8);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  aspect-ratio: 16 / 7;
}

.article-featured-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10, 22, 40, 0.3));
  pointer-events: none;
}

.article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.article-featured-image:hover img {
  transform: scale(1.03);
}

/* Article Content */
.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-12) var(--space-6);
  position: relative;
}

.article-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100px;
  background: linear-gradient(to bottom, var(--gold-400), transparent);
  border-radius: var(--radius-full);
}

[dir="ltr"] .article-content::before {
  right: auto;
  left: 0;
}

.article-content h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy-800);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid rgba(200, 168, 78, 0.15);
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.article-content h2::before {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-300));
  border-radius: var(--radius-full);
}

[dir="ltr"] .article-content h2::before {
  right: auto;
  left: 0;
}

.article-content h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--navy-700);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.article-content p {
  font-size: var(--text-base);
  line-height: 2;
  color: var(--gray-600);
  margin-bottom: var(--space-4);
}

.article-content ul,
.article-content ol {
  margin-bottom: var(--space-6);
  padding-right: var(--space-6);
}

[dir="ltr"] .article-content ul,
[dir="ltr"] .article-content ol {
  padding-right: 0;
  padding-left: var(--space-6);
}

.article-content li {
  font-size: var(--text-base);
  line-height: 2;
  color: var(--gray-600);
  margin-bottom: var(--space-3);
  position: relative;
  padding-right: var(--space-2);
  transition: all var(--transition-base);
}

[dir="ltr"] .article-content li {
  padding-right: 0;
  padding-left: var(--space-2);
}

.article-content li:hover {
  color: var(--navy-800);
}

.article-content ul li::marker {
  color: var(--gold-400);
  font-size: 1.2em;
}

.article-content ol li::marker {
  color: var(--gold-500);
  font-weight: 700;
}

/* Enhanced Tip Box */
.article-tip-box {
  background: linear-gradient(135deg, rgba(200, 168, 78, 0.08), rgba(200, 168, 78, 0.02));
  border: 1px solid rgba(200, 168, 78, 0.25);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  margin: var(--space-8) 0;
  position: relative;
  overflow: hidden;
}

.article-tip-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold-400), var(--gold-300));
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

[dir="ltr"] .article-tip-box::before {
  right: auto;
  left: 0;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.article-tip-box::after {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.article-tip-box h4 {
  color: var(--gold-600);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.article-tip-box p {
  color: var(--gray-600);
  margin-bottom: 0;
  line-height: 1.9;
}

.article-related {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 2px solid var(--gray-200);
}

.article-related h3 {
  text-align: center;
  margin-bottom: var(--space-8);
}

.article-related .blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Responsive Blog */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-related .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-header h1 {
    font-size: var(--text-3xl);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .article-related .blog-grid {
    grid-template-columns: 1fr;
  }
  .article-header h1 {
    font-size: var(--text-2xl);
  }
  .article-content {
    padding: var(--space-8) var(--space-4);
  }
  .article-content::before {
    display: none;
  }
}

/* ============================================
   ARTICLE INLINE CTA — PREMIUM
   ============================================ */
.article-inline-cta {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  margin: var(--space-10) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 168, 78, 0.15);
}

.article-inline-cta::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaFloat 8s ease-in-out infinite;
}

.article-inline-cta::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaFloat 8s ease-in-out infinite reverse;
}

@keyframes ctaFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.article-inline-cta h3 {
  color: var(--white) !important;
  font-size: var(--text-2xl) !important;
  margin-bottom: var(--space-3) !important;
  margin-top: 0 !important;
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.article-inline-cta p {
  color: var(--gray-300) !important;
  margin-bottom: var(--space-6) !important;
  position: relative;
  z-index: 1;
  font-size: var(--text-lg) !important;
  line-height: 1.8;
}

.article-inline-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.article-inline-cta .cta-buttons .btn {
  padding: var(--space-3) var(--space-8);
  font-size: var(--text-base);
}

/* Service Links — Premium Grid */
.article-service-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.article-service-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.03), rgba(200, 168, 78, 0.04));
  border: 1px solid rgba(200, 168, 78, 0.15);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: var(--navy-800);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.article-service-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.article-service-link:hover {
  border-color: var(--gold-400);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200, 168, 78, 0.15);
}

.article-service-link:hover::before {
  opacity: 0.06;
}

.article-service-link svg {
  width: 28px;
  height: 28px;
  color: var(--gold-500);
  flex-shrink: 0;
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.article-service-link:hover svg {
  color: var(--gold-400);
  transform: scale(1.1);
}

.article-service-link span {
  font-weight: 600;
  font-size: var(--text-sm);
  position: relative;
  z-index: 1;
}

.article-share {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6);
  margin: var(--space-8) 0;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
}

.article-share-label {
  font-weight: 700;
  color: var(--navy-800);
  font-size: var(--text-sm);
  white-space: nowrap;
}

.article-share-links {
  display: flex;
  gap: var(--space-2);
}

.article-share-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.article-share-links a:hover {
  background: var(--gold-400);
  color: var(--navy-800);
  border-color: var(--gold-400);
}

.article-share-links a svg {
  width: 18px;
  height: 18px;
}

/* Bottom Navigation — Enhanced */
.article-bottom-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 2px solid rgba(200, 168, 78, 0.15);
  position: relative;
}

.article-bottom-nav::before {
  content: '';
  position: absolute;
  top: -2px;
  right: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), transparent);
}

[dir="ltr"] .article-bottom-nav::before {
  right: auto;
  left: 0;
}

.article-bottom-nav .btn {
  padding: var(--space-3) var(--space-8);
  font-size: var(--text-base);
}

@media (max-width: 640px) {
  .article-service-links {
    grid-template-columns: 1fr;
  }
  .article-share {
    flex-direction: column;
    align-items: flex-start;
  }
  .article-inline-cta {
    padding: var(--space-8) var(--space-5);
  }
  .article-bottom-nav .btn {
    width: 100%;
  }
}

