/* PureTibb - Hakeem Syed Alam Shah's 100% Natural Remedies
   Main Stylesheet - Custom Modern CSS
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Naskh+Arabic:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #0d9b4d;
  --primary-dark: #076d35;
  --primary-light: #e8f7ee;
  --secondary-color: #f59e0b;
  --secondary-dark: #d97706;
  --accent-red: #dc2626;
  --accent-gold: #d4af37;
  
  --dark-text: #1e293b;
  --muted-text: #64748b;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --border-color: #e2e8f0;
  
  --font-en: 'Outfit', 'Poppins', sans-serif;
  --font-ur: 'Noto Naskh Arabic', 'Jameel Noori Nastaleeq', 'Segoe UI', Tahoma, sans-serif;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 15px rgba(13, 155, 77, 0.12);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-en);
  color: var(--dark-text);
  background-color: #fafdfb;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography & Utilities */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.urdu-text {
  font-family: var(--font-ur);
  direction: rtl;
  text-align: right;
  line-height: 1.9;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title .badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-light);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title h2 {
  font-size: 2.3rem;
  color: #0f2419;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--muted-text);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Top Announcement Bar */
.top-bar {
  background: linear-gradient(135deg, #076d35, #0d9b4d);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-info span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-announcement {
  font-weight: 600;
  background: rgba(255,255,255,0.15);
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Header & Navigation */
.main-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--muted-text);
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.98rem;
  color: #334155;
  position: relative;
  padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, #0d9b4d, #097a3b);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(13, 155, 77, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 155, 77, 0.4);
  background: linear-gradient(135deg, #097a3b, #055829);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: #e2e8f0;
  color: var(--primary-color);
}

.btn-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-text);
}

/* Green Arch Hero Showcase Section */
.hero-banner-header {
  text-align: center;
  margin-bottom: 30px;
}

.hero-banner-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0b1f15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-banner-sub {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-arch-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto 40px;
  padding: 60px 20px 0;
  text-align: center;
}

.hero-arch-bg {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 780px;
  height: 380px;
  background: linear-gradient(180deg, #0d9b4d 0%, #066e34 100%);
  border-radius: 400px 400px 0 0;
  z-index: 1;
  box-shadow: 0 15px 40px rgba(13, 155, 77, 0.25);
  overflow: hidden;
}

.hero-arch-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/banner-round-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.four-bottles-showcase {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 20px;
}

.bottle-item-single {
  position: relative;
  transition: var(--transition);
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3));
  flex: 1;
  max-width: 200px;
}

.bottle-item-single img {
  height: 300px;
  width: 100%;
  aspect-ratio: 450 / 700;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.bottle-item-single:hover {
  transform: translateY(-8px) scale(1.04);
  z-index: 10;
}

.bottle-item-single .bottle-label-badge {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.88);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-bottom-info {
  text-align: center;
  margin-top: 20px;
}

.hero-ctas-center {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

@media (max-width: 640px) {
  .bottle-item-single img {
    height: 180px;
  }
  .hero-banner-title {
    font-size: 1.5rem;
  }
  .hero-banner-sub {
    font-size: 1rem;
  }
}

/* Spotlight Section - Compact Alternating Showcase for All 4 Bottles */
.spotlight-section {
  padding: 50px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.spotlight-container-wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.spotlight-box {
  background: linear-gradient(145deg, #ffffff, #f4fbf7);
  border-radius: var(--radius-md);
  border: 1px solid rgba(13, 155, 77, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  padding: 30px 40px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 35px;
  align-items: center;
  transition: var(--transition);
}

.spotlight-box.reverse {
  grid-template-columns: 1.15fr 0.85fr;
}

.spotlight-box.reverse .spotlight-img-holder {
  order: 2;
}

.spotlight-box.reverse .spotlight-content {
  order: 1;
}

.spotlight-box:hover {
  box-shadow: 0 12px 35px rgba(13, 155, 77, 0.12);
  border-color: var(--primary-color);
}

.spotlight-img-holder {
  position: relative;
  text-align: center;
  background: radial-gradient(circle, rgba(13, 155, 77, 0.1) 0%, rgba(255, 255, 255, 0) 75%);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spotlight-img-holder img {
  height: 260px;
  width: auto;
  aspect-ratio: 450 / 700;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.18));
  transition: var(--transition);
}

.spotlight-box:hover .spotlight-img-holder img {
  transform: scale(1.05);
}

.spotlight-header-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tag-red {
  background: #fee2e2;
  color: #dc2626;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.82rem;
}

.tag-green {
  background: #dcfce7;
  color: #166534;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.82rem;
}

.tag-gold {
  background: #fef3c7;
  color: #b45309;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.82rem;
}

.spotlight-title-en {
  font-size: 1.8rem;
  color: #074e26;
  margin-bottom: 2px;
}

.spotlight-subtitle-ur {
  font-size: 1.25rem;
  color: #d97706;
  font-weight: 700;
  margin-bottom: 12px;
}

.spotlight-price-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 10px;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid var(--border-color);
}

.current-price {
  font-size: 1.7rem;
  font-weight: 800;
  color: #dc2626;
}

.old-price {
  font-size: 1.15rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.discount-badge {
  background: #dcfce7;
  color: #15803d;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.82rem;
}

.benefits-grid-ur {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.benefit-item-ur {
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.02);
}

.benefit-item-ur i {
  color: var(--primary-color);
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .spotlight-box, .spotlight-box.reverse {
    grid-template-columns: 1fr;
  }
  .spotlight-box.reverse .spotlight-img-holder {
    order: 1;
  }
  .spotlight-box.reverse .spotlight-content {
    order: 2;
  }
  .benefits-grid-ur {
    grid-template-columns: 1fr;
  }
}

/* Products Catalog Grid - Strictly 1 Single Line (4 Columns) */
.products-section {
  padding: 80px 0;
  background: #f8fafc;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .products-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
  }
  .products-grid .product-card {
    min-width: 260px;
    flex: 0 0 260px;
    scroll-snap-align: start;
  }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 155, 77, 0.4);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
}

.product-badge.red {
  background: #dc2626;
}

.product-badge.gold {
  background: #d97706;
}

.product-img-box {
  background: radial-gradient(circle, #f1f8f4 0%, #ffffff 100%);
  padding: 25px 15px;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-img-box img {
  height: 240px;
  width: 100%;
  max-width: 170px;
  aspect-ratio: 450 / 700;
  object-fit: contain;
  margin: 0 auto;
  transition: var(--transition);
}

.product-card:hover .product-img-box img {
  transform: scale(1.06);
}

.product-details {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.4rem;
  color: #0f172a;
  margin-bottom: 4px;
}

.product-title-ur {
  font-family: var(--font-ur);
  font-size: 1.15rem;
  color: var(--secondary-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.product-desc {
  font-size: 0.92rem;
  color: var(--muted-text);
  margin-bottom: 18px;
  line-height: 1.5;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.product-price-box {
  display: flex;
  flex-direction: column;
}

.price-main {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.price-old {
  font-size: 0.9rem;
  color: #94a3b8;
  text-decoration: line-through;
}

/* Why PureTibb Section */
.why-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #074e26, #0d9b4d);
  color: var(--white);
  position: relative;
}

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

.why-content h2 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.why-content p {
  color: #e2f7eb;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-text-info h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.feature-text-info p {
  color: #d1fae5;
  font-size: 0.95rem;
  margin: 0;
}

.why-img-holder {
  text-align: center;
}

.why-img-holder img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Pricing Packages Section */
.packages-section {
  padding: 90px 0;
  background: #ffffff;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.package-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-color);
  padding: 35px 25px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.package-card.popular {
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(13, 155, 77, 0.15);
  transform: scale(1.03);
}

.popular-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.package-subtitle {
  font-size: 0.92rem;
  color: var(--muted-text);
  margin-bottom: 20px;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.package-save {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.88rem;
  margin-bottom: 25px;
}

.package-features {
  text-align: left;
  margin-bottom: 30px;
  flex-grow: 1;
}

.package-features li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-color);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.package-features li i {
  color: var(--primary-color);
}

/* Order Form Section */
.order-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #edf7f2 100%);
  border-top: 1px solid var(--border-color);
}

.order-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border: 1px solid rgba(13, 155, 77, 0.2);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.order-info-side {
  background: linear-gradient(135deg, #074e26, #0d9b4d);
  color: var(--white);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.order-info-side h3 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.order-info-side p {
  color: #d1fae5;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.guarantee-box-white {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.guarantee-box-white i {
  font-size: 2.5rem;
  color: #f59e0b;
}

.guarantee-box-white div h5 {
  color: #ffffff;
  font-size: 1.1rem;
}

.guarantee-box-white div p {
  color: #e2f7eb;
  font-size: 0.88rem;
  margin: 0;
}

.order-form-side {
  padding: 50px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: #334155;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 155, 77, 0.15);
}

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

.summary-card {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.95rem;
}

.summary-row.total {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary-dark);
  border-top: 1px solid var(--border-color);
  padding-top: 10px;
  margin-top: 6px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 90px 0;
  background: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #fafdfb;
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: #334155;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.user-info h5 {
  font-size: 1.05rem;
}

.user-info span {
  font-size: 0.82rem;
  color: var(--muted-text);
}

/* FAQ Section */
.faq-section {
  padding: 90px 0;
  background: #f8fafc;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--muted-text);
  font-size: 0.98rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary-color);
}

/* Footer */
.main-footer {
  background: #091a11;
  color: #94a3b8;
  padding: 70px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary-color);
}

.footer-about-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
}

.footer-contact-info i {
  color: var(--primary-color);
  margin-top: 4px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.88rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulseWhatsapp 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: var(--white);
}

@keyframes pulseWhatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid, .spotlight-box, .why-grid, .order-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #ffffff;
    flex-direction: column;
    padding: 40px 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid-ur {
    grid-template-columns: 1fr;
  }
  
  .order-info-side, .order-form-side {
    padding: 30px 20px;
  }
}
