/* Al-Manar Studio - Main Stylesheet */

:root {
  /* Colors - Original Identity */
  --gold-primary: #e8c76a;
  --gold-bright: #ffd700;
  --gold-dark: #c9a14a;
  --gold-deep: #a07830;
  --purple-neon: #bf00ff;
  --purple-deep: #4b0082;
  --pink-neon: #ff1493;
  --blue-electric: #1e90ff;
  --blue-deep: #000047;
  --black-pure: #0b0b0b;
  --black-soft: #111111;
  --black-card: #1a1a1a;
  --white: #ffffff;
  --gray-light: #e0e0e0;
  --gray-mid: #888888;
  --gray-dark: #444444;

  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black-pure);
  color: var(--white);
  font-family: "Cairo", "Tajawal", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* RTL Support */
[dir="rtl"] body {
  direction: rtl;
}

[dir="ltr"] body {
  direction: ltr;
}

/* Background Animation */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background:
    radial-gradient(
      ellipse at 20% 80%,
      rgba(191, 0, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(255, 20, 147, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(232, 199, 106, 0.05) 0%,
      transparent 70%
    ),
    linear-gradient(
      135deg,
      var(--black-pure) 0%,
      var(--blue-deep) 50%,
      var(--black-pure) 100%
    );
  animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black-soft);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-primary), var(--purple-neon));
  border-radius: 3px;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-flame {
  width: 50px;
  height: 50px;
  position: relative;
}

.logo-flame svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px var(--gold-primary));
}

.logo-text {
  font-family: "Cairo", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--gold-primary) 0%,
    var(--gold-bright) 50%,
    var(--gold-primary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--gray-mid);
  font-weight: 400;
  letter-spacing: 0.1em;
}

/* Brand Logo Component Utilities */
.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-logo-svg svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px var(--gold-primary));
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 5%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 11, 11, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 199, 106, 0.2);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--purple-neon));
  transition: var(--transition);
}

[dir="ltr"] .nav-links a::after {
  right: auto;
  left: 0;
}

.nav-links a:hover {
  color: var(--gold-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--gold-primary);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--black-pure);
  padding: 12px 28px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232, 199, 106, 0.3);
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 199, 106, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--purple-neon));
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(11, 11, 11, 0.98);
  backdrop-filter: blur(20px);
  padding: 2rem;
  z-index: 999;
  border-bottom: 1px solid rgba(232, 199, 106, 0.2);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--gold-primary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 5% 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 30% 70%,
      rgba(255, 20, 147, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(191, 0, 255, 0.1) 0%,
      transparent 40%
    );
  pointer-events: none;
  z-index: 1;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(11, 11, 11, 0.75) 0%,
    rgba(11, 11, 11, 0.4) 40%,
    rgba(11, 11, 11, 0.4) 60%,
    rgba(11, 11, 11, 0.85) 100%
  );
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232, 199, 106, 0.1);
  border: 1px solid rgba(232, 199, 106, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gold-primary);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--gold-primary);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--gold-primary) 50%,
    var(--purple-neon) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--black-pure);
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 25px rgba(232, 199, 106, 0.4);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(232, 199, 106, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid rgba(232, 199, 106, 0.5);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary:hover {
  border-color: var(--gold-primary);
  background: rgba(232, 199, 106, 0.1);
  color: var(--gold-primary);
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 4rem;
  justify-content: center;
  margin-top: 5rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(232, 199, 106, 0.2);
  border-radius: 20px;
  min-width: 140px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.stat-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-primary), var(--purple-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-top: 0.5rem;
}

/* Today Section */
.today-section {
  padding: 100px 5%;
  background: linear-gradient(
    180deg,
    var(--black-pure) 0%,
    rgba(75, 0, 130, 0.1) 50%,
    var(--black-pure) 100%
  );
  border-top: 1px solid rgba(232, 199, 106, 0.2);
  border-bottom: 1px solid rgba(232, 199, 106, 0.2);
}

.today-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.today-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(191, 0, 255, 0.3);
}

.today-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(232, 199, 106, 0.2),
    rgba(191, 0, 255, 0.2)
  );
  z-index: 1;
}

.today-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.1);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 0, 0, 0.15);
  border: 1px solid rgba(255, 0, 0, 0.4);
  color: #ff4444;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* When the badge is inside .square-media (like /live), keep it as an overlay */
.square-media > .live-badge {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  z-index: 20;
  margin: 0;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 68, 68, 0);
  }
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  padding: 8px 16px;
  background: rgba(232, 199, 106, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(232, 199, 106, 0.3);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-title span {
  background: linear-gradient(135deg, var(--gold-primary), var(--purple-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Services Section */
.services-section {
  padding: 100px 5%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto 0;
}

.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
  background: linear-gradient(
    145deg,
    rgba(26, 26, 26, 0.8),
    rgba(17, 17, 17, 0.9)
  );
  border: 1px solid rgba(232, 199, 106, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-primary),
    var(--purple-neon),
    var(--pink-neon)
  );
  transform: scaleX(0);
  transition: var(--transition);
}

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

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(232, 199, 106, 0.4);
  box-shadow: 0 20px 40px rgba(191, 0, 255, 0.2);
}

.service-card:active {
  transform: translateY(-5px) scale(0.98);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(232, 199, 106, 0.2),
    rgba(191, 0, 255, 0.2)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.service-card p {
  color: var(--gray-mid);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Packages Section */
.packages-section {
  padding: 100px 5%;
  background: linear-gradient(
    180deg,
    var(--black-pure) 0%,
    rgba(0, 0, 71, 0.2) 50%,
    var(--black-pure) 100%
  );
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 4rem auto 0;
}

.package-card {
  background: linear-gradient(
    145deg,
    rgba(26, 26, 26, 0.9),
    rgba(17, 17, 17, 0.95)
  );
  border: 1px solid rgba(232, 199, 106, 0.2);
  border-radius: 30px;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
}

.package-card.featured {
  background: linear-gradient(
    145deg,
    rgba(232, 199, 106, 0.1),
    rgba(191, 0, 255, 0.05)
  );
  border: 2px solid var(--gold-primary);
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-primary), var(--purple-neon));
  color: var(--black-pure);
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.package-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
  box-shadow: 0 25px 50px rgba(232, 199, 106, 0.2);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.package-name {
  font-size: 0.9rem;
  color: var(--gold-primary);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.package-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.package-price {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-primary), var(--purple-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

.package-price span {
  font-size: 1rem;
  color: var(--gray-mid);
  font-weight: 400;
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
}

.package-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-features li::before {
  content: "✓";
  color: var(--gold-primary);
  font-weight: 700;
}

/* Portfolio Section */
.portfolio-section {
  padding: 100px 5%;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 4rem auto 0;
}

.portfolio-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  border: 1px solid rgba(232, 199, 106, 0.2);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  filter: brightness(0.7);
}

.portfolio-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.6);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 11, 11, 0.9) 0%,
    transparent 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  pointer-events: none;
}

.portfolio-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold-primary), var(--purple-neon));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--black-pure);
  opacity: 0;
  transition: var(--transition);
  pointer-events: auto;
  z-index: 10;
}

.portfolio-item:hover .portfolio-play {
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
}

/* Contact Section */
.contact-section {
  padding: 100px 5%;
  background: linear-gradient(
    180deg,
    var(--black-pure) 0%,
    rgba(75, 0, 130, 0.1) 100%
  );
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 4rem auto 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 20px;
  border: 1px solid rgba(232, 199, 106, 0.2);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--gold-primary);
  transform: translateX(-10px);
}

[dir="ltr"] .contact-item:hover {
  transform: translateX(10px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-primary), var(--purple-neon));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--gray-mid);
  font-size: 0.95rem;
}

.contact-form {
  background: rgba(26, 26, 26, 0.8);
  padding: 3rem;
  border-radius: 30px;
  border: 1px solid rgba(232, 199, 106, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gold-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid rgba(232, 199, 106, 0.2);
  border-radius: 15px;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(232, 199, 106, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Footer */
footer {
  background: var(--black-soft);
  padding: 60px 5% 30px;
  border-top: 1px solid rgba(232, 199, 106, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-brand p {
  color: var(--gray-mid);
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(232, 199, 106, 0.1);
  border: 1px solid rgba(232, 199, 106, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.2rem;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold-primary);
  color: var(--black-pure);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--gold-primary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: var(--gray-mid);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-col a:hover {
  color: var(--gold-primary);
  transform: translateX(-5px);
}

[dir="ltr"] .footer-col a:hover {
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(232, 199, 106, 0.1);
  color: var(--gray-mid);
  font-size: 0.9rem;
}

.footer-bottom span,
.footer-bottom a {
  color: var(--gold-primary);
  text-decoration: none;
}

.footer-bottom a:hover {
  opacity: 0.85;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

[dir="ltr"] .whatsapp-float {
  right: auto;
  left: 30px;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  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);
  }
}

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

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Alert Messages */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.alert-success {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
}

.alert-error {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.3);
  color: #ff4444;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-inline-start: 1rem;
}

.lang-btn {
  font-size: 0.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--gray-mid);
  text-decoration: none;
  transition: var(--transition);
  background: transparent;
}

.lang-btn:hover {
  border-color: rgba(232, 199, 106, 0.5);
  color: var(--gray-light);
}

.lang-btn.active,
.lang-btn.active:hover {
  background: rgba(232, 199, 106, 0.2);
  color: var(--gold-primary);
  border-color: rgba(232, 199, 106, 0.5);
}

/* Mobile Language Switcher (inside mobile menu) */
.mobile-lang-switcher {
  display: flex;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

.lang-mobile-btn {
  flex: 1;
  text-align: center;
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--gray-mid);
  text-decoration: none;
  transition: var(--transition);
  background: transparent;
}

.lang-mobile-btn:hover {
  border-color: rgba(232, 199, 106, 0.5);
  color: var(--gray-light);
}

.lang-mobile-btn.active,
.lang-mobile-btn.active:hover {
  background: rgba(232, 199, 106, 0.2);
  color: var(--gold-primary);
  border-color: rgba(232, 199, 106, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta,
  .lang-switcher {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .today-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    gap: 1.5rem;
  }

  .package-card.featured {
    transform: scale(1);
  }
  .package-card.featured:hover {
    transform: scale(1) translateY(-10px);
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

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

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

.blog-meta-text {
  display: none !important;
}

/* Blog Card Styles - Modern Professional Layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto 0;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(
    145deg,
    rgba(26, 26, 26, 0.8),
    rgba(17, 17, 17, 0.9)
  );
  border: 1px solid rgba(232, 199, 106, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: rgba(232, 199, 106, 0.4);
  box-shadow: 0 25px 50px rgba(191, 0, 255, 0.25);
}

.blog-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

@supports not (aspect-ratio: 1 / 1) {
  .blog-card-img {
    height: 0;
    padding-bottom: 100%;
  }
  .blog-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
  gap: 0.75rem;
}

.blog-card-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: var(--gold-primary);
}

.blog-card-excerpt {
  color: var(--gray-mid);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-top: auto;
  padding-top: 0.5rem;
}

.blog-card-meta-date {
  color: var(--gray-mid);
}

.blog-card-meta-views {
  opacity: 0.8;
}

.blog-card-button {
  margin-top: 1rem;
}

.blog-read-more-btn {
  font-size: 0.85rem;
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1rem;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-body {
    padding: 1.25rem;
  }

  .blog-card-title {
    font-size: 1.1rem;
  }
}

/* Blog Layout with Sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.blog-main {
  min-width: 0;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.blog-sidebar-card {
  background: linear-gradient(
    145deg,
    rgba(26, 26, 26, 0.8),
    rgba(17, 17, 17, 0.9)
  );
  border: 1px solid rgba(232, 199, 106, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
}

.blog-sidebar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem 0;
}

.blog-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-sidebar-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.5rem 0;
  margin: 0;
}

.blog-sidebar-list li:last-child {
  border-bottom: none;
}

.blog-sidebar-list a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: block;
}

.blog-sidebar-list a:hover {
  color: var(--gold-primary);
}

@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-sidebar {
    position: static;
  }
}

/* Blog Single Page Styles */
.blog-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  color: var(--gray-mid);
}

.blog-breadcrumb a {
  color: var(--gray-mid);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-breadcrumb a:hover {
  color: var(--gold-primary);
}

.blog-breadcrumb .separator {
  color: var(--gold-primary);
  opacity: 0.5;
}

.blog-breadcrumb .current {
  color: var(--gold-primary);
  font-weight: 600;
}

.blog-hero {
  margin-bottom: 3rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.blog-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-hero:hover .blog-image {
  transform: scale(1.03);
}

@supports not (aspect-ratio: 1 / 1) {
  .blog-hero {
    position: relative;
    height: 0;
    padding-bottom: 100%;
  }
  .blog-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.blog-header {
  margin-bottom: 2.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-meta-date {
  color: var(--gray-mid);
  font-size: 0.9rem;
}

.blog-meta-views {
  color: var(--gray-mid);
  font-size: 0.9rem;
}

.blog-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--white);
}

.blog-excerpt {
  font-size: 1.15rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin: 0;
}

.blog-content {
  color: var(--gray-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {
  color: var(--white);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-content p {
  margin-bottom: 1.5rem;
}

.blog-content a {
  color: var(--gold-primary);
  text-decoration: underline;
}

.blog-content a:hover {
  color: var(--gold-bright);
}

/* Related Posts Section */
.related-posts {
  border-top: 1px solid rgba(232, 199, 106, 0.2);
  padding-top: 3rem;
  margin-top: 3rem;
}

.related-posts .section-title {
  margin-bottom: 2rem;
}

.related-posts .blog-grid {
  margin: 0;
}

/* Reusable Square Media Container */
.square-media {
  position: relative;
  width: 100%;
  /* Keep images comfortable for the eye: always a clean square */
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 24px; /* matches inline style used in /live */
}

/* Ensure nested images never break the square geometry */
.square-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Fallback for older browsers */
@supports not (aspect-ratio: 1 / 1) {
  .square-media {
    height: 0;
    padding-bottom: 100%;
  }
  .square-media img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

/* Badge positioning (cards over square media) */
.square-media .live-badge,
.square-media .featured-badge,
.square-media .blog-cat-badge {
  position: absolute;
  z-index: 20;
  overflow: hidden;
}

/* Live badge overlay on square images */
.live-badge--overlay {
  top: 1rem;
  inset-inline-start: 1rem;
  margin-bottom: 0;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(191, 0, 255, 0.45);
  backdrop-filter: blur(10px);
  color: var(--purple-neon);
  font-weight: 800;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 10px 35px rgba(191, 0, 255, 0.18);
}

.live-badge--overlay .live-dot {
  width: 10px;
  height: 10px;
}

.live-badge--overlay .live-dot {
  animation: livePulse 1.5s ease-in-out infinite;
}

.live-badge--small {
  transform: translateZ(0);
}

/* Size options */
.live-badge--small {
  padding: 0.45rem 0.75rem;
  font-size: 0.8rem;
}
.live-badge--medium {
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}
.live-badge--large {
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
}

/* Blog Hero Image Fix */
.blog-hero-image {
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 75px rgba(0, 0, 0, 0.6);
  border-radius: 24px;
  margin-bottom: 3rem;
}

.blog-hero-image img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.blog-hero-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .blog-hero-image {
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  }
}

/* ============================================================
   FAQ PAGE STYLES
   ============================================================ */

.faq-page {
  padding-top: 120px;
  padding-bottom: 100px;
  position: relative;
  min-height: 80vh;
}

/* Breadcrumb */
.faq-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  color: var(--gray-mid);
}

.faq-breadcrumb a {
  color: var(--gray-mid);
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-breadcrumb a:hover {
  color: var(--gold-primary);
}

.faq-breadcrumb .separator {
  color: var(--gold-primary);
  opacity: 0.5;
}

.faq-breadcrumb .current {
  color: var(--gold-primary);
  font-weight: 600;
}

/* FAQ Header */
.faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.faq-header .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  padding: 8px 20px;
  background: rgba(232, 199, 106, 0.1);
  border-radius: 30px;
  border: 1px solid rgba(232, 199, 106, 0.25);
}

.faq-header .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--gold-primary) 50%,
    var(--purple-neon) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-header .section-description {
  color: var(--gray-light);
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* FAQ Search */
.faq-search-container {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.faq-search-input {
  width: 100%;
  padding: 16px 55px 16px 20px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(232, 199, 106, 0.2);
  border-radius: 50px;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

[dir="ltr"] .faq-search-input {
  padding: 16px 20px 16px 55px;
}

.faq-search-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 30px rgba(232, 199, 106, 0.15);
  background: rgba(26, 26, 26, 0.95);
}

.faq-search-input::placeholder {
  color: var(--gray-mid);
}

.faq-search-icon {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 1.1rem;
  pointer-events: none;
  opacity: 0.7;
}

[dir="ltr"] .faq-search-icon {
  right: auto;
  left: 22px;
}

/* FAQ Categories */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-category-btn {
  padding: 10px 24px;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(232, 199, 106, 0.15);
  border-radius: 30px;
  color: var(--gray-light);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  backdrop-filter: blur(10px);
}

.faq-category-btn:hover {
  border-color: rgba(232, 199, 106, 0.4);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.faq-category-btn.active {
  background: linear-gradient(
    135deg,
    rgba(232, 199, 106, 0.2),
    rgba(191, 0, 255, 0.1)
  );
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(232, 199, 106, 0.15);
}

/* FAQ Container */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category-section {
  margin-bottom: 3rem;
}

.faq-category-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(232, 199, 106, 0.15);
}

.faq-category-title h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.faq-category-count {
  font-size: 0.8rem;
  color: var(--gray-mid);
  background: rgba(232, 199, 106, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(232, 199, 106, 0.2);
}

/* FAQ Items */
.faq-item {
  margin-bottom: 1rem;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(26, 26, 26, 0.8),
    rgba(17, 17, 17, 0.9)
  );
  border: 1px solid rgba(232, 199, 106, 0.12);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(232, 199, 106, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 199, 106, 0.08);
}

.faq-item.active {
  border-color: rgba(232, 199, 106, 0.35);
  box-shadow: 0 8px 32px rgba(232, 199, 106, 0.12);
}

.faq-item.hidden {
  display: none;
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.8rem;
  background: transparent;
  border: none;
  color: var(--white);
  text-align: right;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

[dir="ltr"] .faq-question {
  text-align: left;
}

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

.faq-item.active .faq-question {
  color: var(--gold-primary);
}

.faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(232, 199, 106, 0.1);
  border: 1px solid rgba(232, 199, 106, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gold-primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--gold-primary);
  color: var(--black-pure);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s ease;
}

.faq-answer-content {
  padding: 0 1.8rem 1.5rem 1.8rem;
  color: var(--gray-light);
  line-height: 1.85;
  font-size: 0.95rem;
}

.faq-answer-content p {
  margin: 0.7rem 0;
}

.faq-answer-content a {
  color: var(--gold-primary);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.faq-answer-content a:hover {
  color: var(--gold-bright);
}

.faq-answer-content ul,
.faq-answer-content ol {
  margin: 0.7rem 0;
  padding-right: 1.5rem;
}

[dir="ltr"] .faq-answer-content ul,
[dir="ltr"] .faq-answer-content ol {
  padding-right: 0;
  padding-left: 1.5rem;
}

.faq-answer-content li {
  margin: 0.3rem 0;
}

/* FAQ Empty State */
.faq-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.faq-empty-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    rgba(232, 199, 106, 0.1),
    rgba(191, 0, 255, 0.1)
  );
  border: 1px solid rgba(232, 199, 106, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.faq-empty-state h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.faq-empty-state p {
  color: var(--gray-mid);
  font-size: 1rem;
  line-height: 1.7;
}

/* FAQ No Results */
.faq-no-results {
  text-align: center;
  padding: 3rem 2rem;
}

.faq-no-results-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.faq-no-results h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.faq-no-results p {
  color: var(--gray-mid);
  font-size: 0.95rem;
}

/* FAQ Responsive */
@media (max-width: 768px) {
  .faq-page {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .faq-header {
    margin-bottom: 2rem;
  }

  .faq-categories {
    gap: 0.5rem;
  }

  .faq-category-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .faq-question {
    padding: 1.1rem 1.4rem;
    font-size: 0.95rem;
  }

  .faq-answer-content {
    padding: 0 1.4rem 1.2rem 1.4rem;
    font-size: 0.9rem;
  }

  .faq-search-input {
    padding: 14px 50px 14px 18px;
  }

  [dir="ltr"] .faq-search-input {
    padding: 14px 18px 14px 50px;
  }
}
