/* ===== CSS Variables ===== */
:root {
  --primary: #DC2626;
  --primary-dark: #991B1B;
  --primary-light: #F97316;
  --gold: #D4AF37;
  --gold-light: #F4D03F;
  --gold-dark: #B8860B;
  --cream: #FFF8F0;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  --dark-2: #2A2A2A;
  --gray: #F5F5F5;
  --text: #1A1A1A;
  --text-light: #666;
  --danger: #DC2626;
  --success: #16A34A;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-hover: 0 15px 50px rgba(0,0,0,0.15);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1300px;
  --section-padding: 100px;
}

/* Dark Mode */
body.dark {
  --white: #0F0F0F;
  --cream: #1A1A1A;
  --gray: #1F1F1F;
  --text: #FFFFFF;
  --text-light: #AAAAAA;
  --dark: #FFFFFF;
  --dark-2: #E0E0E0;
  background: #0F0F0F;
}

/* ===== Reset ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.4s, color 0.4s;
}

body[dir="ltr"] {
  font-family: 'Poppins', 'Tajawal', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

img { max-width: 100%; height: auto; display: block; }

/* ===== Container ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Preloader ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  color: #fff;
}

.preloader-logo {
  font-size: 90px;
  animation: bounce 1s infinite alternate;
  margin-bottom: 20px;
}

.preloader-text {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 25px;
  letter-spacing: 3px;
  color: var(--gold-light);
}

.preloader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 5px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar span {
  display: block;
  height: 100%;
  background: var(--gold-light);
  border-radius: 5px;
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% { width: 0; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

body.dark .header.scrolled {
  background: #0F0F0F;
  border-bottom: 1px solid #2A2A2A;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-img {
  height: 60px;
  width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 4px 15px rgba(220,38,38,0.3));
}

.header.scrolled .logo-img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  padding: 8px 0;
  position: relative;
}

.header.scrolled .nav-links a {
  color: var(--text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-icon {
  background: rgba(255,255,255,0.15);
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: var(--transition);
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  backdrop-filter: blur(10px);
}

.header.scrolled .btn-icon {
  background: var(--gray);
  color: var(--text);
}

.btn-icon:hover {
  background: var(--gold);
  transform: scale(1.1);
}

.cart-badge .badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  padding: 3px 7px;
  border-radius: 50%;
  font-weight: 800;
  min-width: 20px;
  border: 2px solid #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: var(--transition);
}

.header.scrolled .hamburger span {
  background: var(--text);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-family: inherit;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(220,38,38,0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220,38,38,0.5);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(212,175,55,0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212,175,55,0.5);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

.btn-lg {
  padding: 18px 45px;
  font-size: 18px;
}

/* ===== Hero Slider ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 8s ease;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(153,27,27,0.65) 50%, rgba(0,0,0,0.7) 100%);
}

.slide-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.slide-content .container {
  width: 100%;
}

.slide-subtitle {
  display: inline-block;
  background: rgba(212,175,55,0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  animation: slideDown 0.8s ease;
}

.slide-title {
  font-size: 72px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 25px;
  animation: slideUp 0.8s ease 0.2s backwards;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.slide-title .highlight {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.slide-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 8px;
  right: 0;
  left: 0;
  height: 12px;
  background: rgba(212,175,55,0.3);
  border-radius: 10px;
  z-index: -1;
}

.slide-desc {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
  animation: slideUp 0.8s ease 0.4s backwards;
}

.slide-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease 0.6s backwards;
}

.slide-buttons .btn-outline {
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.05);
}

.slide-buttons .btn-outline:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
  z-index: 10;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { right: 30px; }
.slider-arrow.next { left: 30px; }

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 40px;
  height: 5px;
  background: rgba(255,255,255,0.3);
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--gold);
  width: 60px;
}

/* ===== Features Bar ===== */
.features-bar {
  background: var(--dark);
  padding: 30px 0;
  position: relative;
  z-index: 5;
  margin-top: -50px;
}

body.dark .features-bar {
  background: var(--primary-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  padding: 15px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.feature-item:last-child {
  border-right: none;
}

.feature-icon {
  font-size: 42px;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--gold-light);
}

.feature-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* ===== Section ===== */
.section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  background: rgba(220,38,38,0.1);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  border: 1px solid rgba(220,38,38,0.2);
}

.section-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--text);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
}

.section-footer {
  text-align: center;
  margin-top: 50px;
}

/* ===== Categories ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.category-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.category-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s;
}

.category-card:hover .category-bg {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
}

.category-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;
}

.category-emoji {
  font-size: 50px;
  margin-bottom: 10px;
  display: block;
  transition: transform 0.4s;
}

.category-card:hover .category-emoji {
  transform: scale(1.2) rotate(-10deg);
}

.category-content h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 5px;
}

.category-content p {
  font-size: 14px;
  color: var(--gold-light);
  font-weight: 600;
}

/* ===== Products Grid ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  cursor: pointer;
}

body.dark .product-card {
  border-color: rgba(255,255,255,0.05);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.product-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.product-card:hover .product-image img {
  transform: scale(1.15);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  z-index: 2;
}

.product-info {
  padding: 20px;
}

.product-brand {
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-name {
  font-size: 18px;
  font-weight: 800;
  margin: 8px 0;
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-light);
}

.product-prices {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.current-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
}

.old-price {
  font-size: 15px;
  color: var(--text-light);
  text-decoration: line-through;
}

.add-to-cart-btn {
  width: 100%;
  padding: 12px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  font-size: 15px;
}

.add-to-cart-btn:hover {
  background: var(--primary);
  transform: scale(1.02);
}

/* ===== Offers Banner ===== */
.offers-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.offers-banner::before {
  content: '🎁';
  position: absolute;
  top: 50%;
  right: 5%;
  font-size: 200px;
  opacity: 0.08;
  transform: translateY(-50%);
}

.offer-content {
  text-align: center;
  color: #fff;
}

.offer-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.offer-content h2 {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.2;
}

.offer-content p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.offer-content strong {
  background: var(--gold);
  color: var(--dark);
  padding: 5px 15px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 2px;
}

/* ===== Chef Section ===== */
.chef-section {
  background: var(--cream);
}

body.dark .chef-section {
  background: #151515;
}

.chef-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.chef-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.chef-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.chef-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 20px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.chef-badge span {
  display: block;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}

.chef-badge p {
  font-size: 14px;
  font-weight: 700;
  margin-top: 5px;
}

.chef-content h2 {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 20px;
}

.chef-bio {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 30px;
}

.chef-skills {
  margin-bottom: 30px;
}

.skill {
  margin-bottom: 20px;
}

.skill-name {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 15px;
}

.skill-bar {
  height: 10px;
  background: rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
}

body.dark .skill-bar {
  background: rgba(255,255,255,0.1);
}

.skill-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 10px;
  transition: width 1.5s ease;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220,38,38,0.85), rgba(153,27,27,0.85));
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ===== Testimonials ===== */
.testimonials-section {
  background: var(--gray);
}

body.dark .testimonials-section {
  background: #151515;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  transform: scale(1.05);
}

.testimonial-stars {
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-card.featured .testimonial-text {
  color: rgba(255,255,255,0.95);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.testimonial-card.featured .testimonial-author {
  border-top-color: rgba(255,255,255,0.2);
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  flex-shrink: 0;
}

.testimonial-author h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 3px;
}

.testimonial-author p {
  font-size: 13px;
  color: var(--text-light);
}

.testimonial-card.featured .testimonial-author p {
  color: rgba(255,255,255,0.8);
}

/* ===== Reserve CTA ===== */
.reserve-cta {
  background: linear-gradient(135deg, var(--dark), #000);
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.reserve-cta::before {
  content: '📅';
  position: absolute;
  top: -50px;
  left: -50px;
  font-size: 300px;
  opacity: 0.05;
}

.reserve-emoji {
  display: block;
  font-size: 70px;
  margin-bottom: 20px;
  animation: bounce 1.5s infinite alternate;
}

.reserve-content h2 {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--gold-light);
}

.reserve-content p {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Footer ===== */
.footer {
  background: #0A0A0A;
  color: #fff;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 15px rgba(220,38,38,0.4));
}

.footer-desc {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--gold-light);
  font-weight: 800;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-right: 8px;
}

.footer-col p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-col p a {
  color: var(--gold-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.footer-tagline {
  color: var(--gold);
  font-weight: 700;
  margin-top: 8px;
  letter-spacing: 2px;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(10deg);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 25px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== Scroll Top ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 8px 25px rgba(220,38,38,0.4);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px) scale(1.1);
}

/* ===== Toast ===== */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  padding: 15px 30px;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 700;
  animation: toastIn 0.4s ease;
  box-shadow: var(--shadow);
  background: var(--success);
  pointer-events: auto;
  min-width: 280px;
  text-align: center;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-15px); }
}