:root {
    --primary: #c46b2b;
    --primary-dark: #a0521a;
    --primary-light: #e8904a;
    --secondary: #4a2c1a;
    --secondary-dark: #2d1a0e;
    --dark: #2d2d2d;
    --gray: #777;
    --gray-light: #999;
    --bg-light: #fffaf2;
    --bg-cream: #fff5eb;
    --white: #ffffff;
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 35px rgba(196, 107, 43, 0.15);
    --gradient: linear-gradient(135deg, #c46b2b, #e8904a);
    --gradient-dark: linear-gradient(135deg, #4a2c1a, #2d1a0e);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes bounce {

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

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

@keyframes pulse {

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

    50% {
        transform: scale(1.02);
    }
}

/* Section Animations */
section {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

section:nth-child(1) {
    animation-delay: 0.1s;
}

section:nth-child(2) {
    animation-delay: 0.2s;
}

section:nth-child(3) {
    animation-delay: 0.3s;
}

section:nth-child(4) {
    animation-delay: 0.4s;
}

section:nth-child(5) {
    animation-delay: 0.5s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('/Image/banner.png') no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent, rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    padding: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: clamp(2px, 1vw, 5px);
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, #ffd89b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h2 {
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin-bottom: 10px;
}

.tagline {
    font-size: clamp(0.7rem, 2.5vw, 0.9rem);
    letter-spacing: clamp(1px, 0.5vw, 2px);
    margin-bottom: 30px;
    opacity: 0.9;
    background: rgba(0, 0, 0, 0.3);
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(196, 107, 43, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 8px 25px rgba(196, 107, 43, 0.5);
}

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

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #fae6d3, #fff5eb);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--secondary);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.section-header p {
    color: var(--gray);
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    margin-top: 15px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose-us {
    padding: 80px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.feature-card i {
    font-size: 50px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.9rem;
}/* ============================================
   INGREDIENTS SECTION – With Image Support
   ============================================ */

.ingredients-section {
  padding: 80px 0 60px;
  background: linear-gradient(145deg, #f7efe8 0%, #fbf3ea 100%);
  position: relative;
}

.ingredients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 30px 0 20px;
}

.ingredient-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(196, 107, 43, 0.10);
}

.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(196, 107, 43, 0.13);
  border-color: rgba(196, 107, 43, 0.25);
}

/* ===== ICON STYLES – Supports both Font Awesome & Images ===== */
.ingredient-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f5e4d6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: all 0.3s ease;
  overflow: hidden;
  flex-shrink: 0;
}

/* Font Awesome icons */
.ingredient-icon i {
  font-size: 28px;
  color: #c46b2b;
  transition: all 0.3s ease;
  line-height: 1;
}

/* Image icons (img inside .ingredient-icon) */
.ingredient-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease;
  border-radius: 0;
}

/* Hover effect for both icons and images */
.ingredient-card:hover .ingredient-icon {
  background: #c46b2b;
}

.ingredient-card:hover .ingredient-icon i {
  color: #ffffff;
}

.ingredient-card:hover .ingredient-icon img {
  filter: brightness(0) invert(1);
}

.ingredient-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f140e;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.ingredient-card .sub {
  font-size: 14px;
  font-weight: 400;
  color: #7f5f44;
  background: rgba(196, 107, 43, 0.08);
  padding: 3px 16px;
  border-radius: 40px;
  display: inline-block;
  margin-top: 4px;
}

/* Transparency Note */
.transparency-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 35px;
  padding: 14px 20px;
  background: rgba(196, 107, 43, 0.06);
  border-radius: 60px;
  font-size: 15px;
  color: #3d2b1e;
}

.transparency-note i {
  font-size: 18px;
  color: #c46b2b;
}

/* ============================================
   INGREDIENTS – RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .ingredients-section {
    padding: 50px 0 40px;
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .ingredient-card {
    padding: 20px 12px 18px;
    border-radius: 16px;
  }

  .ingredient-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 10px;
  }

  .ingredient-icon i {
    font-size: 22px;
  }

  .ingredient-icon img {
    width: 32px;
    height: 32px;
  }

  .ingredient-card h4 {
    font-size: 15px;
  }

  .ingredient-card .sub {
    font-size: 12px;
    padding: 2px 12px;
  }

  .transparency-note {
    font-size: 13px;
    padding: 12px 16px;
    border-radius: 40px;
  }
}

@media (max-width: 400px) {
  .ingredients-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ingredient-card {
    padding: 16px 8px 14px;
  }

  .ingredient-icon {
    width: 48px;
    height: 48px;
  }

  .ingredient-icon i {
    font-size: 18px;
  }

  .ingredient-icon img {
    width: 28px;
    height: 28px;
  }

  .ingredient-card h4 {
    font-size: 13px;
  }

  .ingredient-card .sub {
    font-size: 10px;
    padding: 1px 10px;
  }

  .transparency-note {
    font-size: 11px;
    padding: 10px 12px;
    gap: 6px;
  }
}

/* ============================================
   ABOUT SECTION – Image Right (Desktop)
   Image First (Mobile)
   ============================================ */

.about {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff8f0 100%);
}

.about-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}

/* Image – RIGHT on desktop */
.about-image {
  flex: 0 0 48%;
  order: 2;
  text-align: center;
  animation: slideInRight 0.8s ease;
  position: relative;
}

.about-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: block;
}

.about-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(196, 107, 43, 0.2);
}

/* Text – LEFT on desktop */
.about-text {
  flex: 1;
  order: 1;
  text-align: left;
  animation: slideInLeft 0.8s ease;
}

.about-text .badge {
  display: inline-block;
  margin-bottom: 15px;
}

.about-text h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--secondary);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(0);
  width: 80px;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px;
}

.about-text p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 25px;
  font-size: 1rem;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* ============================================
   ABOUT – RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .about-grid {
    gap: 40px;
  }

  .about-image {
    flex: 0 0 45%;
  }
}

@media (max-width: 767px) {
  .about {
    padding: 50px 0;
  }

  .about-grid {
    flex-direction: column;
    gap: 30px;
  }

  /* Image FIRST on mobile */
  .about-image {
    order: 1;
    flex: 0 0 auto;
    width: 100%;
  }

  .about-image img {
    max-width: 100%;
    border-radius: 24px;
  }

  /* Text BELOW on mobile */
  .about-text {
    order: 2;
    text-align: center;
  }

  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-text p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .about-text .btn-primary {
    margin: 0 auto;
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 40px 0;
  }

  .about-grid {
    gap: 20px;
  }

  .about-image img {
    border-radius: 18px;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .about-text .badge {
    font-size: 0.75rem;
  }
}
/* ============================================
   PRODUCTS SECTION
   ============================================ */
.simple-products {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product-showcase-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.product-showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-showcase-item img {
    width: 100%;
    max-width: 120px;
    height: auto;
    transition: var(--transition);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.product-showcase-item:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 20px rgba(196, 107, 43, 0.3));
}

.product-showcase-item h4 {
    margin-top: 15px;
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: var(--secondary);
    font-weight: 600;
}

.product-showcase-item:hover h4 {
    color: var(--primary);
}

/* View All Button */
.view-all-products {
    text-align: center;
    margin-top: 50px;
}

.btn-view-products {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.btn-view-products:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    gap: 15px;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 107, 43, 0.3);
}

.btn-view-products:hover i {
    transform: translateX(5px);
}
/* ============================================
   ABOUT SECTION – Image Right (Desktop)
   Image First (Mobile) with all text visible
   ============================================ */

.about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff8f0 100%);
}

.about-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

/* Image – appears on RIGHT on desktop */
.about-image {
    flex: 0 0 48%;
    order: 2;
    text-align: center;
    animation: slideInRight 0.8s ease;
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(196, 107, 43, 0.2);
}

/* Text – appears on LEFT on desktop */
.about-text {
    flex: 1;
    order: 1;
    text-align: left;
    animation: slideInLeft 0.8s ease;
}

.about-text .badge {
    display: inline-block;
    margin-bottom: 15px;
}

.about-text h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(0);
    width: 80px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.about-text p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 1rem;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* ============================================
   RESPONSIVE – Tablet & Mobile
   Image FIRST, Text BELOW
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .about-grid {
        gap: 40px;
    }

    .about-image {
        flex: 0 0 45%;
    }
}

/* Mobile & Small Tablet (up to 767px) */
@media (max-width: 767px) {
    .about {
        padding: 50px 0;
    }

    .about-grid {
        flex-direction: column;
        gap: 30px;
    }

    /* Image FIRST on mobile (top) */
    .about-image {
        order: 1;
        flex: 0 0 auto;
        width: 100%;
        animation: slideInRight 0.8s ease;
    }

    .about-image img {
        max-width: 100%;
        border-radius: 24px;
    }

    /* Text BELOW on mobile */
    .about-text {
        order: 2;
        text-align: center;
        animation: slideInLeft 0.8s ease;
    }

    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .about-text .btn-primary {
        margin: 0 auto;
        display: inline-flex;
    }
}

/* Mobile Small (up to 480px) */
@media (max-width: 480px) {
    .about {
        padding: 40px 0;
    }

    .about-grid {
        gap: 20px;
    }

    .about-image img {
        border-radius: 18px;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .about-text .badge {
        font-size: 0.75rem;
    }
}
/* ============================================
   KULFI CTA SECTION
   ============================================ */
.kulfi-cta {
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.kulfi-cta::before {
    content: '🍦';
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 200px;
    opacity: 0.05;
}

.kulfi-cta::after {
    content: '☕';
    position: absolute;
    bottom: -50px;
    left: -50px;
    font-size: 200px;
    opacity: 0.05;
}

.kulfi-cta h2 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.kulfi-cta p {
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    margin-bottom: 35px;
    opacity: 0.9;
}

.kulfi-cta .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.kulfi-cta .btn-primary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #25d366, #128C7E);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    z-index: 1000;
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN - ALL SCREENS
   ============================================ */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-content h1 {
        font-size: 80px;
    }

    .hero-content h2 {
        font-size: 52px;
    }

    .about-image img {
        max-width: 650px;
    }

    .features-grid {
        gap: 35px;
    }

    .product-showcase {
        gap: 40px;
    }

    .why-choose-us,
    .simple-products,
    .about,
    .kulfi-cta {
        padding: 100px 0;
    }
}

/* Desktop (1025px - 1399px) */
@media (min-width: 1025px) and (max-width: 1399px) {
    .container {
        max-width: 1100px;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-content h2 {
        font-size: 38px;
    }

    .about-image img {
        max-width: 500px;
    }

    .features-grid {
        gap: 25px;
    }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .product-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .about-image img {
        max-width: 450px;
    }

    .why-choose-us,
    .simple-products,
    .about,
    .kulfi-cta {
        padding: 60px 0;
    }
}

/* Mobile Large (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-showcase-item img {
        max-width: 100px;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-image img {
        max-width: 400px;
    }

    .why-choose-us,
    .simple-products,
    .about,
    .kulfi-cta {
        padding: 60px 0;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-card i {
        font-size: 40px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }
}

/* Mobile Small (361px - 480px) */
@media (min-width: 361px) and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 85vh;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .tagline {
        font-size: 10px;
    }

    .btn-primary {
        padding: 10px 25px;
        font-size: 12px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .badge {
        font-size: 11px;
    }

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

    .feature-card {
        padding: 25px 20px;
    }

    .feature-card i {
        font-size: 35px;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .product-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-showcase-item {
        padding: 15px 10px;
    }

    .product-showcase-item img {
        max-width: 80px;
    }

    .product-showcase-item h4 {
        font-size: 0.75rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .about-image img {
        border-radius: 20px;
    }

    .kulfi-cta h2 {
        font-size: 28px;
    }

    .kulfi-cta p {
        font-size: 14px;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .why-choose-us,
    .simple-products,
    .about,
    .kulfi-cta {
        padding: 50px 0;
    }
}

/* Mobile Extra Small (up to 360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h2 {
        font-size: 20px;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-showcase-item img {
        max-width: 100px;
    }

    .about-text h2 {
        font-size: 1.3rem;
    }

    .about-text p {
        font-size: 0.85rem;
    }

    .kulfi-cta h2 {
        font-size: 24px;
    }

    .feature-card i {
        font-size: 30px;
    }
}

/* Landscape Mode for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

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

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

    .why-choose-us,
    .simple-products,
    .about {
        padding: 40px 0;
    }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {

    .whatsapp-float,
    .loader-overlay,
    .btn-primary,
    .btn-view-products {
        display: none;
    }

    .hero {
        background: #f5f5f5;
        color: #333;
        min-height: auto;
        padding: 40px 0;
    }

    .hero-overlay {
        display: none;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.hidden {
    display: none;
}