/* ============================================
   CityPearl Super Market - Premium Stylesheet
   ============================================ */

:root {
  --primary: #16A34A;
  --primary-dark: #15803D;
  --primary-light: #DCFCE7;
  --secondary: #F59E0B;
  --secondary-dark: #D97706;
  --secondary-light: #FEF3C7;
  --bg: #FFFFFF;
  --bg-light: #F8FAFC;
  --text: #1F2937;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Poppins', var(--font);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.35);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: var(--radius-full);
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.header:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.header:not(.scrolled) .nav-link:hover,
.header:not(.scrolled) .nav-link.active {
  color: #fff;
}

.header:not(.scrolled) .menu-toggle span {
  background: #fff;
}

.header:not(.scrolled) .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.header:not(.scrolled) .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-img--footer {
  height: 52px;
  margin-bottom: 0.25rem;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.header:not(.scrolled) .logo-name {
  color: #fff;
}

.logo-icon {
  width: 42px;
  height: 42px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.logo-text span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.25rem 0;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.header-actions .btn-call {
  display: none;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(15, 23, 42, 0.6) 50%,
    rgba(22, 163, 74, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-title .highlight {
  color: var(--secondary);
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  transition: all var(--transition);
}

.hero-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.hero-card--highlight {
  background: rgba(37, 211, 102, 0.22);
  border: 1px solid rgba(37, 211, 102, 0.45);
}

.hero-card--highlight:hover {
  background: rgba(37, 211, 102, 0.32);
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(22, 163, 74, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.25rem;
}

.hero-card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-card p {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(22, 163, 74, 0.5));
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-hero-desc {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

/* ============================================
   Feature Cards
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  transform: scale(1.05);
}

.feature-card:hover .feature-icon svg {
  stroke: #fff;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   Category Cards
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  group: category;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition: background var(--transition);
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(22, 163, 74, 0.85) 0%, rgba(22, 163, 74, 0.2) 60%);
}

.category-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

/* ============================================
   Tracking Section
   ============================================ */
.tracking-section {
  background: var(--bg-light);
}

/* WhatsApp Live Tracking Banner */
.whatsapp-tracking-banner {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 50%, #16A34A 100%);
  padding: 2.5rem 0;
  color: #fff;
}

.whatsapp-tracking-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.whatsapp-tracking-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: whatsapp-pulse 2s ease-in-out infinite;
  padding: 6px;
}

.whatsapp-tracking-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35); }
  50% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
}

.whatsapp-tracking-text {
  flex: 1;
  min-width: 220px;
}

.whatsapp-tracking-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.whatsapp-tracking-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.whatsapp-tracking-text p {
  font-size: 0.9375rem;
  opacity: 0.92;
  line-height: 1.6;
  max-width: 560px;
}

.btn-whatsapp {
  background: #fff;
  color: #128C7E;
  border: 2px solid #fff;
  font-weight: 700;
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tracking-section .btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.tracking-section .btn-whatsapp:hover {
  background: #128C7E;
  color: #fff;
  border-color: #128C7E;
}

.tracking-whatsapp-points {
  list-style: none;
  margin-bottom: 0.5rem;
}

.tracking-whatsapp-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.tracking-whatsapp-points li::before {
  content: '✓';
  color: #25D366;
  font-weight: 700;
  flex-shrink: 0;
}

.flow-step--whatsapp .flow-icon {
  background: rgba(37, 211, 102, 0.2);
  border: 2px solid rgba(37, 211, 102, 0.35);
}

.flow-step--whatsapp:hover .flow-icon {
  background: #25D366;
}

.tracking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tracking-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 2rem;
  background: var(--bg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.flow-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  transition: all var(--transition);
}

.flow-step:hover .flow-icon {
  background: var(--primary);
  transform: scale(1.1);
}

.flow-step span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

.flow-arrow {
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ============================================
   Delivery Section
   ============================================ */
.delivery-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  overflow: hidden;
}

.delivery-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.delivery-content .section-label {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.delivery-content .section-title {
  color: #fff;
  text-align: left;
}

.delivery-content .section-desc {
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
  margin-bottom: 2rem;
}

.delivery-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.delivery-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  transition: all var(--transition);
}

.delivery-feature:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}

.delivery-feature-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.delivery-feature span {
  font-size: 0.9375rem;
  font-weight: 500;
}

.delivery-image {
  position: relative;
}

.delivery-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.delivery-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--secondary);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   Statistics
   ============================================ */
.stats-section {
  background: var(--bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-section {
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.testimonial-info h4 {
  font-size: 0.9375rem;
  font-weight: 600;
}

.testimonial-info span {
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.94), rgba(21, 128, 61, 0.9));
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-banner-desc {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================
   About Page
   ============================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mv-card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.mv-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.mv-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.trust-section {
  background: var(--bg-light);
}

.trust-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.trust-item:last-child {
  margin-bottom: 0;
}

.trust-item.reverse {
  direction: rtl;
}

.trust-item.reverse > * {
  direction: ltr;
}

.trust-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.trust-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.trust-image:hover img {
  transform: scale(1.05);
}

.trust-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.trust-content p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   Services Page
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  transition: height var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.service-card:hover::before {
  height: 100%;
}

.service-card-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.service-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

.workflow-section {
  background: var(--bg-light);
}

.workflow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 120px;
  position: relative;
}

.workflow-number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
  position: relative;
  z-index: 1;
}

.workflow-step h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.workflow-step p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 0 0.5rem;
}

.workflow-connector {
  flex: 0 0 40px;
  height: 2px;
  background: var(--primary-light);
  margin-top: 28px;
  position: relative;
}

.workflow-connector::after {
  content: '→';
  position: absolute;
  right: -4px;
  top: -10px;
  color: var(--primary);
  font-size: 0.875rem;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.contact-info-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.contact-info-text a:hover {
  color: var(--primary);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-light);
  border: 1px solid var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

.contact-map-link {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--bg);
  border-top: 1px solid var(--border);
  transition: background var(--transition);
}

.contact-map-link:hover {
  background: var(--primary-light);
}

.contact-form-wrapper {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-light);
  color: var(--text);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

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

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

.form-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #0F172A;
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
  color: #fff;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 1rem;
  opacity: 0.75;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  font-size: 0.9375rem;
  opacity: 0.75;
  transition: all var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  opacity: 0.75;
}

.footer-contact li span:first-child {
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1rem;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.6;
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

/* ============================================
   Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-cards { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .tracking-wrapper,
  .delivery-wrapper,
  .about-intro,
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item,
  .trust-item.reverse { grid-template-columns: 1fr; direction: ltr; }
  .flow-arrow { display: none; }
  .tracking-flow { justify-content: center; gap: 1.5rem; }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .section { padding: 3rem 0; }

  .container { padding: 0 1rem; }

  .header-inner { gap: 0.5rem; }

  .logo { gap: 0.5rem; min-width: 0; }

  .logo-img { height: 40px; }

  .logo-name { font-size: 1.05rem; }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    width: 100%;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted) !important;
  }

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

  .menu-toggle { display: flex; }

  .header-actions .btn-order { display: none; }

  .header-actions .btn-call {
    display: inline-flex;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
  }

  .hero-cards { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 1.5rem); padding-bottom: 2.5rem; }

  .hero-title { font-size: clamp(1.75rem, 8vw, 2.5rem); margin-bottom: 1rem; }

  .hero-desc { font-size: 0.9375rem; margin-bottom: 1.5rem; }

  .hero-buttons { margin-bottom: 2rem; }

  .hero-cards { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  .hero-card { padding: 1rem 0.75rem; }

  .hero-card-icon { width: 36px; height: 36px; font-size: 1rem; }

  .hero-card h4 { font-size: 0.8125rem; }

  .hero-card p { font-size: 0.6875rem; }

  .section-header { margin-bottom: 2rem; }

  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }

  .page-hero { padding: calc(var(--header-height) + 2.5rem) 0 2.5rem; }

  .page-hero-title { font-size: clamp(1.75rem, 7vw, 2.25rem); }

  .page-hero-desc { font-size: 1rem; }

  .tracking-flow { padding: 1.25rem; gap: 1rem; }

  .flow-step { min-width: 70px; }

  .flow-icon { width: 48px; height: 48px; font-size: 1.25rem; }

  .delivery-content .section-title,
  .delivery-content .section-desc { text-align: center; }

  .contact-map iframe { height: 220px; }

  .contact-form-wrapper { padding: 1.5rem; }

  .about-image img,
  .trust-image img { height: 260px; }

  .features-grid,
  .services-grid,
  .mission-vision,
  .delivery-features,
  .form-row { grid-template-columns: 1fr; }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }

  .category-card { aspect-ratio: 1; }

  .category-overlay { padding: 0.875rem; }

  .category-name { font-size: 0.875rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .workflow-connector { display: none; }
  .workflow-steps { flex-direction: column; align-items: center; gap: 1.5rem; }
  .delivery-badge { position: static; margin-top: 1rem; display: inline-block; }

  .whatsapp-tracking-inner {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-tracking-text p { margin: 0 auto; }

  .btn-whatsapp { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .logo-name { font-size: 0.95rem; }

  .logo-img { height: 36px; }

  .header-actions .btn-call span,
  .header-actions .btn-call { font-size: 0; padding: 0.5rem; width: 2.25rem; height: 2.25rem; }

  .header-actions .btn-call svg { margin: 0; }

  .hero-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }

  .hero-card { padding: 0.875rem 0.625rem; }

  .hero-card h4 { font-size: 0.75rem; }

  .hero-card p { font-size: 0.625rem; }

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

  .hero-buttons,
  .cta-banner-buttons,
  .form-buttons { flex-direction: column; }

  .hero-buttons .btn,
  .cta-banner-buttons .btn,
  .form-buttons .btn { width: 100%; }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .category-name { font-size: 0.8125rem; }

  .stat-item { padding: 1.5rem 1rem; }

  .testimonial-card { padding: 1.5rem; }

  .service-card { padding: 1.75rem; }

  .footer-grid { gap: 1.5rem; }
}
