/* =============================================
   BOULEVARD AL QALAA - MAIN STYLESHEET
   Premium Arabic RTL Commercial Website
   ============================================= */

/* ---- CSS Variables / Design Tokens ---- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A30;
  --dark-green: #1B3A2D;
  --green: #2E5D46;
  --green-light: #4a8a68;
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --gray-100: #F0EDE8;
  --gray-200: #E0DDD6;
  --gray-500: #8A8578;
  --gray-700: #4A4640;
  --dark: #0E1E17;

  --font-main: 'Cairo', 'Tajawal', sans-serif;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.14);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--gray-700);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   PRELOADER
   ============================================= */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  width: 180px;
  filter: brightness(0) invert(1);
  animation: pulse-logo 1.5s ease-in-out infinite;
  margin: 0 auto 28px;
}

@keyframes pulse-logo {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(0.96);
  }
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 99px;
  animation: fill-bar 1.8s ease-in-out forwards;
}

@keyframes fill-bar {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(14, 30, 23, 0.97);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo img {
  height: 56px;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
  height: 46px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 99px;
  transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
  filter: saturate(0.7);
  transition: opacity 1s ease;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(27, 58, 45, 0.75) 0%, transparent 65%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.15) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(14, 30, 23, 0.7) 0%, rgba(14, 30, 23, 0.5) 50%, rgba(14, 30, 23, 0.85) 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float-particle 8s ease-in-out infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.2;
  }

  100% {
    transform: translateY(-20px) scale(1);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 28px;
  animation: fade-in-down 0.8s ease forwards;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  margin-bottom: 20px;
  animation: fade-in-up 0.9s ease 0.2s both;
}

.title-ar {
  display: block;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -1px;
}

.title-en {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 6px;
  margin-top: 6px;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.8;
  animation: fade-in-up 0.9s ease 0.4s both;
}

.hero-desc strong {
  color: var(--gold-light);
  font-weight: 700;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.hero-location i {
  color: var(--gold-dark);
  font-size: 0.85rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  margin-bottom: 44px;
  animation: fade-in-up 0.9s ease 0.5s both;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 32px;
}

.stat-num {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.stat-unit {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 700;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: fade-in-up 0.9s ease 0.6s both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  animation: bounce 2s ease infinite;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 15px 34px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(201, 168, 76, 0.55);
}

.btn-primary:hover::after {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 99px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.section-header.light .section-tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-light);
  border-color: rgba(201, 168, 76, 0.3);
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--dark-green);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-header.light .section-title {
  color: var(--white);
}

.section-subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-header.light .section-subtitle {
  color: rgba(255, 255, 255, 0.62);
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 120px 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card-main {
  background: linear-gradient(145deg, var(--dark-green), var(--green));
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about-card-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.06'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

/* Real Image Decoration */
.about-img-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.05);
}

.about-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.about-card-main:hover .about-real-img {
  transform: scale(1.05);
}

/* Floating badges */
.about-badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.location-badge {
  bottom: -20px;
  right: -20px;
}

.streets-badge {
  top: -20px;
  left: -20px;
}

.about-badge-float .icon-loc {
  font-size: 1.5rem;
}

.about-badge-float strong {
  display: block;
  font-size: 0.85rem;
  color: var(--dark-green);
  font-weight: 800;
}

.about-badge-float span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* .about-content — layout handled by parent grid */

.about-heading {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark-green);
  margin-bottom: 20px;
}

.about-text {
  color: var(--gray-700);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.9;
}

.about-text strong {
  color: var(--dark-green);
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0 36px;
}

.af-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* .af-icon styles now handled by the Font Awesome override section below */

/* =============================================
   FEATURES
   ============================================= */
.features {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.features-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--dark-green) 0%, #0E1E17 50%, var(--green) 100%);
}

.features-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.features .container {
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation: fade-in-up 0.6s ease both;
}

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

.feature-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 8px rgba(201, 168, 76, 0.3));
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
}

/* =============================================
   FACILITIES
   ============================================= */
.facilities {
  padding: 120px 0;
  background: var(--white);
}

.facilities-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.facility-item {
  display: grid;
  grid-template-columns: 80px 1fr 280px;
  align-items: center;
  gap: 40px;
  padding: 56px 0;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.facility-item:last-child {
  border-bottom: none;
}

.facility-item:hover {
  background: var(--off-white);
  margin: 0 -24px;
  padding: 56px 24px;
  border-radius: var(--radius-md);
}

.facility-item.reverse {
  grid-template-columns: 280px 1fr 80px;
}

.facility-item.reverse .fac-content {
  order: 2;
}

.facility-item.reverse .fac-visual {
  order: 1;
}

.facility-item.reverse .fac-number {
  order: 3;
  text-align: left;
}

.fac-number {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.facility-item:hover .fac-number {
  color: rgba(201, 168, 76, 0.2);
}

.fac-content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.fac-icon-wrap {
  font-size: 2.8rem;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.facility-item:hover .fac-icon-wrap {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: var(--gold);
  filter: drop-shadow(0 4px 12px rgba(201, 168, 76, 0.4));
}

.fac-text h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark-green);
  margin-bottom: 10px;
}

.fac-text p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.9;
  margin-bottom: 16px;
}

.fac-text p strong {
  color: var(--dark-green);
}

.fac-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.fac-stat {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(46, 93, 70, 0.08);
  padding: 4px 12px;
  border-radius: 99px;
}

.fac-stat strong {
  color: var(--dark-green);
}

.fac-stat-div {
  color: var(--gray-200);
}

.fac-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fac-shape {
  width: 220px;
  height: 180px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

/* ---- Market Brand Header ---- */
.fac-brand-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-200);
}

.fac-brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 4px 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.fac-brand-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fac-brand-chain {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fac-brand-info h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark-green);
  margin: 0;
}

/* ---- Market Visual Card ---- */
.fac-market-card {
  width: 160px;
  height: 130px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--white), var(--gray-100));
  border: 2px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.fac-market-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.facility-item:hover .fac-market-card {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.15);
  transform: translateY(-4px);
}

.fac-market-logo {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.fac-market-branch {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gray-500);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 3px 14px;
  border-radius: 99px;
  letter-spacing: 0.5px;
}

.s1 {
  background: linear-gradient(135deg, #1B5E42, #2E7D5A, #4CAF75);
}

.s2 {
  background: linear-gradient(135deg, #1A237E, #283593, #3F51B5);
}

.s3 {
  background: linear-gradient(135deg, #4A148C, #6A1B9A, #9C27B0);
}

.s4 {
  background: linear-gradient(135deg, #BF360C, #D84315, #FF5722);
}

.s5 {
  background: linear-gradient(135deg, #1B5E20, #2E7D32, #4CAF50);
}

.s6 {
  background: linear-gradient(135deg, #006064, #00838F, #26C6DA);
}

.fac-shape::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='rgba(255,255,255,0.07)'%3E%3Cpath d='M0 0h20v20H0zM20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
}

/* =============================================
   BRANDS SLIDER
   ============================================= */
.brands-sec {
  padding: 80px 0 60px;
  background: var(--off-white);
  overflow: hidden;
}

.brands-slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.brands-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: brands-scroll 28s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

@keyframes brands-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50%);
  }
}

.brand-slide {
  flex-shrink: 0;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  min-width: 160px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: default;
}

.brand-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.15);
  transform: translateY(-4px);
}

.brand-card img {
  height: 60px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: var(--transition);
}

.brand-card:hover img {
  filter: grayscale(0%);
}

.brand-card span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-700);
  text-align: center;
  white-space: nowrap;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Coming Soon Card */
.brand-card-soon {
  border-color: rgba(201, 168, 76, 0.3);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), rgba(201, 168, 76, 0.08));
  gap: 10px;
  min-width: 150px;
}

.brand-card-soon:hover {
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.12);
}

.brand-soon-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.4s ease-in-out infinite;
}

.brand-soon-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-align: center;
  line-height: 1.5;
  white-space: normal !important;
  max-width: unset !important;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.gallery-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0E1E17 0%, #1B3A2D 40%, #0E1E17 100%);
}

.gallery .container {
  position: relative;
  z-index: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.g-large {
  grid-row: 1 / 3;
}

.g-wide {
  grid-column: 2 / 4;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.gallery-placeholder:hover {
  transform: scale(1.02);
}

.gallery-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  transition: var(--transition);
}

.gallery-placeholder:hover::before {
  background: rgba(201, 168, 76, 0.1);
}

.gp1 {
  background: linear-gradient(135deg, #1B3A2D, #2E5D46, #4a8a68);
}

.gp2 {
  background: linear-gradient(135deg, #2D1B33, #4A2B5C, #6B3F85);
}

.gp3 {
  background: linear-gradient(135deg, #331B1B, #5C2B2B, #853F3F);
}

.gp4 {
  background: linear-gradient(135deg, #1B3320, #2B5C35, #3F854A);
}

.gp5 {
  background: linear-gradient(135deg, #1B2433, #2B3D5C, #3F5985);
}

.gp6 {
  background: linear-gradient(135deg, #332E1B, #5C541B, #85793F);
}

.gp-content {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.gp-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.gp-content span:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 14px;
  border-radius: 99px;
}

/* =============================================
   LOCATION
   ============================================= */
.location-sec {
  padding: 120px 0;
  background: var(--off-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.loc-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.loc-detail:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.1);
  transform: translateX(-4px);
}

.loc-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.loc-detail h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.loc-detail p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-green);
}

.loc-detail a {
  color: var(--dark-green);
}

.loc-detail a:hover {
  color: var(--gold-dark);
}

.location-map {
  position: sticky;
  top: 100px;
}

.map-wrapper {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}

.map-overlay-btn {
  margin-top: 16px;
  text-align: center;
}

.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-map:hover {
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 58, 45, 0.35);
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0E1E17, #1B3A2D 50%, #0E1E17);
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
  max-width: 550px;
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.93rem;
  padding: 14px 18px;
  outline: none;
  transition: var(--transition);
  direction: rtl;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-group select option {
  background: var(--dark-green);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.45);
}

.btn-arrow {
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-submit:hover .btn-arrow {
  transform: translateX(-4px);
}

.form-success {
  display: none;
  background: rgba(46, 93, 70, 0.3);
  border: 1px solid rgba(46, 93, 70, 0.5);
  color: #80cf9f;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.form-success.show {
  display: block;
  animation: fade-in-up 0.4s ease;
}



.contact-brand {
  text-align: center;
}

.contact-logo {
  width: 180px;
  margin: 0 auto 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.contact-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.clink-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: var(--transition);
}

a.clink-item:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateX(-4px);
}

.clink-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.clink-item small {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.clink-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 700;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
}

.footer-top {
  padding: 72px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  height: 60px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.87rem;
  line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-right: 6px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.45);
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-dev-divider {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
}

.footer-dev {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.8rem;
  margin-bottom: 0 !important;
}

.footer-dev a {
  color: var(--gold-dark);
  font-weight: 700;
  transition: var(--transition);
}

.footer-dev a:hover {
  color: var(--gold-light);
}

.footer-dev a i {
  font-size: 0.65rem;
  vertical-align: middle;
  margin-right: 2px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.8rem;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  border: none;
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.55);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 520px;
    margin: 0 auto;
  }

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

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

  .location-map {
    position: relative;
    top: auto;
  }

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

  .facility-item {
    grid-template-columns: 60px 1fr;
  }

  .facility-item .fac-visual {
    display: none;
  }

  .facility-item.reverse {
    grid-template-columns: 1fr 60px;
  }

  .facility-item.reverse .fac-content {
    order: 1;
  }

  .facility-item.reverse .fac-number {
    order: 2;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(14, 30, 23, 0.98);
    padding: 20px;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

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

  .nav-toggle {
    display: flex;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .stat-divider {
    width: 80px;
    height: 1px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .g-large,
  .g-wide {
    grid-row: auto;
    grid-column: auto;
  }

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

  .footer-bottom .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

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

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

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

  .facility-item {
    grid-template-columns: 1fr;
  }

  .facility-item .fac-number {
    display: none;
  }

  .facility-item.reverse {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   FONT AWESOME ICON OVERRIDES
   ============================================= */

/* Feature Cards Icons */
.feature-icon i {
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.25));
}

.feature-card:hover .feature-icon i {
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 4px 14px rgba(201, 168, 76, 0.45));
}

/* Facility Icon Wrap */
.fac-icon-wrap i {
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}

.facility-item:hover .fac-icon-wrap i {
  color: var(--dark);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

/* About Features List Icons */
.af-icon {
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
}

/* Gallery Placeholder Icons */
.gp-icon {
  font-size: 2.8rem;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: var(--transition);
  margin-bottom: 4px;
}

.gallery-placeholder:hover .gp-icon {
  color: var(--white);
  transform: scale(1.1);
  filter: drop-shadow(0 4px 16px rgba(201, 168, 76, 0.45));
}

/* Location Detail Icons */
.loc-icon i {
  font-size: 1.4rem;
  color: var(--gold-dark);
  transition: var(--transition);
}

.loc-detail:hover .loc-icon i {
  color: var(--gold);
  transform: scale(1.1);
}

/* About Badge Icons */
.about-badge-float .icon-loc {
  font-size: 1.4rem;
  color: var(--gold-dark);
}

/* Contact Links Icons */
.clink-icon i {
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
}

a.clink-item:hover .clink-icon i {
  color: var(--gold-light);
  transform: scale(1.1);
}

/* Map Button Icon */
.btn-map i {
  font-size: 1rem;
}

/* Footer Contact Icons */
.footer-contact i {
  color: var(--gold-dark);
  margin-left: 4px;
  font-size: 0.85rem;
}

/* Back to Top Button Icon */
.back-to-top i {
  font-size: 1rem;
  color: var(--dark);
}

/* =============================================
   FLOATING TOAST NOTIFICATION
   ============================================= */
.toast-card {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 380px;
  padding: 16px;
  z-index: 1000;
  display: flex;
  align-items: center;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: translateX(120%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.toast-card.show {
  transform: translateX(0);
}

.toast-card.glass {
  background: rgba(14, 30, 23, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.toast-content {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 14px;
  position: relative;
}

.toast-icon {
  width: 48px;
  height: 48px;
  background: #25d366;
  /* WhatsApp Green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1.6rem;
}

.toast-icon.pulse {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.toast-info {
  flex-grow: 1;
}

.toast-info h6 {
  color: var(--white);
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.toast-info p {
  color: rgba(255, 255, 255, 0.6);
  margin: 2px 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
}

.btn-toast {
  background: var(--gold);
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-toast:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.toast-close {
  position: absolute;
  top: -10px;
  left: -10px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.toast-close:hover {
  background: #ff4444;
  color: #fff;
}

@media (max-width: 768px) {
  .toast-card {
    width: calc(100% - 32px);
    right: 16px;
    bottom: 110px;
  }
}

/* =============================================
   FOOTER SOCIAL LINKS
   ============================================= */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-light);
  font-size: 1.1rem;
  transition: var(--transition);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(201, 168, 76, 0.3);
}

/* =============================================
   FLOATING SOCIAL BAR
   ============================================= */
.floating-social-bar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 999;
}

.floating-social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
  box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.floating-social-bar a:hover {
  width: 54px;
  padding-left: 10px;
}

.fs-facebook {
  background: #1877F2;
  border-radius: 0 8px 0 0;
}
.fs-facebook:hover { background: #166FE5; }

.fs-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.fs-instagram:hover { filter: brightness(1.1); }

.fs-tiktok {
  background: #000000;
  border-radius: 0 0 8px 0;
}
.fs-tiktok:hover { background: #111111; }

@media (max-width: 768px) {
  .floating-social-bar {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    background: rgba(14, 30, 23, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding: 8px 0;
    gap: 15px;
    z-index: 1001;
  }

  .floating-social-bar a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: none;
  }
  
  .floating-social-bar a:hover {
    width: 40px;
    padding-left: 0;
    transform: translateY(-3px);
  }
}