/* =====================================================
   TOP BAR
===================================================== */

#topbar {
  position: relative;
  z-index: 999;

  padding: 10px 0;

  color: #fff;

  background: linear-gradient(135deg, #111827 0%, #1e293b 45%, #312e81 100%);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Background Glow */

#topbar::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(59, 130, 246, 0.15),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 50%,
      rgba(139, 92, 246, 0.15),
      transparent 30%
    );

  pointer-events: none;
}

/* Container */

#topbar .container {
  position: relative;
  z-index: 2;
}

/* =====================================================
   TOPBAR INNER
===================================================== */

.topbar-inner {
  min-height: 45px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

/* =====================================================
   CONTACT
===================================================== */

.top-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 8px 28px;
}

.top-item {
  display: flex;
  align-items: center;

  gap: 10px;

  color: rgba(255, 255, 255, 0.9);

  text-decoration: none;

  font-size: 13px;

  line-height: 1.3;

  transition: all 0.3s ease;
}

.top-item:hover {
  color: #fff;

  transform: translateY(-2px);
}

/* =====================================================
   CONTACT ICON
===================================================== */

.top-icon {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.1);

  color: #60a5fa;

  transition: all 0.3s ease;
}

.top-item:hover .top-icon {
  background: rgba(96, 165, 250, 0.15);

  color: #93c5fd;

  box-shadow: 0 0 15px rgba(96, 165, 250, 0.2);
}

/* =====================================================
   CONTACT LABEL
===================================================== */

.top-item small {
  display: block;

  margin-bottom: 2px;

  color: rgba(255, 255, 255, 0.5);

  font-size: 10px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.6px;
}

/* =====================================================
   SOCIAL AREA
===================================================== */

.top-social {
  display: flex;
  align-items: center;

  gap: 12px;
}

.social-title {
  color: rgba(255, 255, 255, 0.55);

  font-size: 11px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1px;
}

/* =====================================================
   SOCIAL LINKS
===================================================== */

.social-links {
  display: flex;
  align-items: center;

  gap: 7px;
}

.social-links a {
  width: 31px;
  height: 31px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.75);

  background: rgba(255, 255, 255, 0.07);

  border: 1px solid rgba(255, 255, 255, 0.09);

  border-radius: 50%;

  text-decoration: none;

  font-size: 12px;

  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.social-links a:hover {
  color: #fff;

  background: rgba(255, 255, 255, 0.15);

  transform: translateY(-3px) scale(1.08);

  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 992px) {
  #topbar {
    padding: 9px 0;
  }

  .topbar-inner {
    justify-content: center;

    flex-direction: column;

    gap: 10px;
  }

  .top-contact {
    justify-content: center;
  }

  .top-social {
    justify-content: center;

  }
}

@media (max-width: 1406px) {
    .top-social {
        display: none !important; 
    }
}

@media (max-width: 1003px) {
    .emaildata {
        display: none !important; 
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {
  #topbar {
    display: none;
  }
}

/* =========================================================
   NAVBAR
========================================================= */

#nav {
  position: sticky;
  top: 0;
  z-index: 1000;

  min-height: 78px;

  background: rgba(255, 255, 255, 0.88);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* =========================================================
   CONTAINER
========================================================= */

#nav .container {
  min-height: 78px;

  display: flex;
  align-items: center;
}

/* =========================================================
   BRAND
========================================================= */

#nav .navbar-brand {
  padding: 0;
  margin-right: 30px;

  text-decoration: none;
}

.blogo {
  display: flex;
  align-items: center;

  gap: 12px;
}

/* Logo Icon */

.bico {
  width: 48px;
  height: 48px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  font-size: 21px;

  border-radius: 14px;

  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary, #8b5cf6)
  );

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.navbar-brand:hover .bico {
  transform: rotate(-5deg) translateY(-2px);

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* Brand Content */

.brand-content {
  min-width: 0;
}

.bname {
  color: var(--text, #1f2937);

  font-size: 15px;

  font-weight: 800;

  line-height: 1.3;

  white-space: nowrap;
}

.bsub {
  margin-top: 3px;

  color: var(--muted, #6b7280);

  font-size: 10px;

  font-weight: 500;

  line-height: 1.2;

  white-space: nowrap;
}

.pashto-font {
  font-family: bahij, sans-serif;
}

/* =========================================================
   NAVIGATION
========================================================= */

#navmenu {
  align-items: center;
}

#nav .navbar-nav {
  align-items: center;

  gap: 4px;
}

#nav .nav-item {
  position: relative;
}

#nav .nav-link {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  padding: 10px 13px;

  color: var(--text, #374151);

  font-size: 14px;

  font-weight: 600;

  text-decoration: none;

  border-radius: 10px;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

/* Icons */

#nav .nav-link i {
  color: var(--primary);

  font-size: 12px;

  opacity: 0;

  transform: translateX(-5px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* Hover */

#nav .nav-link:hover {
  color: var(--primary);

  background: rgba(0, 0, 0, 0.035);

  transform: translateY(-1px);
}

#nav .nav-link:hover i {
  opacity: 1;

  transform: translateX(0);
}

/* Active */

#nav .nav-link.active {
  color: var(--primary);

  background: rgba(0, 0, 0, 0.04);
}

#nav .nav-link.active::after {
  content: "";

  position: absolute;

  left: 14px;
  right: 14px;
  bottom: 3px;

  height: 2px;

  border-radius: 20px;

  background: var(--primary);

  box-shadow: 0 0 10px var(--primary);
}

/* =========================================================
   LANGUAGE BUTTON
========================================================= */

.nav-actions {
  display: flex;
  align-items: center;

  margin-left: 15px;
}

.language-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  min-width: 95px;

  padding: 9px 17px;

  color: #fff;

  border: 0;

  border-radius: 50px;

  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary, #8b5cf6)
  );

  font-size: 14px;

  font-weight: 600;

  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.language-btn:hover,
.language-btn:focus {
  color: #fff;

  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.language-btn::after {
  margin-left: 2px;
}

/* =========================================================
   LANGUAGE DROPDOWN
========================================================= */

.language-dropdown .dropdown-menu {
  min-width: 170px;

  margin-top: 12px;

  padding: 7px;

  border: 1px solid rgba(0, 0, 0, 0.06);

  border-radius: 14px;

  background: var(--card, #fff);

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);

  animation: dropdownShow 0.25s ease;
}

@keyframes dropdownShow {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.language-dropdown .dropdown-item {
  display: flex;
  align-items: center;

  gap: 10px;

  padding: 10px 12px;

  color: var(--text, #374151);

  border-radius: 9px;

  font-size: 14px;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.language-dropdown .dropdown-item:hover {
  color: var(--primary);

  background: rgba(0, 0, 0, 0.04);

  transform: translateX(3px);
}

.language-flag {
  width: 24px;

  text-align: center;

  font-size: 16px;
}

/* =========================================================
   MOBILE TOGGLE
========================================================= */

#nav .navbar-toggler {
  width: 44px;
  height: 44px;

  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(0, 0, 0, 0.08);

  border-radius: 12px;

  background: rgba(0, 0, 0, 0.03);

  box-shadow: none;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

#nav .navbar-toggler:hover {
  background: rgba(0, 0, 0, 0.07);

  transform: scale(1.04);
}

#nav .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.toggle-icon {
  color: var(--primary);

  font-size: 18px;

  transition: transform 0.3s ease;
}

#nav .navbar-toggler[aria-expanded="true"] .toggle-icon {
  transform: rotate(90deg);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {
  #nav .navbar-brand {
    margin-right: 15px;
  }

  #nav .nav-link {
    padding: 9px 9px;

    font-size: 13px;
  }

  #nav .nav-link i {
    display: none;
  }

  .language-btn {
    min-width: 85px;

    padding: 8px 13px;
  }
}

/* =========================================================
   MOBILE / TABLET MENU
========================================================= */

@media (max-width: 991px) {
  #nav {
    min-height: 70px;
  }

  #nav .container {
    min-height: 70px;

    flex-wrap: wrap;
  }

  #nav .navbar-brand {
    margin-right: 0;
  }

  .bico {
    width: 43px;
    height: 43px;

    font-size: 18px;

    border-radius: 12px;
  }

  .bname {
    font-size: 13px;
  }

  .bsub {
    font-size: 9px;
  }

  /* Mobile Menu */

  #navmenu {
    width: 100%;

    margin-top: 12px;

    padding: 12px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(0, 0, 0, 0.06);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  }

  #nav .navbar-nav {
    width: 100%;

    align-items: stretch;

    gap: 4px;
  }

  #nav .nav-item {
    width: 100%;
  }

  #nav .nav-link {
    width: 100%;

    justify-content: flex-start;

    padding: 12px 15px;

    border-radius: 10px;

    font-size: 15px;
  }

  #nav .nav-link i {
    display: inline-block;

    width: 22px;

    opacity: 1;

    transform: none;

    text-align: center;
  }

  #nav .nav-link.active::after {
    display: none;
  }

  #nav .nav-link.active {
    background: rgba(0, 0, 0, 0.05);
  }

  /* Language */

  .nav-actions {
    width: 100%;

    margin: 10px 0 0;

    padding-top: 10px;

    border-top: 1px solid rgba(0, 0, 0, 0.07);
  }

  .language-dropdown {
    width: 100%;
  }

  .language-btn {
    width: 100%;

    justify-content: center;
  }

  .language-dropdown .dropdown-menu {
    width: 100%;

    position: static !important;

    transform: none !important;

    margin-top: 8px;

    box-shadow: none;

    border: 1px solid rgba(0, 0, 0, 0.06);
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {
  #nav .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-content {
    max-width: 220px;
  }

  .bname {
    overflow: hidden;

    text-overflow: ellipsis;
  }

  .bsub {
    overflow: hidden;

    text-overflow: ellipsis;
  }

  .bico {
    width: 40px;
    height: 40px;
  }

  #nav .navbar-toggler {
    width: 40px;
    height: 40px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
  .brand-content {
    max-width: 175px;
  }

  .bname {
    font-size: 12px;
  }

  .bsub {
    font-size: 8px;
  }
}

/* Hide hamburger on desktop */
@media (min-width: 992px) {
  #nav .navbar-toggler {
    display: none !important;
  }
}

/* Show hamburger on mobile/tablet */
@media (max-width: 991.98px) {
  #nav .navbar-toggler {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
}

/* Hero Section =====================================================================================================================
 */

/* =========================================================
   HERO
========================================================= */

#hero {
  position: relative;

  width: 100%;
  min-height: calc(100vh - 120px);

  display: flex;
  align-items: center;

  padding: 70px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(220, 38, 38, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(124, 58, 237, 0.08),
      transparent 30%
    ),
    var(--hero-bg, #fff);
}

/* =========================================================
   BACKGROUND CIRCLES
========================================================= */

.hero-bg-circle {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(2px);
}

.hero-bg-circle-1 {
  width: 320px;
  height: 320px;

  top: -180px;
  left: -150px;

  background: rgba(220, 38, 38, 0.08);
}

.hero-bg-circle-2 {
  width: 420px;
  height: 420px;

  right: -220px;
  bottom: -230px;

  background: rgba(124, 58, 237, 0.08);
}

/* =========================================================
   HERO ROW
========================================================= */

.hero-row {
  min-height: 75vh;
}

/* =========================================================
   CONTENT
========================================================= */

.hero-content {
  position: relative;

  z-index: 5;

  max-width: 650px;
}

/* =========================================================
   BADGE
========================================================= */

.hero-badge {
  width: fit-content;

  display: flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 22px;

  padding: 6px 15px 6px 6px;

  color: var(--primary, #dc2626);

  background: rgba(220, 38, 38, 0.07);

  border: 1px solid rgba(220, 38, 38, 0.12);

  border-radius: 50px;

  font-size: 14px;

  animation: heroUp 0.7s ease both;
}

.hero-badge-icon {
  width: 31px;
  height: 31px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  border-radius: 50%;

  background: linear-gradient(135deg, var(--primary, #dc2626), #f97316);

  font-size: 11px;
}

/* =========================================================
   TITLE
========================================================= */

.hero-title {
  margin: 0;

  color: var(--text, #111827);

  font-size: clamp(2.5rem, 5vw, 4.8rem);

  font-weight: 900;

  line-height: 1.2;

  letter-spacing: -1px;

  animation: heroUp 0.7s 0.1s ease both;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.hero-description {
  max-width: 590px;

  margin: 22px 0 30px;

  color: var(--muted, #6b7280);

  font-size: 17px;

  line-height: 1.9;

  animation: heroUp 0.7s 0.2s ease both;
}

/* =========================================================
   ACTIONS
========================================================= */

.hero-actions {
  display: flex;
  align-items: center;

  flex-wrap: wrap;

  gap: 14px;

  animation: heroUp 0.7s 0.3s ease both;
}

/* Primary */

.hero-primary-btn {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  padding: 0 21px;

  color: #fff !important;

  text-decoration: none;

  border-radius: 13px;

  background: linear-gradient(135deg, var(--primary, #dc2626), #ef4444);

  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.22);

  transition: all 0.3s ease;
}

.hero-primary-btn:hover {
  color: #fff;

  transform: translateY(-3px);

  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.3);
}

.hero-btn-arrow {
  margin-right: 3px;

  font-size: 11px;

  transition: transform 0.3s ease;
}

.hero-primary-btn:hover .hero-btn-arrow {
  transform: translateX(-4px);
}

/* Video */

.hero-video-btn {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  color: var(--text, #333);

  text-decoration: none;

  font-size: 14px;

  font-weight: 600;

  transition: all 0.3s ease;
}

.hero-video-btn:hover {
  color: var(--primary, #dc2626);

  transform: translateY(-2px);
}

.video-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary, #dc2626);

  border: 1px solid rgba(220, 38, 38, 0.2);

  border-radius: 50%;

  background: rgba(220, 38, 38, 0.06);

  transition: all 0.3s ease;
}

.hero-video-btn:hover .video-icon {
  color: #fff;

  background: var(--primary, #dc2626);

  transform: scale(1.08);
}

/* =========================================================
   STATS
========================================================= */

.hero-stats {
  display: flex;
  align-items: center;

  flex-wrap: wrap;

  gap: 18px;

  margin-top: 42px;

  animation: heroUp 0.7s 0.4s ease both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat strong {
  color: var(--text, #111827);

  font-size: 22px;

  font-weight: 900;

  line-height: 1.2;
}

.hero-stat span {
  margin-top: 4px;

  color: var(--muted, #6b7280);

  font-size: 11px;
}

.hero-stat-line {
  width: 1px;
  height: 38px;

  background: rgba(0, 0, 0, 0.12);
}

/* =========================================================
   IMAGE AREA
========================================================= */

.hero-image-area {
  position: relative;

  width: 100%;
  min-height: 570px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   BACK CIRCLE
========================================================= */

.hero-circle-back {
  position: absolute;

  width: min(480px, 80%);

  aspect-ratio: 1 / 1;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.09),
    rgba(124, 58, 237, 0.1)
  );

  border: 1px solid rgba(220, 38, 38, 0.12);

  animation: heroFloat 6s ease-in-out infinite;
}

/* =========================================================
   IMAGE
========================================================= */

.hero-image {
  position: relative;

  width: min(430px, 70%);

  aspect-ratio: 1 / 1;

  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-border {
  position: absolute;

  inset: -15px;

  border-radius: 50%;

  border: 1px dashed rgba(220, 38, 38, 0.3);

  animation: rotateCircle 18s linear infinite;
}

.hero-image img {
  position: relative;

  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 50%;

  border: 9px solid rgba(255, 255, 255, 0.95);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.16);
}

/* =========================================================
   INFO CARDS
========================================================= */

.hero-info-card {
  position: absolute;

  z-index: 10;

  min-width: 185px;

  display: flex;
  align-items: center;

  gap: 10px;

  padding: 11px 14px;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.92);

  border: 1px solid rgba(255, 255, 255, 0.9);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  animation: cardFloat 5s ease-in-out infinite;
}

.hero-card-1 {
  top: 17%;
  left: 0;
}

.hero-card-2 {
  top: 37%;
  right: 0;

  animation-delay: 1s;
}

.hero-card-3 {
  bottom: 12%;
  left: 7%;

  animation-delay: 2s;
}

/* Card Icon */

.hero-info-icon {
  width: 40px;
  height: 40px;

  flex: 0 0 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 11px;
}

.hero-info-icon.red {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
}

.hero-info-icon.yellow {
  color: #d97706;
  background: rgba(217, 119, 6, 0.1);
}

.hero-info-icon.green {
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
}

.hero-info-card > div:last-child {
  min-width: 0;

  display: flex;
  flex-direction: column;
}

.hero-info-card strong {
  color: var(--text, #111827);

  font-size: 14px;

  white-space: nowrap;
}

.hero-info-card span {
  margin-top: 2px;

  color: var(--muted, #6b7280);

  font-size: 9px;

  white-space: nowrap;
}

/* =========================================================
   DOTS
========================================================= */

.hero-dots {
  position: absolute;

  width: 70px;
  height: 70px;

  opacity: 0.35;

  background-image: radial-gradient(
    var(--primary, #dc2626) 1.5px,
    transparent 1.5px
  );

  background-size: 10px 10px;
}

.hero-dots-1 {
  top: 7%;
  right: 5%;
}

.hero-dots-2 {
  bottom: 8%;
  right: 20%;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  #hero {
    min-height: auto;

    padding: 70px 0;
  }

  .hero-row {
    min-height: auto;

    row-gap: 70px;
  }

  .hero-content {
    max-width: 750px;

    margin: auto;

    text-align: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-area {
    min-height: 500px;

    max-width: 620px;

    margin: auto;
  }

  .hero-circle-back {
    width: min(430px, 70%);
  }

  .hero-image {
    width: min(390px, 60%);
  }

  .hero-card-1 {
    left: 5%;
  }

  .hero-card-2 {
    right: 5%;
  }

  .hero-card-3 {
    left: 12%;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  #hero {
    padding: 55px 0 65px;
  }

  .hero-row {
    row-gap: 55px;
  }

  .hero-badge {
    margin-bottom: 17px;

    font-size: 12px;
  }

  .hero-badge-icon {
    width: 28px;
    height: 28px;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);

    line-height: 1.3;

    letter-spacing: 0;
  }

  .hero-description {
    margin-top: 17px;
    margin-bottom: 25px;

    font-size: 14px;

    line-height: 1.9;
  }

  .hero-actions {
    width: 100%;

    flex-direction: column;

    align-items: stretch;
  }

  .hero-primary-btn,
  .hero-video-btn {
    width: 100%;

    justify-content: center;
  }

  .hero-primary-btn {
    min-height: 50px;
  }

  /* Statistics */

  .hero-stats {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 0;

    margin-top: 32px;
  }

  .hero-stat {
    min-height: 70px;

    align-items: center;

    justify-content: center;

    text-align: center;
  }

  .hero-stat strong {
    font-size: 19px;
  }

  .hero-stat span {
    font-size: 10px;
  }

  .hero-stat-line {
    display: none;
  }

  /* Image */

  .hero-image-area {
    min-height: 400px;
  }

  .hero-circle-back {
    width: 285px;
  }

  .hero-image {
    width: 245px;
  }

  .hero-image-border {
    inset: -10px;
  }

  .hero-image img {
    border-width: 6px;
  }

  /* Cards */

  .hero-info-card {
    min-width: 130px;

    max-width: 140px;

    padding: 8px;

    gap: 7px;

    border-radius: 11px;
  }

  .hero-info-icon {
    width: 31px;
    height: 31px;

    flex-basis: 31px;

    font-size: 11px;
  }

  .hero-info-card strong {
    font-size: 10px;
  }

  .hero-info-card span {
    font-size: 7px;
  }

  .hero-card-1 {
    left: 0;
    top: 13%;
  }

  .hero-card-2 {
    right: 0;
    top: 32%;
  }

  .hero-card-3 {
    left: 3%;
    bottom: 9%;
  }

  .hero-dots {
    display: none;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  #hero {
    padding-top: 45px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 13px;
  }

  .hero-image-area {
    min-height: 350px;
  }

  .hero-circle-back {
    width: 245px;
  }

  .hero-image {
    width: 210px;
  }

  .hero-info-card {
    min-width: 110px;
    max-width: 120px;

    padding: 6px;
  }

  .hero-info-icon {
    display: none;
  }

  .hero-info-card strong {
    font-size: 9px;
  }

  .hero-info-card span {
    font-size: 6px;
  }

  .hero-card-1 {
    left: 0;
  }

  .hero-card-2 {
    right: 0;
  }

  .hero-card-3 {
    left: 2%;
    bottom: 4%;
  }
}

/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 399.98px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image-area {
    min-height: 315px;
  }

  .hero-circle-back {
    width: 215px;
  }

  .hero-image {
    width: 185px;
  }

  .hero-info-card {
    min-width: 92px;
    max-width: 100px;
  }

  .hero-info-card strong {
    font-size: 8px;
  }

  .hero-info-card span {
    font-size: 5px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .hero-bg-circle,
  .hero-circle-back,
  .hero-image-border,
  .hero-info-card,
  .hero-content > * {
    animation: none !important;
  }
}

/* =========================================================
   MARQUEE SECTION
========================================================= */

.mqsec {
  position: relative;

  width: 100%;

  overflow: hidden;

  background: linear-gradient(135deg, var(--primary, #dc2626), #b91c1c);

  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   INNER WRAPPER
========================================================= */

.mq-wrapper {
  position: relative;

  width: 100%;

  display: flex;
  align-items: center;

  overflow: hidden;
}

/* =========================================================
   MARQUEE VIEWPORT
========================================================= */

.mq-overflow {
  width: 100%;

  overflow: hidden;
}

/* =========================================================
   MARQUEE TRACK
========================================================= */

.mqtrack {
  width: max-content;

  display: flex;
  align-items: center;

  padding: 14px 0;

  animation: marqueeMove 5s linear infinite;

  will-change: transform;
}

/* =========================================================
   MARQUEE ITEM
========================================================= */

.mqitem {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  margin-right: 45px;

  color: #fff;

  font-size: 15px;

  font-weight: 600;

  white-space: nowrap;

  user-select: none;
}

/* =========================================================
   MAIN ICON
========================================================= */

.mq-icon {
  width: 15px;
  height: 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 15px;

  color: var(--primary, #dc2626);

  background: #fff;

  border-radius: 50%;

  font-size: 11px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* =========================================================
   TEXT
========================================================= */

.mq-text {
  display: inline-block;

  line-height: 1.5;
}

/* =========================================================
   DOT
========================================================= */

.mq-dot {
  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.65);

  font-size: 6px;
}

/* =========================================================
   EDGE FADE
========================================================= */

.mq-fade {
  position: absolute;

  top: 0;
  bottom: 0;

  z-index: 5;

  width: 100px;

  pointer-events: none;
}

.mq-fade-left {
  left: 0;

  background: linear-gradient(to right, var(--primary, #dc2626), transparent);
}

.mq-fade-right {
  right: 0;

  background: linear-gradient(to left, var(--primary, #dc2626), transparent);
}

/* =========================================================
   ANIMATION
========================================================= */

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
   HOVER PAUSE
========================================================= */

.mqsec:hover .mqtrack {
  animation-play-state: paused;
}

/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (max-width: 991.98px) {
  .mqtrack {
    padding: 12px 0;

    animation-duration: 27s;
  }

  .mqitem {
    gap: 10px;

    margin-right: 38px;

    font-size: 14px;
  }

  .mq-icon {
    width: 29px;
    height: 29px;

    flex-basis: 29px;

    font-size: 10px;
  }

  .mq-fade {
    width: 70px;
  }
}

/* =========================================================
   MOBILE
   576px - 767px
========================================================= */

@media (max-width: 767.98px) {
  .mqtrack {
    padding: 11px 0;

    animation-duration: 23s;
  }

  .mqitem {
    gap: 8px;

    margin-right: 30px;

    font-size: 13px;
  }

  .mq-icon {
    width: 27px;
    height: 27px;

    flex-basis: 27px;

    font-size: 9px;
  }

  .mq-dot {
    font-size: 5px;
  }

  .mq-fade {
    width: 55px;
  }
}

/* =========================================================
   SMALL MOBILE
   400px - 575px
========================================================= */

@media (max-width: 575.98px) {
  .mqtrack {
    padding: 10px 0;

    animation-duration: 20s;
  }

  .mqitem {
    gap: 7px;

    margin-right: 25px;

    font-size: 12px;
  }

  .mq-icon {
    width: 25px;
    height: 25px;

    flex-basis: 25px;

    font-size: 8px;
  }

  .mq-fade {
    width: 45px;
  }
}

/* =========================================================
   EXTRA SMALL MOBILE
   399px AND BELOW
========================================================= */

@media (max-width: 399.98px) {
  .mqtrack {
    padding: 9px 0;

    animation-duration: 18s;
  }

  .mqitem {
    gap: 6px;

    margin-right: 20px;

    font-size: 11px;
  }

  .mq-icon {
    width: 23px;
    height: 23px;

    flex-basis: 23px;

    font-size: 7px;
  }

  .mq-dot {
    font-size: 4px;
  }

  .mq-fade {
    width: 35px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .mqtrack {
    animation: none;
  }
}

/* =========================================================
   CATEGORY SECTION
========================================================= */

#category {
  position: relative;

  width: 100%;

  padding: 100px 0;

  overflow: hidden;

  background: linear-gradient(
    180deg,
    var(--section-bg, #ffffff),
    rgba(248, 250, 252, 0.7)
  );
}

/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.category-bg {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(2px);
}

.category-bg-1 {
  width: 300px;
  height: 300px;

  top: -150px;
  left: -150px;

  background: rgba(220, 38, 38, 0.06);
}

.category-bg-2 {
  width: 350px;
  height: 350px;

  right: -180px;
  bottom: -180px;

  background: rgba(124, 58, 237, 0.05);
}

/* =========================================================
   SECTION HEADING
========================================================= */

.category-heading {
  position: relative;

  z-index: 2;

  margin-bottom: 50px;
}

.section-label {
  display: inline-flex;
  align-items: center;

  padding: 7px 15px;

  color: var(--primary, #dc2626);

  background: rgba(220, 38, 38, 0.07);

  border: 1px solid rgba(220, 38, 38, 0.12);

  border-radius: 50px;

  font-size: 13px;

  font-weight: 600;
}

/* =========================================================
   TITLE
========================================================= */

.section-title {
  margin: 15px 0 12px;

  color: var(--text, #111827);

  font-size: clamp(2rem, 4vw, 3.2rem);

  font-weight: 900;

  line-height: 1.3;
}

.section-title span {
  color: var(--primary, #dc2626);
}

/* =========================================================
   LINE
========================================================= */

.section-line {
  position: relative;

  width: 65px;
  height: 4px;

  margin: 0 auto 14px;

  border-radius: 10px;

  background: linear-gradient(90deg, var(--primary, #dc2626), #f97316);
}

.section-line::before,
.section-line::after {
  content: "";

  position: absolute;

  top: 50%;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--primary, #dc2626);

  transform: translateY(-50%);
}

.section-line::before {
  left: -11px;
}

.section-line::after {
  right: -11px;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.section-description {
  max-width: 500px;

  margin: 0 auto;

  color: var(--muted, #6b7280);

  font-size: 14px;

  line-height: 1.9;
}

/* =========================================================
   CATEGORY GRID
========================================================= */

.category-row {
  position: relative;

  z-index: 2;

  row-gap: 24px;
}

.category-column {
  display: flex;
}

/* =========================================================
   CATEGORY CARD
========================================================= */

.category-card {
  position: relative;

  width: 100%;

  padding: 10px;

  cursor: pointer;

  text-align: center;

  background: rgba(255, 255, 255, 0.8);

  border: 1px solid rgba(0, 0, 0, 0.06);

  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.category-card:hover {
  transform: translateY(-8px);

  border-color: rgba(220, 38, 38, 0.2);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   CATEGORY IMAGE
========================================================= */

.category-image {
  position: relative;

  width: 100%;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  border-radius: 15px;

  background: #f3f4f6;
}

.category-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.08);
}

/* =========================================================
   IMAGE OVERLAY
========================================================= */

.category-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.45));

  opacity: 0;

  transition: opacity 0.35s ease;
}

.category-card:hover .category-overlay {
  opacity: 1;
}

/* =========================================================
   ARROW
========================================================= */

.category-arrow {
  position: absolute;

  left: 10px;
  bottom: 10px;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary, #dc2626);

  background: #fff;

  border-radius: 50%;

  opacity: 0;

  transform: translateY(10px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.category-card:hover .category-arrow {
  opacity: 1;

  transform: translateY(0);
}

/* =========================================================
   CATEGORY NAME
========================================================= */

.category-name {
  min-height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px 5px 5px;

  color: var(--text, #111827);

  font-size: 14px;

  font-weight: 700;

  line-height: 1.5;

  transition: color 0.3s ease;
}

.category-card:hover .category-name {
  color: var(--primary, #dc2626);
}

/* =========================================================
   EMPTY STATE
========================================================= */

.category-empty {
  padding: 50px 20px;

  color: var(--muted, #6b7280);

  background: rgba(255, 255, 255, 0.7);

  border: 1px dashed rgba(0, 0, 0, 0.12);

  border-radius: 20px;
}

.empty-icon {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 15px;

  color: var(--primary, #dc2626);

  background: rgba(220, 38, 38, 0.08);

  border-radius: 50%;

  font-size: 22px;
}

.category-empty h5 {
  margin: 0;

  font-size: 16px;
}

/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {
  #category {
    padding: 110px 0;
  }

  .category-row {
    row-gap: 28px;
  }

  .category-card {
    padding: 11px;
  }

  .category-name {
    font-size: 15px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  #category {
    padding: 80px 0;
  }

  .category-heading {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .category-row {
    row-gap: 20px;
  }

  .category-card {
    padding: 8px;

    border-radius: 17px;
  }

  .category-image {
    border-radius: 13px;
  }

  .category-name {
    min-height: 42px;

    font-size: 13px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  #category {
    padding: 65px 0;
  }

  .category-heading {
    margin-bottom: 30px;

    padding: 0 10px;
  }

  .section-label {
    font-size: 11px;

    padding: 6px 12px;
  }

  .section-title {
    margin-top: 12px;

    font-size: clamp(1.8rem, 7vw, 2.3rem);
  }

  .section-description {
    font-size: 12px;
  }

  .category-row {
    margin-left: -7px;
    margin-right: -7px;

    row-gap: 15px;
  }

  .category-column {
    padding-left: 7px;
    padding-right: 7px;
  }

  .category-card {
    padding: 7px;

    border-radius: 15px;

    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.05);
  }

  .category-image {
    border-radius: 11px;
  }

  .category-name {
    min-height: 38px;

    padding-top: 8px;

    font-size: 12px;
  }

  /* Disable hover-only UI on touch devices */

  .category-overlay,
  .category-arrow {
    display: none;
  }

  .category-card:hover {
    transform: none;
  }

  .category-card:hover .category-image img {
    transform: none;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  #category {
    padding: 55px 0;
  }

  .category-row {
    row-gap: 12px;
  }

  .category-card {
    padding: 6px;

    border-radius: 13px;
  }

  .category-image {
    border-radius: 9px;
  }

  .category-name {
    min-height: 36px;

    font-size: 11px;

    line-height: 1.4;
  }
}

/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 399.98px) {
  .category-heading {
    margin-bottom: 25px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-description {
    font-size: 11px;
  }

  .category-row {
    margin-left: -5px;
    margin-right: -5px;

    row-gap: 10px;
  }

  .category-column {
    padding-left: 5px;
    padding-right: 5px;
  }

  .category-card {
    padding: 5px;

    border-radius: 11px;
  }

  .category-name {
    min-height: 32px;

    padding: 6px 2px 3px;

    font-size: 10px;
  }
}

/* =========================================================
   DARK THEME SUPPORT
========================================================= */

[data-theme="dark"] #category {
  background: linear-gradient(
    180deg,
    var(--section-bg, #111827),
    var(--section-bg, #0f172a)
  );
}

[data-theme="dark"] .category-card {
  background: rgba(255, 255, 255, 0.04);

  border-color: rgba(255, 255, 255, 0.08);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .category-card:hover {
  border-color: rgba(220, 38, 38, 0.35);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .category-name {
  color: var(--text, #f9fafb);
}

[data-theme="dark"] .category-image {
  background: #1f2937;
}

[data-theme="dark"] .category-empty {
  background: rgba(255, 255, 255, 0.03);

  border-color: rgba(255, 255, 255, 0.1);
}

/* =========================================================
   MENU SECTION
========================================================= */

#menu {
  position: relative;

  width: 100%;

  padding: 100px 0;

  overflow: hidden;

  background: linear-gradient(
    180deg,
    var(--section-bg, #ffffff),
    rgba(248, 250, 252, 0.8)
  );
}

/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.menu-bg {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}

.menu-bg-1 {
  width: 350px;
  height: 350px;

  top: -180px;
  right: -160px;

  background: rgba(220, 38, 38, 0.06);

  filter: blur(2px);
}

.menu-bg-2 {
  width: 300px;
  height: 300px;

  bottom: -150px;
  left: -150px;

  background: rgba(124, 58, 237, 0.05);

  filter: blur(2px);
}

/* =========================================================
   SECTION HEADING
========================================================= */

.menu-heading {
  position: relative;

  z-index: 2;

  max-width: 650px;

  margin: 0 auto 50px;
}

.menu-label {
  display: inline-flex;
  align-items: center;

  padding: 7px 16px;

  color: var(--primary, #dc2626);

  background: rgba(220, 38, 38, 0.07);

  border: 1px solid rgba(220, 38, 38, 0.12);

  border-radius: 50px;

  font-size: 13px;

  font-weight: 600;
}

/* =========================================================
   TITLE
========================================================= */

.menu-title {
  margin: 15px 0 12px;

  color: var(--text, #111827);

  font-size: clamp(2rem, 4vw, 3.2rem);

  font-weight: 900;

  line-height: 1.3;
}

.menu-title span {
  color: var(--primary, #dc2626);
}

/* =========================================================
   LINE
========================================================= */

.menu-line {
  position: relative;

  width: 65px;
  height: 4px;

  margin: 0 auto 15px;

  border-radius: 10px;

  background: linear-gradient(90deg, var(--primary, #dc2626), #f97316);
}

.menu-line::before,
.menu-line::after {
  content: "";

  position: absolute;

  top: 50%;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--primary, #dc2626);

  transform: translateY(-50%);
}

.menu-line::before {
  left: -11px;
}

.menu-line::after {
  right: -11px;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.menu-description {
  max-width: 550px;

  margin: 0 auto;

  color: var(--muted, #6b7280);

  font-size: 14px;

  line-height: 1.9;
}

/* =========================================================
   PRODUCT GRID
========================================================= */

.menu-grid {
  position: relative;

  z-index: 2;

  row-gap: 28px;

  justify-content: center;
}

.menu-column {
  display: flex;
}

/* =========================================================
   PRODUCT CARD
========================================================= */

.menu-card {
  position: relative;

  width: 100%;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.95);

  border: 1px solid rgba(0, 0, 0, 0.06);

  border-radius: 22px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.menu-card:hover {
  transform: translateY(-8px);

  border-color: rgba(220, 38, 38, 0.18);

  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

/* =========================================================
   PRODUCT IMAGE
========================================================= */

.menu-image {
  position: relative;

  width: 100%;

  aspect-ratio: 16 / 11;

  overflow: hidden;

  background: #f3f4f6;
}

.menu-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.menu-card:hover .menu-image img {
  transform: scale(1.07);
}

/* =========================================================
   IMAGE OVERLAY
========================================================= */

.menu-image-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.5));

  opacity: 0;

  transition: opacity 0.35s ease;
}

.menu-card:hover .menu-image-overlay {
  opacity: 1;
}

/* =========================================================
   IMAGE CATEGORY
========================================================= */

.menu-category {
  position: absolute;

  top: 15px;
  right: 15px;

  z-index: 3;

  padding: 6px 12px;

  color: #fff;

  background: rgba(220, 38, 38, 0.92);

  border-radius: 50px;

  font-size: 11px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* =========================================================
   VIEW ICON
========================================================= */

.menu-view {
  position: absolute;

  left: 50%;
  top: 50%;

  z-index: 4;

  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary, #dc2626);

  background: #fff;

  border-radius: 50%;

  opacity: 0;

  transform: translate(-50%, -40%) scale(0.7);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.menu-card:hover .menu-view {
  opacity: 1;

  transform: translate(-50%, -50%) scale(1);
}

/* =========================================================
   CARD BODY
========================================================= */

.menu-body {
  padding: 20px 20px 18px;
}

/* =========================================================
   CARD CATEGORY
========================================================= */

.menu-card-category {
  display: flex;
  align-items: center;

  gap: 6px;

  margin-bottom: 8px;

  color: var(--primary, #dc2626);

  font-size: 11px;

  font-weight: 600;
}

.menu-card-category i {
  font-size: 9px;
}

/* =========================================================
   CARD TITLE
========================================================= */

.menu-card-title {
  margin: 0 0 8px;

  color: var(--text, #111827);

  font-size: 20px;

  font-weight: 800;

  line-height: 1.5;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.menu-card-description {
  display: -webkit-box;

  min-height: 48px;

  margin: 0;

  overflow: hidden;

  color: var(--muted, #6b7280);

  font-size: 12px;

  line-height: 1.8;

  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* =========================================================
   FOOTER
========================================================= */

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;

  margin-top: 18px;

  padding-top: 15px;

  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

/* =========================================================
   PRICE
========================================================= */

.menu-price {
  display: flex;
  align-items: baseline;

  gap: 8px;

  flex-wrap: wrap;
}

.menu-price strong {
  color: var(--primary, #dc2626);

  font-family: inherit;

  font-size: 18px;

  font-weight: 900;
}

.menu-price del {
  color: #9ca3af;

  font-size: 10px;
}

/* =========================================================
   ARROW
========================================================= */

.menu-arrow {
  width: 38px;
  height: 38px;

  flex: 0 0 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary, #dc2626);

  background: rgba(220, 38, 38, 0.08);

  border-radius: 50%;

  transition: all 0.3s ease;
}

.menu-card:hover .menu-arrow {
  color: #fff;

  background: var(--primary, #dc2626);

  transform: translateX(-4px);
}

/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.menu-more {
  position: relative;

  z-index: 2;

  margin-top: 50px;
}

.menu-more-btn {
  min-height: 52px;

  display: inline-flex;
  align-items: center;

  gap: 12px;

  padding: 0 20px;

  color: #fff !important;

  text-decoration: none;

  background: linear-gradient(135deg, var(--primary, #dc2626), #ef4444);

  border-radius: 13px;

  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.menu-more-btn:hover {
  color: #fff;

  transform: translateY(-3px);

  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.3);
}

.menu-more-arrow {
  font-size: 11px;

  transition: transform 0.3s ease;
}

.menu-more-btn:hover .menu-more-arrow {
  transform: translateX(-5px);
}

/* =========================================================
   EMPTY STATE
========================================================= */

.menu-empty {
  padding: 55px 20px;

  background: rgba(255, 255, 255, 0.7);

  border: 1px dashed rgba(0, 0, 0, 0.12);

  border-radius: 20px;
}

.menu-empty-icon {
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 15px;

  color: var(--primary, #dc2626);

  background: rgba(220, 38, 38, 0.08);

  border-radius: 50%;

  font-size: 24px;
}

.menu-empty h5 {
  margin: 0 0 7px;

  color: var(--text, #111827);

  font-size: 17px;
}

.menu-empty p {
  margin: 0;

  color: var(--muted, #6b7280);

  font-size: 12px;
}

/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {
  #menu {
    padding: 110px 0;
  }

  .menu-grid {
    row-gap: 32px;
  }

  .menu-body {
    padding: 22px;
  }

  .menu-card-title {
    font-size: 21px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  #menu {
    padding: 80px 0;
  }

  .menu-heading {
    margin-bottom: 40px;
  }

  .menu-grid {
    row-gap: 22px;
  }

  .menu-card {
    border-radius: 19px;
  }

  .menu-body {
    padding: 17px;
  }

  .menu-card-title {
    font-size: 18px;
  }

  .menu-card-description {
    font-size: 11px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  #menu {
    padding: 65px 0;
  }

  .menu-heading {
    margin-bottom: 30px;

    padding: 0 10px;
  }

  .menu-label {
    padding: 6px 12px;

    font-size: 11px;
  }

  .menu-title {
    margin-top: 12px;

    font-size: clamp(1.8rem, 7vw, 2.3rem);
  }

  .menu-description {
    font-size: 12px;
  }

  .menu-grid {
    row-gap: 17px;
  }

  .menu-card {
    border-radius: 16px;
  }

  .menu-image {
    aspect-ratio: 16 / 10;
  }

  .menu-category {
    top: 10px;
    right: 10px;

    padding: 5px 9px;

    font-size: 9px;
  }

  .menu-body {
    padding: 15px;
  }

  .menu-card-category {
    font-size: 9px;
  }

  .menu-card-title {
    margin-bottom: 5px;

    font-size: 16px;
  }

  .menu-card-description {
    min-height: 43px;

    font-size: 10px;

    line-height: 1.7;
  }

  .menu-footer {
    margin-top: 14px;

    padding-top: 12px;
  }

  .menu-price strong {
    font-size: 15px;
  }

  .menu-price del {
    font-size: 9px;
  }

  .menu-arrow {
    width: 34px;
    height: 34px;

    flex-basis: 34px;

    font-size: 10px;
  }

  /* Disable hover-only elements on touch */

  .menu-image-overlay,
  .menu-view {
    display: none;
  }

  .menu-card:hover {
    transform: none;
  }

  .menu-card:hover .menu-image img {
    transform: none;
  }

  .menu-more {
    margin-top: 35px;
  }

  .menu-more-btn {
    width: 100%;

    justify-content: center;

    min-height: 49px;

    font-size: 12px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  #menu {
    padding: 55px 0;
  }

  .menu-grid {
    margin-left: -6px;
    margin-right: -6px;
  }

  .menu-column {
    padding-left: 6px;
    padding-right: 6px;
  }

  .menu-card {
    border-radius: 14px;
  }

  .menu-image {
    aspect-ratio: 16 / 10;
  }

  .menu-body {
    padding: 12px;
  }

  .menu-card-title {
    font-size: 14px;
  }

  .menu-card-description {
    min-height: 40px;

    font-size: 9px;
  }

  .menu-price strong {
    font-size: 13px;
  }

  .menu-price del {
    display: none;
  }

  .menu-arrow {
    width: 30px;
    height: 30px;

    flex-basis: 30px;
  }
}

/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 399.98px) {
  .menu-grid {
    margin-left: -5px;
    margin-right: -5px;
  }

  .menu-column {
    padding-left: 5px;
    padding-right: 5px;
  }

  .menu-card {
    border-radius: 12px;
  }

  .menu-body {
    padding: 10px;
  }

  .menu-card-category {
    font-size: 8px;
  }

  .menu-card-title {
    font-size: 13px;
  }

  .menu-card-description {
    font-size: 8px;
  }

  .menu-price strong {
    font-size: 12px;
  }

  .menu-arrow {
    width: 27px;
    height: 27px;

    flex-basis: 27px;

    font-size: 8px;
  }
}

/* =========================================================
   DARK THEME
========================================================= */

[data-theme="dark"] #menu {
  background: linear-gradient(
    180deg,
    var(--section-bg, #111827),
    var(--section-bg, #0f172a)
  );
}

[data-theme="dark"] .menu-card {
  background: rgba(255, 255, 255, 0.04);

  border-color: rgba(255, 255, 255, 0.08);

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .menu-card:hover {
  border-color: rgba(220, 38, 38, 0.3);

  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .menu-card-title {
  color: var(--text, #f9fafb);
}

[data-theme="dark"] .menu-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .menu-empty {
  background: rgba(255, 255, 255, 0.03);

  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .menu-empty h5 {
  color: #f9fafb;
}

/* =========================================================
   TEAM SECTION
========================================================= */

#chefs {
  position: relative;

  width: 100%;

  padding: 100px 0;

  overflow: hidden;

  background: linear-gradient(
    180deg,
    var(--section-bg, #ffffff),
    rgba(248, 250, 252, 0.8)
  );
}

/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.team-bg {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(2px);
}

.team-bg-1 {
  width: 350px;
  height: 350px;

  top: -180px;
  left: -170px;

  background: rgba(220, 38, 38, 0.06);
}

.team-bg-2 {
  width: 300px;
  height: 300px;

  right: -150px;
  bottom: -150px;

  background: rgba(124, 58, 237, 0.05);
}

/* =========================================================
   SECTION HEADING
========================================================= */

.team-heading {
  position: relative;

  z-index: 2;

  max-width: 650px;

  margin: 0 auto 50px;
}

.team-label {
  display: inline-flex;
  align-items: center;

  padding: 7px 16px;

  color: var(--primary, #dc2626);

  background: rgba(220, 38, 38, 0.07);

  border: 1px solid rgba(220, 38, 38, 0.12);

  border-radius: 50px;

  font-family: bahij, sans-serif;

  font-size: 13px;

  font-weight: 600;
}

/* =========================================================
   TITLE
========================================================= */

.team-title {
  margin: 15px 0 12px;

  color: var(--text, #111827);

  font-family: bahij, sans-serif;

  font-size: clamp(2rem, 4vw, 3.2rem);

  font-weight: 900;

  line-height: 1.4;
}

.team-title span {
  color: var(--primary, #dc2626);
}

/* =========================================================
   LINE
========================================================= */

.team-line {
  position: relative;

  width: 65px;
  height: 4px;

  margin: 0 auto 15px;

  border-radius: 10px;

  background: linear-gradient(90deg, var(--primary, #dc2626), #f97316);
}

.team-line::before,
.team-line::after {
  content: "";

  position: absolute;

  top: 50%;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--primary, #dc2626);

  transform: translateY(-50%);
}

.team-line::before {
  left: -11px;
}

.team-line::after {
  right: -11px;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.team-description {
  max-width: 500px;

  margin: 0 auto;

  color: var(--muted, #6b7280);

  font-family: bahij, sans-serif;

  font-size: 14px;

  line-height: 1.9;
}

/* =========================================================
   TEAM GRID
========================================================= */

.team-row {
  position: relative;

  z-index: 2;

  row-gap: 28px;

  margin-left: -12px;
  margin-right: -12px;
}

.team-column {
  display: flex;

  padding-left: 12px;
  padding-right: 12px;
}

/* =========================================================
   TEAM CARD
========================================================= */

.team-card {
  position: relative;

  width: 100%;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.95);

  border: 1px solid rgba(0, 0, 0, 0.06);

  border-radius: 22px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.team-card:hover {
  transform: translateY(-9px);

  border-color: rgba(220, 38, 38, 0.2);

  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

/* =========================================================
   TEAM IMAGE
========================================================= */

.team-image {
  position: relative;

  width: 100%;

  aspect-ratio: 4 / 4.5;

  overflow: hidden;

  background: #f3f4f6;
}

.team-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  transition: transform 0.6s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.07);
}

/* =========================================================
   IMAGE OVERLAY
========================================================= */

.team-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.5));

  opacity: 0;

  transition: opacity 0.35s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

/* =========================================================
   EXPERIENCE BADGE
========================================================= */

.team-experience {
  position: absolute;

  top: 14px;
  right: 14px;

  z-index: 3;

  display: inline-flex;
  align-items: center;

  gap: 6px;

  padding: 7px 11px;

  color: #fff;

  background: rgba(220, 38, 38, 0.92);

  border-radius: 50px;

  font-family: bahij, sans-serif;

  font-size: 11px;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
}

.team-experience i {
  font-size: 10px;
}

/* =========================================================
   TEAM BODY
========================================================= */

.team-body {
  padding: 20px 18px 18px;

  text-align: center;

  font-family: bahij, sans-serif;
}

/* =========================================================
   NAME
========================================================= */

.team-name {
  margin: 0 0 8px;

  color: var(--text, #111827);

  font-family: bahij, sans-serif;

  font-size: 20px;

  font-weight: 800;

  line-height: 1.5;
}

/* =========================================================
   ROLE
========================================================= */

.team-role {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 6px;

  margin-bottom: 12px;

  color: var(--primary, #dc2626);

  font-family: bahij, sans-serif;

  font-size: 12px;

  font-weight: 600;
}

.team-role i {
  font-size: 10px;
}

/* =========================================================
   EXPERIENCE
========================================================= */

.team-exp {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 5px;

  padding: 5px 12px;

  color: var(--muted, #6b7280);

  background: rgba(0, 0, 0, 0.04);

  border-radius: 50px;

  font-family: bahij, sans-serif;

  font-size: 11px;
}

.team-exp span {
  color: var(--primary, #dc2626);

  font-weight: 800;
}

/* =========================================================
   EMPTY STATE
========================================================= */

.team-empty {
  padding: 55px 20px;

  background: rgba(255, 255, 255, 0.7);

  border: 1px dashed rgba(0, 0, 0, 0.12);

  border-radius: 20px;

  font-family: bahij, sans-serif;
}

.team-empty-icon {
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 15px;

  color: var(--primary, #dc2626);

  background: rgba(220, 38, 38, 0.08);

  border-radius: 50%;

  font-size: 24px;
}

.team-empty h5 {
  margin: 0 0 7px;

  color: var(--text, #111827);

  font-family: bahij, sans-serif;

  font-size: 17px;
}

.team-empty p {
  margin: 0;

  color: var(--muted, #6b7280);

  font-family: bahij, sans-serif;

  font-size: 12px;
}

/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {
  #chefs {
    padding: 110px 0;
  }

  .team-row {
    row-gap: 32px;
  }

  .team-body {
    padding: 22px 20px 20px;
  }

  .team-name {
    font-size: 21px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  #chefs {
    padding: 80px 0;
  }

  .team-heading {
    margin-bottom: 40px;
  }

  .team-row {
    row-gap: 22px;
  }

  .team-card {
    border-radius: 19px;
  }

  .team-body {
    padding: 17px 15px;
  }

  .team-name {
    font-size: 18px;
  }

  .team-role {
    font-size: 11px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  #chefs {
    padding: 65px 0;
  }

  .team-heading {
    margin-bottom: 30px;

    padding: 0 10px;
  }

  .team-label {
    padding: 6px 12px;

    font-size: 11px;
  }

  .team-title {
    margin-top: 12px;

    font-size: clamp(1.8rem, 7vw, 2.3rem);
  }

  .team-description {
    font-size: 12px;
  }

  .team-row {
    row-gap: 17px;

    margin-left: -7px;
    margin-right: -7px;
  }

  .team-column {
    padding-left: 7px;
    padding-right: 7px;
  }

  .team-card {
    border-radius: 16px;
  }

  .team-image {
    aspect-ratio: 1 / 1.15;
  }

  .team-experience {
    top: 9px;
    right: 9px;

    padding: 5px 8px;

    font-size: 9px;
  }

  .team-body {
    padding: 14px 12px;
  }

  .team-name {
    margin-bottom: 5px;

    font-size: 16px;
  }

  .team-role {
    margin-bottom: 8px;

    font-size: 10px;
  }

  .team-exp {
    padding: 4px 9px;

    font-size: 9px;
  }

  /* Disable hover effects on touch screens */

  .team-overlay {
    display: none;
  }

  .team-card:hover {
    transform: none;
  }

  .team-card:hover .team-image img {
    transform: none;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  #chefs {
    padding: 55px 0;
  }

  .team-row {
    margin-left: -6px;
    margin-right: -6px;

    row-gap: 12px;
  }

  .team-column {
    padding-left: 6px;
    padding-right: 6px;
  }

  .team-card {
    border-radius: 14px;
  }

  .team-body {
    padding: 11px 8px;
  }

  .team-name {
    font-size: 14px;
  }

  .team-role {
    font-size: 9px;
  }

  .team-exp {
    padding: 3px 7px;

    font-size: 8px;
  }
}

/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 399.98px) {
  .team-row {
    margin-left: -5px;
    margin-right: -5px;
  }

  .team-column {
    padding-left: 5px;
    padding-right: 5px;
  }

  .team-card {
    border-radius: 12px;
  }

  .team-body {
    padding: 9px 6px;
  }

  .team-name {
    font-size: 13px;
  }

  .team-role {
    font-size: 8px;
  }

  .team-exp {
    font-size: 7px;
  }
}

/* =========================================================
   DARK THEME
========================================================= */

[data-theme="dark"] #chefs {
  background: linear-gradient(
    180deg,
    var(--section-bg, #111827),
    var(--section-bg, #0f172a)
  );
}

[data-theme="dark"] .team-card {
  background: rgba(255, 255, 255, 0.04);

  border-color: rgba(255, 255, 255, 0.08);

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .team-card:hover {
  border-color: rgba(220, 38, 38, 0.3);

  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .team-name {
  color: #f9fafb;
}

[data-theme="dark"] .team-exp {
  background: rgba(255, 255, 255, 0.06);

  color: #9ca3af;
}

[data-theme="dark"] .team-empty {
  background: rgba(255, 255, 255, 0.03);

  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .team-empty h5 {
  color: #f9fafb;
}

/* =========================================================
   GALLERY SECTION
========================================================= */

#gallery {
  position: relative;

  width: 100%;

  padding: 100px 0;

  overflow: hidden;

  background: linear-gradient(
    180deg,
    var(--section-bg, #ffffff),
    rgba(248, 250, 252, 0.85)
  );
}

/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.gallery-bg {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(2px);
}

.gallery-bg-1 {
  width: 350px;
  height: 350px;

  top: -170px;
  right: -170px;

  background: rgba(220, 38, 38, 0.06);
}

.gallery-bg-2 {
  width: 300px;
  height: 300px;

  bottom: -150px;
  left: -150px;

  background: rgba(124, 58, 237, 0.05);
}

/* =========================================================
   SECTION HEADER
========================================================= */

.gallery-heading {
  position: relative;

  z-index: 2;

  max-width: 700px;

  margin: 0 auto 50px;
}

.gallery-label {
  display: inline-flex;
  align-items: center;

  padding: 7px 16px;

  color: var(--primary, #dc2626);

  background: rgba(220, 38, 38, 0.07);

  border: 1px solid rgba(220, 38, 38, 0.12);

  border-radius: 50px;

  font-family: bahij, sans-serif;

  font-size: 13px;

  font-weight: 600;
}

/* =========================================================
   TITLE
========================================================= */

.gallery-title {
  margin: 15px 0 12px;

  color: var(--text, #111827);

  font-family: bahij, sans-serif;

  font-size: clamp(2rem, 4vw, 3.2rem);

  font-weight: 900;

  line-height: 1.45;
}

.gallery-title span {
  color: var(--primary, #dc2626);
}

/* =========================================================
   LINE
========================================================= */

.gallery-line {
  position: relative;

  width: 65px;
  height: 4px;

  margin: 0 auto 15px;

  border-radius: 20px;

  background: linear-gradient(90deg, var(--primary, #dc2626), #f97316);
}

.gallery-line::before,
.gallery-line::after {
  content: "";

  position: absolute;

  top: 50%;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--primary, #dc2626);

  transform: translateY(-50%);
}

.gallery-line::before {
  left: -11px;
}

.gallery-line::after {
  right: -11px;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.gallery-description {
  max-width: 520px;

  margin: 0 auto;

  color: var(--muted, #6b7280);

  font-family: bahij, sans-serif;

  font-size: 14px;

  line-height: 1.9;
}

/* =========================================================
   GALLERY GRID
========================================================= */

.gallery-grid {
  position: relative;

  z-index: 2;

  width: 100%;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  grid-template-rows: repeat(2, 250px);

  gap: 18px;
}

/* =========================================================
   GALLERY ITEM
========================================================= */

.gallery-item {
  position: relative;

  min-width: 0;

  overflow: hidden;

  border-radius: 20px;

  background: #f3f4f6;

  cursor: pointer;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.13);
}

/* =========================================================
   GALLERY ITEM POSITIONS
========================================================= */

/*
   Layout:

   ┌────────────┬────────┬────────┐
   │            │        │        │
   │    BIG     │  Item  │  Item  │
   │            │        │        │
   ├────────────┼────────┴────────┤
   │            │      Item       │
   │    Item    │                 │
   │            │                 │
   └────────────┴─────────────────┘
*/

.gallery-item-1 {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-2 {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item-3 {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item-4 {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item-5 {
  grid-column: span 2;
  grid-row: span 1;
}

/* =========================================================
   IMAGE
========================================================= */

.gallery-image {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.08);
}

/* =========================================================
   OVERLAY
========================================================= */

.gallery-overlay {
  position: absolute;

  inset: 0;

  display: flex;
  align-items: flex-end;

  padding: 22px;

  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.78));

  opacity: 0;

  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* =========================================================
   CONTENT
========================================================= */

.gallery-content {
  display: flex;

  align-items: center;

  gap: 12px;

  width: 100%;

  color: #fff;

  font-family: bahij, sans-serif;

  transform: translateY(15px);

  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-content {
  transform: translateY(0);
}

/* =========================================================
   GALLERY ICON
========================================================= */

.gallery-icon {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary, #dc2626);

  background: #fff;

  border-radius: 50%;

  font-size: 13px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* =========================================================
   TITLE
========================================================= */

.gallery-item-title {
  display: block;

  max-width: 100%;

  overflow: hidden;

  font-size: 17px;

  font-weight: 700;

  white-space: nowrap;

  text-overflow: ellipsis;
}

.gallery-content small {
  display: none;

  color: rgba(255, 255, 255, 0.75);

  font-size: 10px;
}

/* =========================================================
   EMPTY STATE
========================================================= */

.gallery-empty {
  grid-column: 1 / -1;

  padding: 60px 20px;

  text-align: center;

  background: rgba(255, 255, 255, 0.7);

  border: 1px dashed rgba(0, 0, 0, 0.12);

  border-radius: 20px;

  font-family: bahij, sans-serif;
}

.gallery-empty-icon {
  width: 65px;
  height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 15px;

  color: var(--primary, #dc2626);

  background: rgba(220, 38, 38, 0.08);

  border-radius: 50%;

  font-size: 24px;
}

.gallery-empty h5 {
  margin: 0 0 7px;

  color: var(--text, #111827);

  font-family: bahij, sans-serif;

  font-size: 17px;
}

.gallery-empty p {
  margin: 0;

  color: var(--muted, #6b7280);

  font-family: bahij, sans-serif;

  font-size: 12px;
}

/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {
  #gallery {
    padding: 110px 0;
  }

  .gallery-grid {
    grid-template-rows: repeat(2, 280px);

    gap: 20px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  #gallery {
    padding: 80px 0;
  }

  .gallery-heading {
    margin-bottom: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);

    grid-template-rows: repeat(3, 210px);

    gap: 15px;
  }

  .gallery-item-1 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item-2 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item-3 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item-4 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item-5 {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item {
    border-radius: 16px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  #gallery {
    padding: 65px 0;
  }

  .gallery-heading {
    margin-bottom: 30px;

    padding: 0 10px;
  }

  .gallery-label {
    padding: 6px 12px;

    font-size: 11px;
  }

  .gallery-title {
    margin-top: 12px;

    font-size: clamp(1.8rem, 7vw, 2.3rem);
  }

  .gallery-description {
    font-size: 12px;
  }

  /* Two-column mobile gallery */

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);

    grid-template-rows: repeat(4, 170px);

    gap: 10px;
  }

  .gallery-item-1 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item-2 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item-3 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item-4 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item-5 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item {
    border-radius: 13px;

    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.06);
  }

  /*
       On mobile the overlay is always
       slightly visible so users can
       understand that the image is clickable.
    */

  .gallery-overlay {
    padding: 10px;

    opacity: 1;

    align-items: flex-end;

    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.65));
  }

  .gallery-content {
    gap: 7px;

    transform: none;
  }

  .gallery-icon {
    width: 30px;
    height: 30px;

    flex-basis: 30px;

    font-size: 9px;
  }

  .gallery-item-title {
    font-size: 11px;
  }

  .gallery-item:hover {
    transform: none;
  }

  .gallery-item:hover .gallery-image img {
    transform: none;
  }

  .gallery-item:hover .gallery-content {
    transform: none;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  #gallery {
    padding: 55px 0;
  }

  .gallery-grid {
    grid-template-rows: repeat(4, 145px);

    gap: 8px;
  }

  .gallery-item {
    border-radius: 11px;
  }

  .gallery-overlay {
    padding: 8px;
  }

  .gallery-icon {
    width: 27px;
    height: 27px;

    flex-basis: 27px;

    font-size: 8px;
  }

  .gallery-item-title {
    font-size: 10px;
  }
}

/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 399.98px) {
  .gallery-grid {
    grid-template-rows: repeat(4, 125px);

    gap: 6px;
  }

  .gallery-item {
    border-radius: 9px;
  }

  .gallery-icon {
    width: 24px;
    height: 24px;

    flex-basis: 24px;

    font-size: 7px;
  }

  .gallery-item-title {
    font-size: 9px;
  }
}

/* =========================================================
   DARK THEME
========================================================= */

[data-theme="dark"] #gallery {
  background: linear-gradient(
    180deg,
    var(--section-bg, #111827),
    var(--section-bg, #0f172a)
  );
}

[data-theme="dark"] .gallery-empty {
  background: rgba(255, 255, 255, 0.03);

  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .gallery-empty h5 {
  color: #f9fafb;
}

[data-theme="dark"] .gallery-item {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* =========================================================
   FOOTER
========================================================= */

#site-footer {
  position: relative;

  width: 100%;

  overflow: hidden;

  color: #d1d5db;

  background: linear-gradient(135deg, #111827 0%, #0f172a 50%, #111827 100%);

  font-family: bahij, sans-serif;
}

/* =========================================================
   FOOTER BACKGROUND GLOW
========================================================= */

.footer-glow {
  position: absolute;

  width: 350px;
  height: 350px;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(80px);

  opacity: 0.12;
}

.footer-glow-1 {
  top: -180px;
  right: -150px;

  background: #dc2626;
}

.footer-glow-2 {
  bottom: -200px;
  left: -150px;

  background: #7c3aed;
}

/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-main {
  position: relative;

  z-index: 2;

  padding: 85px 0 70px;
}

/* =========================================================
   BRAND
========================================================= */

.footer-brand {
  display: flex;

  align-items: center;

  gap: 13px;

  margin-bottom: 20px;
}

.footer-brand-icon {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex: 0 0 48px;

  color: #fff;

  background: linear-gradient(135deg, #dc2626, #b91c1c);

  border-radius: 15px;

  font-size: 19px;

  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.25);

  transform: rotate(-3deg);

  transition: transform 0.3s ease;
}

.footer-brand:hover .footer-brand-icon {
  transform: rotate(0deg) scale(1.05);
}

.footer-brand-name {
  color: #fff;

  font-family: bahij, sans-serif;

  font-size: 23px;

  font-weight: 800;

  line-height: 1.4;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.footer-description {
  max-width: 390px;

  margin: 0 0 24px;

  color: #9ca3af;

  font-family: bahij, sans-serif;

  font-size: 13px;

  line-height: 2;
}

/* =========================================================
   SOCIAL MEDIA
========================================================= */

.footer-social {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  gap: 9px;
}

.footer-social a {
  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #cbd5e1;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 11px;

  font-size: 13px;

  text-decoration: none;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;

  background: #dc2626;

  border-color: #dc2626;

  transform: translateY(-4px);
}

/* =========================================================
   FOOTER TITLES
========================================================= */

.footer-title {
  margin-bottom: 10px;

  color: #fff;

  font-family: bahij, sans-serif;

  font-size: 17px;

  font-weight: 800;

  line-height: 1.5;
}

.footer-title-line {
  position: relative;

  width: 42px;
  height: 3px;

  margin-bottom: 20px;

  border-radius: 10px;

  background: linear-gradient(90deg, #dc2626, #f97316);
}

.footer-title-line::after {
  content: "";

  position: absolute;

  top: 0;
  left: 48px;

  width: 7px;
  height: 3px;

  border-radius: 10px;

  background: rgba(220, 38, 38, 0.35);
}

/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {
  margin: 0;

  padding: 0;

  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: #9ca3af;

  font-family: bahij, sans-serif;

  font-size: 12px;

  line-height: 1.7;

  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-links a i {
  color: #dc2626;

  font-size: 8px;

  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: #fff;

  transform: translateX(-4px);
}

.footer-links a:hover i {
  transform: translateX(-3px);
}

/* =========================================================
   CONTACT INFORMATION
========================================================= */

.footer-contact {
  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin-bottom: 18px;

  direction: rtl;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex: 0 0 38px;

  color: #f87171;

  background: rgba(220, 38, 38, 0.1);

  border: 1px solid rgba(220, 38, 38, 0.14);

  border-radius: 10px;

  font-size: 12px;
}

.footer-contact-content {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  min-width: 0;

  text-align: right;
}

.footer-contact-content strong {
  margin-bottom: 2px;

  color: #fff;

  font-family: bahij, sans-serif;

  font-size: 12px;

  font-weight: 700;
}

.footer-contact-content span,
.footer-contact-content a {
  max-width: 100%;

  overflow-wrap: anywhere;

  color: #9ca3af;

  font-family: bahij, sans-serif;

  font-size: 11px;

  line-height: 1.8;

  text-decoration: none;
}

.footer-contact-content a {
  transition: color 0.3s ease;
}

.footer-contact-content a:hover {
  color: #f87171;
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
  position: relative;

  z-index: 3;

  border-top: 1px solid rgba(255, 255, 255, 0.07);

  background: rgba(0, 0, 0, 0.18);
}

.footer-bottom-content {
  min-height: 65px;

  display: flex;

  align-items: center;
  justify-content: center;

  text-align: center;
}

.footer-bottom p {
  margin: 0;

  color: #6b7280;

  font-family: Arial, sans-serif;

  font-size: 11px;

  line-height: 1.8;
}

.footer-bottom p span {
  color: #f87171;

  font-weight: 700;
}

.footer-bottom p a {
  color: #9ca3af;

  text-decoration: none;

  transition: color 0.3s ease;
}

.footer-bottom p a:hover {
  color: #f87171;
}

.footer-bottom p .fa-heart {
  margin: 0 3px;

  color: #ef4444;

  animation: footerHeart 1.4s ease-in-out infinite;
}

@keyframes footerHeart {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.18);
  }
}

/* =========================================================
   BACK TO TOP
========================================================= */

#btt {
  position: fixed;

  right: 25px;
  bottom: 25px;

  z-index: 999;

  width: 45px;
  height: 45px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #fff;

  background: linear-gradient(135deg, #dc2626, #b91c1c);

  border: none;

  border-radius: 14px;

  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.25);

  cursor: pointer;

  font-size: 12px;

  opacity: 0.9;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    border-radius 0.3s ease;
}

#btt:hover {
  opacity: 1;

  transform: translateY(-5px);

  border-radius: 50%;
}

/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {
  .footer-main {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .footer-brand-name {
    font-size: 25px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {
  .footer-main {
    padding: 70px 0 55px;
  }

  .footer-brand-name {
    font-size: 21px;
  }

  .footer-description {
    max-width: 100%;

    font-size: 12px;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-contact {
    margin-bottom: 15px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
  .footer-main {
    padding: 60px 0 45px;
  }

  /* Center brand */

  .footer-brand {
    justify-content: center;

    text-align: center;
  }

  .footer-brand-name {
    font-size: 20px;
  }

  .footer-description {
    max-width: 500px;

    margin: 0 auto 22px;

    text-align: center;

    font-size: 11px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-title {
    font-size: 15px;
  }

  .footer-title-line {
    margin-bottom: 15px;
  }

  .footer-links li {
    margin-bottom: 9px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-contact-content strong {
    font-size: 11px;
  }

  .footer-contact-content span,
  .footer-contact-content a {
    font-size: 10px;
  }

  .footer-bottom-content {
    min-height: 75px;

    padding: 10px 15px;
  }

  .footer-bottom p {
    font-size: 9px;
  }

  #btt {
    right: 16px;
    bottom: 16px;

    width: 40px;
    height: 40px;

    border-radius: 12px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .footer-main {
    padding: 50px 0 35px;
  }

  .footer-brand-icon {
    width: 42px;
    height: 42px;

    flex-basis: 42px;

    border-radius: 12px;

    font-size: 16px;
  }

  .footer-brand-name {
    font-size: 18px;
  }

  .footer-description {
    font-size: 10px;

    line-height: 1.9;
  }

  .footer-social {
    gap: 7px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;

    border-radius: 9px;

    font-size: 11px;
  }

  .footer-title {
    font-size: 14px;
  }

  .footer-title-line {
    width: 35px;
  }

  .footer-links a {
    font-size: 10px;
  }

  .footer-links a i {
    font-size: 7px;
  }

  .footer-contact {
    gap: 9px;

    margin-bottom: 12px;
  }

  .footer-contact-icon {
    width: 32px;
    height: 32px;

    flex-basis: 32px;

    border-radius: 8px;

    font-size: 10px;
  }

  .footer-contact-content strong {
    font-size: 10px;
  }

  .footer-contact-content span,
  .footer-contact-content a {
    font-size: 9px;
  }

  .footer-bottom p {
    font-size: 8px;
  }
}

/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 399.98px) {
  .footer-main {
    padding-top: 45px;
  }

  .footer-brand {
    gap: 9px;
  }

  .footer-brand-icon {
    width: 38px;
    height: 38px;

    flex-basis: 38px;
  }

  .footer-brand-name {
    font-size: 16px;
  }

  .footer-social a {
    width: 31px;
    height: 31px;

    font-size: 10px;
  }

  .footer-title {
    font-size: 13px;
  }

  .footer-links a {
    font-size: 9px;
  }

  #btt {
    right: 12px;
    bottom: 12px;

    width: 37px;
    height: 37px;
  }
}

/* =========================================================
   DARK THEME
========================================================= */

[data-theme="dark"] #site-footer {
  background: linear-gradient(135deg, #080d18 0%, #0b1120 50%, #080d18 100%);
}

[data-theme="dark"] .footer-social a {
  background: rgba(255, 255, 255, 0.045);

  border-color: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .footer-social a:hover {
  background: #dc2626;

  border-color: #dc2626;
}

[data-theme="dark"] .footer-bottom {
  background: rgba(0, 0, 0, 0.25);
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .footer-brand-icon,
  .footer-social a,
  .footer-links a,
  #btt,
  .footer-bottom p .fa-heart {
    transition: none;

    animation: none;
  }
}



