/* ============================================
   SNACKNEST KITCHEN - FULLY RESPONSIVE CSS
   Mobile-First Design Approach
   ============================================ */

/* --------------------------------------------
   CSS VARIABLES - Theme Control
   -------------------------------------------- */
:root {
  /* Primary Colors */
  --accent: #3B1F1A;
  --accent-light: #ff516e;
  --accent-glow: rgba(230, 35, 213, 0.4);

  /* Background Colors */
  --bg-start: #e08e54b2;
  --bg-end: #30201d96;
  --card-bg: #d4a27f8e;
  --card-hover: #f50000;
  --drawer-bg: #111111;

  /* Text Colors */
  --text-primary: #ffffff;
  --text-muted: #ffffff;
  --text-dark: #ffffff;

  /* Functional Colors */
  --whatsapp: #25D366;
  --success: #22c55e;
  --error: #ef4444;

  /* Fluid Spacing Scale */
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2rem, 4vw, 4rem);
  --space-2xl: clamp(3rem, 6vw, 6rem);

  /* Fluid Typography Scale */
  --text-xs: clamp(0.75rem, 1vw, 0.875rem);
  --text-sm: clamp(0.875rem, 1.2vw, 1rem);
  --text-base: clamp(0.9375rem, 1.5vw, 1rem);
  --text-lg: clamp(1rem, 2vw, 1.125rem);
  --text-xl: clamp(1.125rem, 2.5vw, 1.25rem);
  --text-2xl: clamp(1.25rem, 3vw, 1.5rem);
  --text-3xl: clamp(1.5rem, 4vw, 2rem);
  --text-4xl: clamp(1.75rem, 5vw, 2.5rem);
  --text-5xl: clamp(2rem, 6vw, 3.5rem);
  --text-6xl: clamp(2.5rem, 8vw, 4.5rem);

  /* Layout */
  --container-padding: clamp(1rem, 5vw, 6%);
  --card-radius: clamp(12px, 2vw, 16px);
  --btn-radius: 40px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 20px 50px rgba(255, 122, 0, 0.3);
}

/* --------------------------------------------
   BASE STYLES & RESET
   -------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, var(--bg-start) 0%, var(--bg-end) 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  padding: 0 var(--container-padding);
  max-width: 1400px;
  margin: 0 auto;
}

/* --------------------------------------------
   TYPOGRAPHY - FLUID & RESPONSIVE
   -------------------------------------------- */
.section-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  line-height: 1.2;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.accent-text {
  color: var(--accent);
}

/* --------------------------------------------
   BUTTONS - RESPONSIVE SIZING
   -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: clamp(12px, 2vw, 14px) clamp(20px, 3vw, 28px);
  border-radius: var(--btn-radius);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: var(--transition-normal);
  will-change: transform, box-shadow;
  white-space: nowrap;
  min-height: 44px; /* Touch-friendly */
}

.btn-primary {
  background: #C3422F;
  color: var(--text-primary);
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--text-primary);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  width: 100%;
  font-size: var(--text-base);
  padding: var(--space-sm);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-full {
  width: 100%;
}

.btn-add {
  background:#C3422F;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: var(--text-xs);
  font-weight: 600;
  transition: var(--transition-fast);
  min-height: 36px;
}

.btn-add:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.4);
}

.btn-add:active {
  transform: scale(0.95);
}

/* --------------------------------------------
   NAVBAR - MOBILE-FIRST GLASSMORPHISM
   -------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) var(--container-padding);
  animation: fadeInDown 0.6s ease-out;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--card-radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  gap: var(--space-sm);
}

.logo {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 800;
  color: #C3422F;
  flex-shrink: 0;
}

.logo-accent {
  color: var(--accent);
}

/* Desktop Navigation - Hidden on mobile */
.nav-links {
  display: none;
  align-items: center;
  gap: clamp(20px, 3vw, 30px);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 5px 0;
  white-space: nowrap;
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.cart-icon {
  position: relative;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition-normal);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon:hover {
  background: rgba(255, 122, 0, 0.1);
  color: var(--accent);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badgeBounce 0.3s ease;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
  background: rgba(255, 122, 0, 0.1);
  color: var(--accent);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* Dynamic viewport height for mobile */
  background: var(--drawer-bg);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  transition: var(--transition-slow);
  padding: var(--space-xl);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  color: var(--text-primary);
  font-size: 1.75rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  transform: rotate(90deg);
}

.mobile-nav-link {
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--text-primary);
  padding: var(--space-sm);
  transition: var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--accent);
  transform: scale(1.05);
}

/* --------------------------------------------
   HERO SECTION - RESPONSIVE
   -------------------------------------------- */
.hero {
  min-height: 90vh;
  min-height: 90dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0;
}
.hero-glow {
  position: absolute;
  top: -25%;
  right: -25%;
  width: clamp(400px, 60vw, 800px);
  height: clamp(400px, 60vw, 800px);

  background: radial-gradient(
    circle at center,
    rgba(255, 122, 0, 0.35) 0%,
    rgba(255, 122, 0, 0.15) 40%,
    transparent 70%
  );

  filter: blur(120px);
  opacity: 0.8;

  animation: glowFloat 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
  
@keyframes glowFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(-40px) translateX(-10px);
  }
  75% {
    transform: translateY(-20px) translateX(-10px);
  }
}

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

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 var(--container-padding);
  max-width: 1400px;
  margin: 0 auto;
  gap: var(--space-xl);
}

.hero-content {
  flex: 1;
  width: 100%;
  max-width: 100%;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  order: 2;
}

.hero-title {
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.hero-content {
  position: relative;
}

.hero-content .btn {
  position: relative;
  top: 35px;   /* 🔽 niche */
  left: 5px;  /* ➡️ right */

}
.hero-visual {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  order: 1;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: min(500px, 90vw);
}

.hero-image {
  width: 100%;
  border-radius: clamp(20px, 4vw, 30px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.2), transparent 70%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}
/* HERO SUBTITLE STYLE */
.hero-subtitle {
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: var(--text-lg);
  color: #C3422F;
  font-weight: 500;
  text-align: center;
}

/* CURSOR EFFECT */
#typing-subtitle::after {
  content: "|";
  margin-left: 6px;
  animation: blink 0.7s infinite;
  color: #C3422F;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* HERO GLOW PREMIUM */
.hero-glow {
  position: absolute;
  top: -25%;
  right: -25%;
  width: clamp(400px, 60vw, 800px);
  height: clamp(400px, 60vw, 800px);
  background: radial-gradient(circle, rgba(195, 66, 47, 0.35), transparent 70%);
  filter: blur(120px);
  opacity: 0.8;
  animation: glowFloat 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes glowFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

/* RESPONSIVE FIX */
@media (min-width: 769px) {
  .hero-subtitle {
    text-align: left;
    margin: 0;
  }
}

/* --------------------------------------------
   WHY CHOOSE US - RESPONSIVE GRID
   -------------------------------------------- */
.why-choose-us {
  padding: var(--space-2xl) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.feature-card {
  background: var(--card-bg);
  padding: clamp(30px, 5vw, 40px) clamp(20px, 4vw, 30px);
  border-radius: var(--card-radius);
  text-align: center;
  transition: var(--transition-slow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 122, 0, 0.2);
}

.feature-icon {
  width: clamp(60px, 10vw, 70px);
  height: clamp(70px, 10vw, 70px);
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.2), rgba(255, 122, 0, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  color:#C3422F;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255, 122, 0, 0.3);
}

.feature-title {
  font-size: var(--text-xl);
  font-weight: 600;
    color: #3B1F1A;
  margin-bottom: var(--space-xs);
}

.feature-desc {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
}

/* --------------------------------------------
   MENU SECTION - RESPONSIVE
   -------------------------------------------- */
.menu-section {
  padding: var(--space-2xl) 0;
}

.menu-categories {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.menu-category {
  animation: fadeInUp 0.6s ease-out both;
}

.category-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.menu-item {
  background:#e08e5446 ;
  padding: var(--space-md);
  border-radius: var(--card-radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  transition: var(--transition-slow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.63);
}

.menu-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.menu-item-name {
  font-size: var(--text-base);
  font-weight: 600;
  color: #3B1F1A;
  line-height: 1.3;
}

.menu-item-price {
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

/* --------------------------------------------
   CART DRAWER - RESPONSIVE
   -------------------------------------------- */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(182, 160, 160, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(380px, 100%);
  max-width: 100%;
  height: 100%;
  height: 100dvh;
  background: var(--drawer-bg);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  transition: var(--transition-slow);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.cart-drawer.active {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.cart-title {
  font-size: var(--text-lg);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.cart-title i {
  color: #C3422F;
}

.cart-close {
  background: none;
  color: var(--text-muted);
  font-size: 1.375rem;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.cart-close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md);
  -webkit-overflow-scrolling: touch;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.cart-empty i {
  font-size: clamp(3rem, 10vw, 4rem);
  margin-bottom: var(--space-md);
  opacity: 0.3;
}

.cart-empty p {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.cart-empty span {
  font-size: var(--text-sm);
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm);
  background: var(--card-bg);
  border-radius: 12px;
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  gap: var(--space-xs);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item-price {
  font-size: var(--text-xs);
   color: white;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.qty-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.4);
}

.qty-btn:active {
  transform: scale(0.95);
}

.cart-item-qty {
  font-size: var(--text-sm);
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-left: 4px;
  padding: 6px;
  transition: var(--transition-fast);
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.cart-item-remove:hover {
  color: var(--error);
  background: rgba(239, 68, 68, 0.1);
}

.cart-footer {
  padding: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--drawer-bg);
  flex-shrink: 0;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-base);
  margin-bottom: var(--space-md);
}

.cart-total {
  font-size: var(--text-xl);
  font-weight: 700;
 color: white;
}

/* --------------------------------------------
   SPECIAL OFFERS - RESPONSIVE
   -------------------------------------------- */
/* SECTION */
.specials-section {
  padding: var(--space-2xl) 0;
}

/* GRID */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

/* CARD */
.offer-card {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--card-radius);
   border-color: rgba(255, 255, 255, 0.63);
  padding: 2px;
  overflow: hidden;
  transition: var(--transition-slow);
}

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

/* GRADIENT BORDER */
.offer-gradient-border {
  position: absolute;
  inset: 0;
  border-radius: var(--card-radius);
  padding: 2px;
  background: conic-gradient(from 0deg, var(--accent), #ff5500, #ffaa00, var(--accent));
  animation: rotateGradient 4s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* IMAGE FRAME */
.offer-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: calc(var(--card-radius) - 2px) calc(var(--card-radius) - 2px) 0 0;
  position: relative;
  z-index: 1;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

/* IMAGE HOVER ZOOM */
.offer-card:hover .offer-image img {
  transform: scale(1.08);
}

/* IMAGE OVERLAY */
.offer-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4));
}

/* CONTENT */
.offer-content {
  background: var(--card-bg);
  border-radius: calc(var(--card-radius) - 2px);
  padding: clamp(25px, 5vw, 35px);
  position: relative;
  z-index: 1;
  height: 100%;
  margin-top: -10px; /* smooth connection with image */
}

/* BADGE */
.offer-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* TITLE */
.offer-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: #3B1F1A;
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

/* DESCRIPTION */
.offer-desc {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.offer-desc strong {
  color: var(--accent);
  font-weight: 600;
}

/* BUTTON (if not already defined) */
.btn {
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: #C3422F;
}

.btn-outline {
  border: 1px solid #C3422F;
  color: #C3422F;
  background: transparent;
}

.btn-outline:hover {
  background: #C3422F;
  color: #fff;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .offers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* --------------------------------------------
   REVIEWS - RESPONSIVE GRID
   -------------------------------------------- */
.reviews-section {
  padding: var(--space-2xl) 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.review-card {
  background: var(--card-bg);
  padding: clamp(25px, 5vw, 35px);
  border-radius: var(--card-radius);
   border-color: rgba(255, 255, 255, 0.63);
  transition: var(--transition-slow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 122, 0, 0.15);
}

.review-stars {
  display: flex;
  gap: 5px;
  margin-bottom: var(--space-md);
}

.review-stars i {
  color: #ffbf00;
  font-size: var(--text-sm);
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.review-text {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.reviewer-avatar {
  width: clamp(45px, 8vw, 50px);
  height: clamp(45px, 8vw, 50px);
  background: linear-gradient(135deg, var(--accent), #ff5500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.reviewer-info h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 2px;
}

.reviewer-info span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* --------------------------------------------
   ABOUT SECTION - RESPONSIVE
   -------------------------------------------- */
.about-section {
  padding: var(--space-2xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-content {
  order: 2;
}

.about-content .section-title {
  text-align: center;
  margin-bottom: var(--space-md);
}

.about-content .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.about-text {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.stat-number {
  display: block;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 5px;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.about-image-wrapper {
  position: relative;
  order: 1;
}

.about-image img {
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-image-accent {
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  border: 3px solid var(--accent);
  border-radius: var(--card-radius);
  z-index: -1;
}

/* --------------------------------------------
   CONTACT SECTION - RESPONSIVE
   -------------------------------------------- */
.contact-section {
  padding: var(--space-2xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-icon {
  width: clamp(50px, 10vw, 55px);
  height: clamp(50px, 10vw, 55px);
  background: rgba(255, 254, 254, 0.089);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  color:#C3422F;;
  flex-shrink: 0;
}


.contact-details h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-details a,
.contact-details span {
  color: var(--text-muted);
  font-size: var(--text-sm);
  transition:#C3422F;;
  word-break: break-word;
}

.contact-details a:hover {
  color:#C3422F ;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--text-muted);
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.social-link:hover {
  background:#C3422F;;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.3);
}

.contact-form-wrapper {
  background: var(--card-bg);
  padding: clamp(25px, 5vw, 40px);
  border-radius: var(--card-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: clamp(12px, 2vw, 14px) clamp(14px, 2vw, 18px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: var(--text-base);
  font-family: inherit;
  transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(255, 122, 0, 0.15);
}

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

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

/* --------------------------------------------
   FOOTER - RESPONSIVE
   -------------------------------------------- */
.footer {
  position: relative;
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 30px rgba(255, 122, 0, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.footer-logo {
  font-size: var(--text-xl);
  font-weight: 800;
    color: #C3422F;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.footer-desc {
  color: #ffffff;
  font-size: var(--text-base);
  line-height: 1.7;
  max-width: 100%;
}

.footer-links h4,
.footer-hours h4,
.footer-social h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.footer-links ul li,
.footer-hours ul li {
  margin-bottom: var(--space-xs);
}

.footer-links ul li a {
  color: #3B1F1A;
  font-size: var(--text-base);
  transition: var(--transition-fast);
  display: inline-block;
}

.social-links {
  display: flex;
  justify-content: center;   /* center align */
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  flex-wrap: wrap;
  text-align: center;
}

.footer-hours ul li {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--text-muted);
  font-size: var(--text-base);
  flex-wrap: wrap;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-align: center;
}

.portfolio-link {
  color: #C3422F;
  font-weight: 500;
}

.portfolio-link:hover {
  text-decoration: underline;
}

/* --------------------------------------------
   TOAST NOTIFICATION
   -------------------------------------------- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--card-bg);
  color: var(--text-primary);
  padding: var(--space-sm) var(--space-md);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-base);
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 122, 0, 0.2);
  z-index: 3000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  max-width: min(400px, 90vw);
  width: max-content;
}

.toast.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast i {
  color: var(--success);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* --------------------------------------------
   ANIMATIONS
   -------------------------------------------- */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes badgeBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

@keyframes glowFloat {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-30px, 20px) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

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

/* --------------------------------------------
   MEDIA QUERIES - RESPONSIVE BREAKPOINTS
   -------------------------------------------- */

/* Small phones: 320px - 480px (Default mobile-first styles above) */

/* Large phones: 481px - 600px */
@media (min-width: 481px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: var(--text-6xl);
  }
}

/* Tablets: 601px - 768px */
@media (min-width: 601px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }

  .footer-hours ul li {
    justify-content: flex-start;
  }

  .about-content .section-title {
    text-align: left;
  }

  .about-content .section-title::after {
    left: 0;
    transform: none;
  }

  .about-stats {
    justify-content: flex-start;
  }

  .stat {
    flex: 0 1 auto;
  }
}

/* Small laptops: 769px - 1024px */
@media (min-width: 769px) {
  .nav-links {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .hero-container {
    flex-direction: row;
    text-align: left;
    gap: var(--space-xl);
  }

  .hero-content {
    max-width: 50%;
    order: 1;
  }

  .hero-visual {
    max-width: 50%;
    order: 2;
  }

  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .about-content {
    order: 1;
  }

  .about-image-wrapper {
    order: 2;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Laptops: 1025px - 1366px */
@media (min-width: 1025px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
  }
}

/* Desktops: 1367px - 1920px+ */
@media (min-width: 1367px) {
  :root {
    --container-padding: 6%;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.625rem;
  }
}

/* Large Desktops: 1920px+ */
@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
  }

  .hero-title {
    font-size: 4rem;
  }
}

/* --------------------------------------------
   ACCESSIBILITY & PERFORMANCE
   -------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-glow,
  .offer-gradient-border {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --text-muted: #cccccc;
    --card-bg: #2d2d3a;
  }
}

/* Dark mode support (already dark, but for system consistency) */
@media (prefers-color-scheme: dark) {
  /* Variables already optimized for dark theme */
}

/* --------------------------------------------
   SCROLLBAR STYLING
   -------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-end);
}

::-webkit-scrollbar-thumb {
  background: var(--card-bg);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--card-bg) var(--bg-end);
}

/* Selection Color */
::selection {
  background: rgba(255, 122, 0, 0.3);
  color: var(--text-primary);
}

/* --------------------------------------------
   UTILITY CLASSES
   -------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .hidden-desktop {
    display: none !important;
  }
}
