.field-error{color:#e74c3c;font-size:.9rem;margin-top:.25rem;min-height:1em}
.phone-input{display:flex;gap:.5rem;align-items:center}
.phone-input select{padding:.5rem;border:1px solid #ddd;border-radius:8px;background:#fff;width:110px;white-space:nowrap;}
.phone-input input{flex:1}
/* Kapoor Food India - Main Stylesheet */

/* Custom Font */
@font-face {
    font-family: 'Hamzah';
    src: url('../assets/font-style/hamzah-font/Hamzah-lxYqw.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* CSS Variables */
:root {
    --primary-color: #2d7a3e;
    --primary-dark: #1f5229;
    --primary-light: #4a9d5a;
    --secondary-color: #ff9800;
    --text-dark: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar needs to be less "boxed" than page content: keep full-width, but responsive padding */
.navbar .container {
    max-width: none;
    width: 100%;
    padding-left: clamp(14px, 3vw, 56px);
    padding-right: clamp(14px, 3vw, 56px);
}

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

/* Header logo layout */
.logo-link{display:flex;align-items:center;gap:.75rem}
.logo-img{height:120px;width:auto;display:block}
.logo-text h1{margin:0;line-height:1;font-family:'Hamzah',sans-serif;font-size:2.8rem;letter-spacing:0.12em;text-transform:uppercase;color:var(--primary-color);font-weight:800}
.logo-text .tagline{margin:0}

.logo h1 {
    font-family: 'Hamzah', sans-serif;
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 0.2rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.logo .tagline {
    font-size: 0.85rem;
    color: var(--text-lighter);
    font-style: italic;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
/* .hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%); */
    /* Ensure the hero background image fills edge-to-edge with no side whitespace */
    /* padding: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
} */

/* HERO: full-width image with overlay text (no cropping, no centering box) */
.hero.hero-media{
  position: relative;

  /* full width edge-to-edge */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  padding: 0;
  overflow: hidden;
  background: var(--primary-dark);
}

/* Make the image fill the full hero width */
.hero.hero-media .hero-bg{
  width: 100%;
  height: auto;      /* keeps original image (no crop) */
  display: block;
}

/* Keep overlay over the image */
.hero.hero-media .hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

/* Place text/button ON TOP of image */

.hero.hero-media .hero-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  z-index: 2;
  width: 100%;
  max-width: 900px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero.hero-media .hero-title{
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.65);
}

.hero.hero-media .hero-subtitle{
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 3px 8px rgba(0,0,0,0.55);
}

@media (max-width: 768px){
  .hero.hero-media .hero-title{
    font-size: 2rem;
  }

  .hero.hero-media .hero-subtitle{
    font-size: 1.1rem;
  }
}


/* new One ends here */

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #e68900;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Section Styling */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about-section {
    background-color: var(--bg-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.products-grid.large {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.product-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

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

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.product-image .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    z-index: 1;
}

.badge-bestseller {
    background-color: #ff6b6b;
}

.badge-popular {
    background-color: var(--secondary-color);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.product-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.product-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-info h4 i {
    color: var(--secondary-color);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.product-description {
    line-height: 1.8;
    margin-bottom: 1.5rem !important;
}

/* Nutritional Info */
.nutritional-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.nutrition-item {
    text-align: center;
    padding: 0.75rem;
    background-color: white;
    border-radius: 6px;
}

.nutrition-item .label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-lighter);
    margin-bottom: 0.25rem;
}

.nutrition-item .value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Packaging Info */
.packaging-info {
    background-color: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.packaging-info p {
    margin-bottom: 0 !important;
    font-weight: 500;
    color: var(--text-dark);
}

/* Cooking Tips */
.cooking-tips {
    background-color: #fff8e1;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.cooking-tips ul {
    list-style: none;
    margin-top: 0.75rem;
}

.cooking-tips li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.cooking-tips li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background-color: var(--bg-light);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.feature-tag i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.product-status {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-badge.available {
    background-color: #e8f5e9;
    color: var(--primary-color);
}

.status-badge.unavailable {
    background-color: #ffebee;
    color: #c62828;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

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

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Page Header */
/* .page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 4rem 0 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
} */

/* Small header banner for About/Products/Contact (separate from .hero) */
.page-hero{
  position: relative;

  /* full width edge-to-edge */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  height: 190px;           /* <-- adjust this height as you like */
  overflow: hidden;
  background: var(--primary-dark);
}

/* Background image fills section */
.page-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* keeps it filled while staying short */
  object-position: center; /* adjust if needed: center top / center 30% */
}

/* Dark overlay */
.page-hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

/* Center text on top */
.page-hero-content{
  position: relative;
  z-index: 2;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.page-hero-title{
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.page-hero-subtitle{
  font-size: 1.05rem;
  opacity: 0.95;
  text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

@media (max-width: 768px){
  .page-hero{ height: 210px; }
  .page-hero-title{ font-size: 1.8rem; }
  .page-hero-subtitle{ font-size: 0.95rem; }
}
/* Page header ends here */

/* About Detail Section */
.about-detail-section {
    padding: 4rem 0;
}

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

.about-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image .image-placeholder {
    height: 400px;
    border-radius: 12px;
}

/* Mission Vision */
.mission-vision-section {
    background-color: var(--bg-light);
}

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

.mv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.mv-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.value-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-light);
}

/* Process Section */
.process-section {
    background-color: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.process-step.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Products Page */
.products-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.products-intro h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.products-intro p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.benefit-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-light);
}

/* Product list (simple view) */
.product-list {list-style:none;max-width:800px;margin:0 auto 3rem;padding:0}
.product-list-item {padding:0.75rem 1rem;border:1px solid var(--border-color);margin-bottom:0.75rem;border-radius:6px;background:#fff;display:flex;justify-content:space-between;align-items:center;transition:var(--transition)}
.product-list-item:hover {background:var(--bg-light);transform:translateY(-2px)}
.product-link {color:var(--primary-color);font-weight:600}
.product-link:hover {text-decoration:underline}

/* Product scroller (image + name) */
.scroller-wrapper{position:relative}
.product-scroller{--gap:1rem;display:grid;grid-auto-flow:column;gap:var(--gap);grid-auto-columns:calc((100% - (2 * var(--gap))) / 3);overflow-x:auto;padding:0 2.5rem .5rem 2.5rem;margin:0 auto 3rem;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch}
.product-scroller::-webkit-scrollbar{height:8px}
.product-scroller::-webkit-scrollbar-thumb{background:rgba(0,0,0,.15);border-radius:8px}
.product-scroller.dragging{cursor:grabbing}
.product-tile{scroll-snap-align:start;background:#fff;border:1px solid var(--border-color);border-radius:12px;box-shadow:var(--shadow-sm);transition:var(--transition);overflow:hidden}
.product-tile:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.product-tile a{display:block;color:inherit}
.product-thumb{width:100%;aspect-ratio:1/1;object-fit:cover;background:var(--bg-light)}
.product-title{padding:.75rem;text-align:center;font-weight:700;color:var(--primary-color);font-size:.95rem}

.scroller-btn{position:absolute;top:50%;transform:translateY(-50%);background:#ffffff;border:1px solid var(--border-color);width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-sm);color:var(--primary-color);cursor:pointer;transition:var(--transition);z-index:2}
.scroller-btn:hover{box-shadow:var(--shadow-md);transform:translateY(-50%) scale(1.05)}
.scroller-btn.prev{left:0.25rem}
.scroller-btn.next{right:0.25rem}
.scroller-btn:disabled{opacity:.45;cursor:not-allowed}

@media (max-width: 480px){
    .product-scroller{grid-auto-columns:minmax(140px,170px);padding:0 1.5rem .5rem 1.5rem}
    .scroller-btn{width:34px;height:34px}
}

/* Detail page minimal styles additions (image already styled inline) */
.detail-title {color:var(--primary-color);margin-top:1rem;margin-bottom:1rem;font-size:2rem}
.detail-description {line-height:1.7;color:var(--text-light);margin-bottom:1rem}
.detail-features {margin-top:1rem}
.detail-features li {color:var(--text-dark)}

/* Product Detail Layout */
.detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:start}
.detail-media{position:relative}
.detail-content{background:transparent;border:none;border-radius:12px;padding:1.25rem;box-shadow:none}
@media (max-width: 900px){
    .detail-grid{grid-template-columns:1fr}
    .detail-content{padding:1rem}
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-section > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-detail-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-detail-item h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-detail-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.social-section h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.contact-form h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Phone input layout overrides (ensure number field gets space) */
.contact-form .phone-input{display:flex;gap:.5rem;align-items:center}
.contact-form .phone-input select{width:110px;flex:0 0 110px}
.contact-form .phone-input input{flex:1 1 auto;min-width:0}

/* Disabled button state */
.btn[disabled]{opacity:.6;cursor:not-allowed}

/* Distributor Section */
.distributor-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.distributor-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.distributor-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    /* Give more space to contact info column */
    grid-template-columns: 1.2fr 0.8fr 1.5fr 1fr;
    column-gap: clamp(20px, 4vw, 80px);
    row-gap: 2rem;
    margin-bottom: 2rem;
}

/* Allow grid children to shrink and wrap instead of expanding columns */
.footer-col {
    min-width: 0;
    overflow-wrap: anywhere;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: clamp(20px, 5vw, 64px);
    }
}

.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Footer logo */
.footer-logo{display:none}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #cccccc;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-info li:has(.fa-map-marker-alt) {
    white-space: normal;
}

.contact-info i {
    color: var(--secondary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.social-links.large a {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    background-color: #25D366;
    color: white;
}

.social-links.large a:hover {
    background-color: #128C7E;
}

/* Footer QR Code Section */
.footer-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-qr h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.qr-codes {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-item img {
    width: 100px;
    height: 100px;
    background: white;
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.qr-item img:hover {
    transform: scale(1.05);
}

.qr-item p {
    font-size: 0.75rem;
    color: #cccccc;
    max-width: 100px;
    text-align: center;
}

.footer-qr img {
    width: 120px;
    height: 120px;
    background: white;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.footer-qr p {
    font-size: 0.85rem;
    color: #cccccc;
}

@media (max-width: 768px) {
    .footer-qr img {
        width: 100px;
        height: 100px;
    }
    
    .qr-codes {
        gap: 1rem;
    }
    
    .qr-item img {
        width: 80px;
        height: 80px;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10000;
    transform: translateX(400px);
    transition: var(--transition);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid var(--primary-color);
}

.notification.success i {
    color: var(--primary-color);
}

.notification.error {
    border-left: 4px solid #c62828;
}

.notification.error i {
    color: #c62828;
}

.notification i {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 0;
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.3s ease, opacity 0.2s ease;
    }
    
    .nav-menu.active {
        max-height: 400px;
        padding: 1rem;
        opacity: 1;
        pointer-events: auto;
    }
    
    .hero {
        height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    .logo-img{height:36px}
    
    .products-grid,
    .products-grid.large {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid,
    .features-grid,
    .values-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}
