/* ===========================
   TICKET® — Professional Light Theme
   =========================== */

:root {
  --red: #c0392b;
  --red-dark: #96281b;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --light-gray: #f0f0f0;
  --border: #e5e5e5;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --transition: all 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "CAREEM";
  src:
    url("../fonts/CAREEM-REGULAR.DB5F2BCA26992ED25A89.otf") format("woff2"),
    url("../fonts/CAREEM-REGULAR.DB5F2BCA26992ED25A89.otf") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Cairo', sans-serif;
  background: var(--white);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
}

body.lang-en {
  direction: ltr;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--light-gray);
}
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}

/* ===== NAVBAR ===== */
#mainNav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  transition: var(--transition);
  z-index: 1000;
}

#mainNav.scrolled {
  box-shadow: var(--shadow-sm);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
}

.logo-text sup {
  color: var(--red);
  font-size: 0.55em;
}

.nav-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
}
.nav-dropdown-toggle .fa-chevron-down {
  transition: var(--transition);
  font-size: 0.7rem;
}
.nav-dropdown:hover .fa-chevron-down {
  transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 720px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
  z-index: 9999;
  overflow: hidden;
}

.nav-dropdown:hover .mega-menu {
  display: block;
}
/* controlled by JS */

.mega-menu-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 24px;
}

.mega-col {
  padding: 0 20px;
  border-right: 1px solid var(--border);
}

.mega-col:last-child {
  border-right: none;
}

.mega-col-title {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 8px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 2px;
}

.mega-item:hover {
  background: var(--off-white);
}

.mega-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.mega-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1px;
}

.mega-item p {
  font-size: 0.71rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.3;
}

.mega-footer {
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  background: var(--off-white);
}

.mega-footer-link {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.mega-footer-link:hover {
  gap: 12px;
}

#mainNav .navbar-collapse {
  flex-grow: 0 !important;
  flex-basis: auto !important;
}

/* Search Box */
.nav-search {
  flex: 1;
  max-width: 480px;
  margin: 0 24px;
}

.search-box {
  display: flex;
  align-items: center;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 6px 6px 16px;
  gap: 8px;
  transition: var(--transition);
}

.search-box:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-family: "Cairo", sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  flex: 1;
  min-width: 0;
}

.search-box input::placeholder {
  color: #aaa;
}

.search-icon,
.location-icon {
  color: #aaa;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.search-divider {
  width: 1px;
  height: 18px;
  background: var(--border);
  flex-shrink: 0;
}

.location-input {
  max-width: 100px;
}

/* Location Dropdown */
.nav-search {
  position: relative;
  min-width: 0;
}

.nav-search .search-box {
  width: 100%;
}

.search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 360px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 16px 0 8px;
}

.search-dropdown.open {
  display: block;
}

.search-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 0 16px 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 12px;
}

.search-cat {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
}

.search-cat i {
  color: var(--red);
  font-size: 0.8rem;
}
.search-cat:hover {
  background: #fef2f1;
  border-color: rgba(192, 57, 43, 0.3);
}

.search-popular-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.search-popular-item i {
  color: var(--red);
  font-size: 0.85rem;
}
.search-popular-item:hover {
  background: var(--off-white);
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.88rem;
  color: var(--text);
}

.search-result-item i {
  color: var(--text-muted);
}
.search-result-item:hover {
  background: var(--off-white);
}

.location-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 8px 0;
  min-width: 280px;
}

.location-dropdown.open {
  display: block;
}

.location-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.location-option:hover {
  background: var(--off-white);
}

.loc-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eef0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a5af0;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.loc-icon-wrap.loc-recent {
  background: var(--off-white);
  color: var(--text-muted);
}

.loc-divider {
  border-color: var(--border);
  margin: 4px 0;
}

.search-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.search-btn:hover {
  background: var(--red-dark);
}

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 10px !important;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text) !important;
  background: var(--light-gray);
}

.btn-lang {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-lang:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-red {
  background: var(--red);
  color: var(--white) !important;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 18px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.btn-red:hover {
  background: var(--red-dark);
}

.btn-outline-red {
  background: transparent;
  color: var(--text) !important;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-outline-red:hover {
  border-color: var(--red);
  color: var(--red) !important;
}

.navbar-toggler {
  border-color: var(--border);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a1a1a' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO SLIDER ===== */
.hero-section {
  position: relative;
  height: 540px;
  margin-top: 65px;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a0808;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.65) 60%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-content .badge-tag {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease 0.2s,
    transform 0.5s ease 0.2s;
}

.hero-content .hero-title {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease 0.4s,
    transform 0.5s ease 0.4s;
}

.hero-content .btn-hero {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease 0.6s,
    transform 0.5s ease 0.6s;
}

.hero-slide.active .hero-content .badge-tag,
.hero-slide.active .hero-content .hero-title,
.hero-slide.active .hero-content .btn-hero {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-size: clamp(3rem, 5.5vw, 2rem);
  font-weight: 200;
  line-height: 1.5;
  color: var(--white);
  margin:14px 0 24px;
  letter-spacing: 1px;
}

.hero-title-highlight {
  background: var(--red);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 6px;
  display: inline-block;
  align-self: flex-start;
  font-weight: 200;
  letter-spacing: 1px;
  margin-top: 10px;
}

.badge-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.btn-hero {
  background: var(--white);
  color: var(--text) !important;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 32px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-hero:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.slider-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

.slider-prev {
  right: 20px;
}
.slider-next {
  left: 20px;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}

/* Stats Bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  padding: 14px 0;
  z-index: 10;
}

.stat-item {
  text-align: center;
}
.stat-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
}
.stat-suffix {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.stat-item p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  align-self: stretch;
}

/* ===== SECTION HEADER ===== */
.section-tag {
  display: inline-block;
  background: #fef2f1;
  border: 1px solid rgba(192, 57, 43, 0.2);
  color: var(--red);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 900;
  color: var(--text);
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 6px;
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--off-white);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}

.service-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: #fef2f1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--red);
  margin-bottom: 16px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--red);
  color: var(--white);
}

.service-card h5 {
  font-weight: 700;
  font-size: 0.97rem;
  margin-bottom: 8px;
  color: var(--text);
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.75;
  margin: 0;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  background: var(--white);
}

.how-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  transition: var(--transition);
}

.how-card:hover,
.how-card.active {
  background: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.how-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 10px;
}

.how-card:hover .how-num,
.how-card.active .how-num {
  color: rgba(192, 57, 43, 0.2);
}

.how-icon {
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 14px;
}

.how-card h5 {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.how-card p {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.75;
  margin: 0;
}

/* ===== FEATURES ===== */
.features-section {
  background: var(--off-white);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: rgba(192, 57, 43, 0.25);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 42px;
  height: 42px;
  background: #fef2f1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--red);
  color: var(--white);
}

.feature-item h6 {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.93rem;
  color: var(--text);
}
.feature-item p {
  color: var(--text-muted);
  font-size: 0.81rem;
  line-height: 1.65;
  margin: 0;
}

/* Features Visual */
.features-visual {
  width: 300px;
  height: 300px;
  position: relative;
}

.fv-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  box-shadow: 0 0 0 12px rgba(192, 57, 43, 0.1);
}

.fv-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  animation: floatCard 3.5s ease-in-out infinite;
}

.fv-card i {
  color: var(--red);
  font-size: 1rem;
}

.fv-card-1 {
  top: 8%;
  left: -15%;
  animation-delay: 0s;
}
.fv-card-2 {
  top: 8%;
  right: -15%;
  animation-delay: 1s;
}
.fv-card-3 {
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 2s;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--white);
}

.cta-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 64px 40px;
}

.cta-box h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
}
.cta-box p {
  color: var(--text-muted);
  font-size: 0.97rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.footer-brand .logo-text {
  font-size: 1.6rem;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.75;
  margin-top: 10px;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.social-links a {
  width: 34px;
  height: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.footer h6 {
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 9px;
  color: var(--text-muted);
  font-size: 0.83rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--red);
}

.footer-hr {
  border-color: var(--border);
  margin-top: 32px;
}
.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== REVEAL ANIMATION ===== */
.service-card,
.how-card,
.feature-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.service-card.revealed,
.how-card.revealed,
.feature-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .hero-section {
    height: 75svh;
    margin-top: 60px;
  }

  .hero-content {
    padding: 0 20px;
    text-align: center;
  }

  .hero-title {
    font-size: 1.8rem;
    margin: 10px 0 16px;
  }

  .hero-title-highlight {
    font-size: 1.8rem;
    padding: 4px 12px;
    align-self: center;
  }

  .badge-tag {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .btn-hero {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .slider-prev { right: 10px; }
  .slider-next { left: 10px; }

  .slider-dots { bottom: 80px; }

  .hero-stats-bar { padding: 10px 0; }
  .hero-stats { gap: 12px; justify-content: center; }
  }
  .stat-item {
    min-width: 75px;
    padding: 12px 14px;
  }
  .stat-num {
    font-size: 1.4rem;
  }
  .cta-box {
    padding: 40px 20px;
  }
  .features-visual {
    display: none;
  }
}

/* ===== MOBILE SIDEBAR ===== */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1100;
}

.sidebar-overlay.open {
  display: block;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: var(--white);
  z-index: 1200;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-sidebar.open {
  right: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.sidebar-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: var(--transition);
}

.sidebar-close:hover {
  background: var(--light-gray);
  color: var(--text);
}

.sidebar-nav {
  list-style: none;
  padding: 12px 0;
  margin: 0;
  flex: 1;
  overflow-y: auto;
}

.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border-right: 3px solid transparent;
}

.sidebar-nav li a:hover {
  background: var(--off-white);
  border-right-color: var(--red);
  color: var(--red);
}

.sidebar-nav li a i {
  color: var(--red);
  width: 18px;
  text-align: center;
}

.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}

@media(min-width:1600px){
  .container{
    max-width: 1400px !important;
  }
}

.container { 
    max-width: 1200px ;
    margin: 0 auto;
}

/* ===== EVENTS SECTION ===== */
.events-section { background: var(--white); padding: 60px 0; }

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.btn-view-all {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-view-all:hover { gap: 10px; }

/* Filter */
.events-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 7px 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Cairo', sans-serif;
}

.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* Event Card */
.event-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 300px;
  cursor: pointer;
  transition: var(--transition);
}

.event-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.15); }

.event-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.event-card:hover .event-img { transform: scale(1.05); }

.event-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.event-cat-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
}

.event-save {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
  z-index: 2;
}

.event-save:hover, .event-save.saved { background: var(--red); border-color: var(--red); }

.event-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  z-index: 2;
}

.event-meta {
  display: flex;
  gap: 12px;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.event-meta i { margin-left: 3px; }

.event-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.event-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.btn-book {
  background: var(--white);
  color: var(--text) !important;
  padding: 6px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.btn-book:hover { background: var(--red); color: var(--white) !important; }

.event-card-wrap.hidden { display: none; }

/* ===== SERVICES SECTION ===== */
.services-section { background: var(--white); }

.srv-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: var(--transition);
}

.srv-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.15); }
.srv-card:hover .event-img { transform: scale(1.05); }

.srv-card-lg  { height: 420px; }
.srv-card-sm  { height: 200px; }
.srv-card-wide { height: 110px; }

.srv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  transition: var(--transition);
}

.srv-card-wide .srv-overlay {
  background: linear-gradient(to left, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.75) 100%);
}

.srv-card:hover .srv-overlay { background: linear-gradient(to top, rgba(192,57,43,0.75) 0%, rgba(0,0,0,0.3) 100%); }
.srv-card-wide:hover .srv-overlay { background: rgba(192,57,43,0.8); }

.srv-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
  color: var(--white);
}

.srv-card-wide .srv-body { top: 0; display: flex; align-items: center; }

.srv-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
  transition: var(--transition);
}

.srv-card:hover .srv-icon { background: var(--red); }

.srv-body h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.srv-body h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.srv-body p  { font-size: 0.82rem; color: rgba(255,255,255,0.8); margin-bottom: 12px; }

.srv-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: var(--transition);
}

.srv-btn:hover { color: var(--white); gap: 10px; }

.srv-btn-wide {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--text) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.srv-btn-wide:hover { background: var(--off-white); }

/* srv-card-wide fix */
.srv-card-wide { height: 250px !important; }
.srv-card-wide .srv-overlay { background: rgba(10,10,10,0.82) !important; }
.srv-card-wide .srv-body {
  top: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-direction: row !important;
  padding: 0 28px !important;
}
.srv-card-wide .srv-icon { margin-bottom: 0 !important; flex-shrink: 0; }
.srv-card-wide h4 { font-size: 1.05rem !important; margin-bottom: 4px !important; }
.srv-card-wide p  { font-size: 0.78rem !important; margin: 0 !important; }

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--off-white); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.how-step-icon {
  width: 72px; height: 72px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
  transition: var(--transition);
  margin-bottom: 20px;
}

.how-step-icon.active,
.how-step:hover .how-step-icon {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(192,57,43,0.35);
}

.how-step-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 22px; height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

.how-step-icon.active .how-step-num { background: var(--white); color: var(--red); }

.how-step-line {
  position: absolute;
  top: 36px;
  right: calc(50% + 36px);
  left: calc(-50% + 36px);
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.how-step:first-child .how-step-line { display: none; }
.how-step-line-last { display: none; }

.how-step-body h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.how-step-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .how-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .how-step-line { display: none; }
}

/* ===== HOW IT WORKS REDESIGN ===== */
.how-section { padding: 0; }

.how-bg {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a0505 50%, #0f0f0f 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.how-bg::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,57,43,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.section-tag-light {
  display: inline-block;
  background: rgba(192,57,43,0.2);
  border: 1px solid rgba(192,57,43,0.4);
  color: #e87c6e;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
}

.how-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}

.how-sub { color: rgba(255,255,255,0.5); font-size: 0.95rem; }

.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.how-step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 22px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.how-step-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.how-step-card:hover,
.how-step-card-active {
  background: rgba(192,57,43,0.1);
  border-color: rgba(192,57,43,0.3);
  transform: translateY(-4px);
}

.how-step-card:hover::before,
.how-step-card-active::before { transform: scaleX(1); }

.how-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.how-step-badge {
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}

.how-step-card-active .how-step-badge { color: var(--red); }

.how-step-ico {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.how-step-card:hover .how-step-ico,
.how-step-card-active .how-step-ico {
  background: var(--red);
  color: var(--white);
}

.how-step-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.how-step-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.how-arrow {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  transition: var(--transition);
}

.how-step-card:hover .how-arrow { background: var(--red); color: var(--white); }
.how-arrow-last { background: rgba(192,57,43,0.2); color: var(--red); }

@media (max-width: 768px) {
  .how-steps-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .how-bg { padding: 60px 0; }
}

/* connecting line between how steps */
.how-steps-grid::before { display: none; }

.how-step-card { z-index: 1; position: relative; }

.how-step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 52px;
  left: -11px;
  width: 22px;
  height: 2px;
  background: rgba(192,57,43,0.6);
  z-index: 3;
}

/* fix RTL order for how steps */
.how-steps-grid {
  direction: rtl;
  gap: 12px;
}

.how-step-card {
  direction: rtl;
}

.how-step-card:not(:last-child)::after {
  width: 13px;
  left: -13px;
}

/* ===== HOW IT WORKS - NEW DESIGN ===== */
.how-section { background: var(--white); }

.timeline-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.timeline-wrap::before {
  content: '';
  position: absolute;
  top: 27px;
  right: 56px;
  left: 56px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.tl-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  margin-bottom: 20px;
}

.tl-active .tl-icon {
  box-shadow: 0 0 0 6px rgba(192,57,43,0.12);
}

.timeline-item:hover .tl-icon {
  border-color: var(--red);
  color: var(--red);
}

.tl-content {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  width: 100%;
  transition: var(--transition);
}

.tl-active .tl-content {
  background: #fff5f4;
  border-color: rgba(192,57,43,0.25);
}

.timeline-item:hover .tl-content {
  border-color: rgba(192,57,43,0.2);
  box-shadow: var(--shadow-sm);
}

.tl-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.tl-active .tl-num { color: var(--red); }

.tl-content h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.tl-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .timeline-wrap { grid-template-columns: 1fr 1fr; }
  .timeline-wrap::before { display: none; }
}

/* services layout fix */
.srv-card-sm { height: 100% !important; min-height: 250px; }
.col-lg-6 .row.h-100 > [class*="col"] { display: flex; }
.col-lg-6 .row.h-100 > [class*="col"] .srv-card { width: 100%; }
.srv-card-lg { height: 100% !important; min-height: 250px; }

.filter-btn i { margin-left: 5px; font-size: 0.85rem; }

/* ===== FEATURES REDESIGN ===== */
.features-section { background: var(--off-white); }

.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: var(--transition);
}

.feat-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.feat-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

.feat-line {
  position: absolute;
  bottom: 0; right: 0;
  width: 100%; height: 3px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  border-radius: 0 0 16px 16px;
}

.feat-card:hover .feat-line { transform: scaleX(1); }

/* ===== FEATURES NEW ===== */
.features-section { padding: 0; }

.features-bg {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a0505 50%, #0f0f0f 100%);
  padding: 80px 0;
}

.feat-intro {
  padding: 0 40px 0 0;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.feat-main-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 16px;
}

.feat-main-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 32px;
}

.feat-stats {
  display: flex;
  gap: 24px;
}

.feat-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feat-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
}

.feat-stat span:last-child {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding-right: 32px;
}

.feat-card-new {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  cursor: default;
}

.feat-card-new:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.feat-icon-new {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.feat-card-new h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.feat-card-new p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .feat-intro { border-left: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0 0 32px 0; margin-bottom: 32px; }
  .feat-grid { padding-right: 0; }
}

@media (max-width: 576px) {
  .feat-grid { grid-template-columns: 1fr; }
}

/* ===== CTA NEW ===== */
.cta-section { padding: 0; }

.cta-bg {
  background-size: cover;
  background-position: center;
  padding: 30px 0;
  position: relative;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
}

.cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 500px;
}

.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.cta-btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.cta-stats-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 220px;
}

.cta-stat { text-align: center; }

.cta-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.cta-stat span:last-child {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.cta-stat-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
}

/* CTA stats row */
.cta-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.cta-stat-item { text-align: center; }

.cta-stat-item .cta-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.cta-stat-item span:last-child {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.cta-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.cta-sub { max-width: 520px; }

/* ===== FOOTER NEW ===== */
.footer { background: #0f0f0f; }

.footer-top { padding: 60px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }

.footer-logo { height: 40px; width: auto; object-fit: contain; }

.footer-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer-list { list-style: none; padding: 0; margin: 0; }

.footer-list li { margin-bottom: 10px; }

.footer-list a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: var(--transition);
}

.footer-list a:hover { color: var(--white); padding-right: 4px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}

.footer-contact i { color: var(--red); font-size: 0.85rem; flex-shrink: 0; }

.footer-bottom {
  padding: 18px 0;
  background: rgba(0,0,0,0.3);
}

.footer-bottom small { color: rgba(255,255,255,0.3); font-size: 0.78rem; }

.footer-bottom-links { display: flex; gap: 20px; }

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--white); }

/* footer fixes */
.footer-logo { height: 55px !important; filter: brightness(0) invert(1); }
.footer-top { padding: 70px 0 50px !important; }
.footer-heading { color: rgba(255,255,255,0.9) !important; text-transform: uppercase; font-size: 0.75rem !important; letter-spacing: 1.5px !important; margin-bottom: 20px !important; }
.footer-list a { color: rgba(255,255,255,0.5) !important; }
.footer-list a:hover { color: var(--red) !important; padding-right: 6px; }
.footer-contact li { color: rgba(255,255,255,0.5) !important; }
.footer-desc { color: rgba(255,255,255,0.4) !important; max-width: 280px; }
