/* =========================================================
   ASMITA FOODS & SPICES — VISUAL REDESIGN STYLESHEET
   Drop this file into your /assets/css/ folder and link from
   each PHP page. Structure stays the same — only styling
   changes. Color palette: Saffron + Forest Green + Cream.
   ========================================================= */

:root {
  --saffron: #C8531C;
  --saffron-dark: #A33F12;
  --saffron-light: #E8743B;
  --forest: #2E5D3A;
  --forest-dark: #1E4226;
  --gold: #D4A24C;
  --gold-light: #E8C078;
  --cream: #FAF6EE;
  --cream-dark: #F0E8D6;
  --charcoal: #2B1A0F;
  --slate: #5C4A3D;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 12px rgba(43, 26, 15, 0.06);
  --shadow: 0 10px 30px rgba(43, 26, 15, 0.08);
  --shadow-lg: 0 20px 60px rgba(43, 26, 15, 0.15);
  --radius: 14px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', Georgia, serif; color: var(--charcoal); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ============ TOP STRIP ============ */
.top-strip {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 8px 0;
  font-size: 13px;
}
.top-strip .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.top-strip .contact-quick a { color: var(--cream); margin-right: 18px; opacity: 0.9; }
.top-strip .contact-quick a:hover { color: var(--gold); opacity: 1; }
.top-strip .trust-quick span {
  display: inline-block; margin-left: 14px; color: var(--gold);
  font-weight: 500; font-size: 12px;
}
@media (max-width: 768px) {
    .top-strip .contact-quick {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}

/* ============ HEADER / NAV ============ */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: sticky; top: 0; z-index: 100;
}
nav { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; }
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px; /* top-bottom | left-right */
}

.logo img {
  width: 200px;
  height: auto;
}
.logo-text h1 {
  font-size: 20px; font-weight: 700;
  color: var(--saffron); line-height: 1.1; font-family: 'Playfair Display', serif;
}
.logo-text p {
  font-size: 11px; color: var(--slate);
  letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px;
}
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-weight: 500; font-size: 15px; color: var(--charcoal);
  position: relative; padding: 6px 0;
}
.nav-links a:hover { color: var(--saffron); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--saffron); transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--saffron); }

.hamburger {
  display: none; background: none; border: none;
  font-size: 24px; color: var(--saffron); cursor: pointer;
}

/* ============ HERO SLIDER ============ */
.slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: var(--cream-dark);
}
.slider-track { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0; transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(43, 26, 15, 0.55) 0%, rgba(43, 26, 15, 0.15) 60%);
}
.slide-content {
  position: absolute; top: 50%; left: 8%;
  transform: translateY(-50%);
  color: var(--white); z-index: 2;
  max-width: 560px;
}
.slide-content .tag {
  display: inline-block; background: rgba(212, 162, 76, 0.2);
  border: 1px solid var(--gold); color: var(--gold);
  padding: 6px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.slide-content h2 {
  color: var(--white); font-size: 48px; line-height: 1.1;
  margin-bottom: 14px; font-weight: 700;
}
.slide-content h2 span { color: var(--gold); font-style: italic; }
.slide-content p { font-size: 17px; opacity: 0.95; margin-bottom: 24px; }

.slider-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white; width: 48px; height: 48px;
  border-radius: 50%; font-size: 20px;
  cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.slider-nav:hover { background: var(--saffron); border-color: var(--saffron); }
.slider-nav.prev { left: 24px; }
.slider-nav.next { right: 24px; }
.slider-dots {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 10px; z-index: 3;
}
.slider-dots span {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: var(--transition);
}
.slider-dots span.active { background: var(--gold); transform: scale(1.3); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 30px;
  font-weight: 600; font-size: 14px; cursor: pointer;
  border: none; font-family: inherit;
  transition: var(--transition);
}
.btn-primary {
  background: var(--saffron); color: white;
  box-shadow: 0 6px 18px rgba(200, 83, 28, 0.35);
}
.btn-primary:hover { background: var(--saffron-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: white;
  border: 2px solid white;
}
.btn-outline:hover { background: white; color: var(--charcoal); }
.btn-forest { background: var(--forest); color: white; }
.btn-forest:hover { background: var(--forest-dark); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #1eb955; transform: translateY(-2px); }

/* ============ SECTIONS ============ */
.section { padding: 90px 0; }
.section.alt { background: var(--cream-dark); }
.section-head { text-align: center; margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
.eyebrow {
  color: var(--saffron); font-size: 13px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px;
  display: inline-block;
}
.section-head h2 {
  font-size: 42px; line-height: 1.2; margin-bottom: 16px;
}
.section-head h2 span { color: var(--saffron); font-style: italic; }
.section-head p { color: var(--slate); font-size: 17px; }

/* ============ PILLARS (3 PRODUCT CATEGORIES) ============ */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 30px; }
.pillar {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); position: relative;
}
.pillar:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pillar-img {
  height: 240px; overflow: hidden; position: relative;
}
.pillar-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.pillar:hover .pillar-img img { transform: scale(1.08); }
.pillar-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(43, 26, 15, 0.35));
}
.pillar-body { padding: 28px; }
.pillar-tag {
  display: inline-block; background: var(--cream); color: var(--saffron);
  padding: 4px 12px; border-radius: 12px; font-size: 12px; font-weight: 600;
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px;
}
.pillar h3 { font-size: 24px; margin-bottom: 10px; }
.pillar p { color: var(--slate); margin-bottom: 18px; font-size: 15px; }
.pillar-link {
  color: var(--saffron); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.pillar-link:hover { color: var(--saffron-dark); gap: 10px; }

/* ============ WHY CHOOSE US ============ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.why-card {
  background: var(--white); padding: 32px 24px;
  border-radius: var(--radius); text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}
.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px); box-shadow: var(--shadow);
}
.why-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: white; margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(200, 83, 28, 0.25);
}
.why-card h3 { font-size: 17px; margin-bottom: 8px; font-family: 'Poppins'; font-weight: 600; }
.why-card p { font-size: 13px; color: var(--slate); }

/* ============ PARTNER WITH US ============ */
.partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.partner-card {
  background: var(--white); padding: 30px 28px;
  border-radius: var(--radius);
  border-left: 4px solid var(--saffron);
  transition: var(--transition);
}
.partner-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
  border-left-color: var(--gold);
}
.partner-card .icon-wrap {
  width: 52px; height: 52px; background: var(--cream);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--saffron); margin-bottom: 16px;
}
.partner-card h3 { font-size: 19px; margin-bottom: 8px; font-family: 'Poppins'; font-weight: 600; }
.partner-card p { font-size: 14px; color: var(--slate); }

/* ============ PAGE BANNER (for sub-pages) ============ */
.page-banner {
  background: linear-gradient(135deg, rgba(43, 26, 15, 0.85), rgba(46, 93, 58, 0.75)),
    url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&w=1600&q=80') center/cover;
  padding: 80px 0;
  text-align: center;
  color: white;
}
.page-banner h1 {
  color: white; font-size: 48px; margin-bottom: 12px;
}
.page-banner h1 span { color: var(--gold); font-style: italic; }
.page-banner .breadcrumb {
  font-size: 14px; opacity: 0.9; letter-spacing: 1px;
}
.page-banner .breadcrumb a { color: var(--gold); }

/* ============ ABOUT PAGE STYLES ============ */
.about-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.about-intro img {
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  width: 100%; height: auto;
}
.about-intro h2 { font-size: 38px; margin-bottom: 20px; line-height: 1.2; }
.about-intro h2 span { color: var(--saffron); }
.about-intro p { color: var(--slate); margin-bottom: 14px; font-size: 16px; }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.vm-card {
  background: white; padding: 40px;
  border-radius: var(--radius);
  border-top: 4px solid var(--saffron);
  box-shadow: var(--shadow);
}
.vm-card.mission { border-top-color: var(--forest); }
.vm-card .vm-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 18px;
}
.vm-card h3 { font-size: 24px; margin-bottom: 12px; color: var(--saffron); }
.vm-card.mission h3 { color: var(--forest); }
.vm-card p { color: var(--slate); }

.badges-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px; margin-top: 30px;
}
.badge-item {
  text-align: center; padding: 20px;
  background: var(--cream); border-radius: var(--radius);
  transition: var(--transition);
}
.badge-item:hover { background: var(--white); box-shadow: var(--shadow); transform: translateY(-3px); }
.badge-item .badge-icon { font-size: 32px; margin-bottom: 10px; color: var(--saffron); }
.badge-item h4 { font-size: 14px; font-family: 'Poppins'; font-weight: 600; }

.cert-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px; margin-top: 30px;
}
.cert-item {
  background: white; padding: 24px;
  border-radius: var(--radius); text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.cert-item:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.cert-item img { width: 70px; height: 70px; object-fit: contain; margin: 0 auto 12px; }
.cert-item p { font-size: 13px; font-weight: 600; color: var(--forest); }

/* ============ PRODUCT PAGE STYLES ============ */
.filter-tabs {
  display: flex; justify-content: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 50px;
}
.filter-tab {
  background: white;
  color: var(--charcoal);
  padding: 10px 26px; border-radius: 30px;
  border: 2px solid var(--cream-dark);
  font-weight: 600; font-size: 14px;
  cursor: pointer; transition: var(--transition);
  font-family: inherit;
}
.filter-tab:hover { border-color: var(--saffron); color: var(--saffron); }
.filter-tab.active {
  background: var(--saffron); color: white;
  border-color: var(--saffron);
  box-shadow: 0 6px 18px rgba(200, 83, 28, 0.3);
}

.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.product-img {
  height: 220px; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.product-img img {
  max-width: 80%; max-height: 80%; object-fit: contain;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--saffron); color: white;
  padding: 4px 12px; border-radius: 12px;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
}
.product-body { padding: 22px; }
.product-category {
  font-size: 11px; color: var(--gold);
  font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 6px;
}
.product-body h3 { font-size: 19px; margin-bottom: 8px; font-family: 'Poppins'; font-weight: 600; }
.product-body p { font-size: 13px; color: var(--slate); margin-bottom: 14px; }
.product-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid var(--cream-dark);
}
.product-meta .size { font-size: 12px; color: var(--slate); }
.product-meta .inquire {
  color: var(--saffron); font-weight: 600;
  font-size: 13px; display: inline-flex; align-items: center; gap: 4px;
}
.product-meta .inquire:hover { color: var(--saffron-dark); gap: 8px; }

/* ============ CONTACT PAGE STYLES ============ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: stretch;
}
.contact-form {
  background: white; padding: 40px;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 26px; margin-bottom: 8px; color: var(--saffron); }
.contact-form .form-sub { color: var(--slate); margin-bottom: 24px; font-size: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 13px;
  color: var(--slate); margin-bottom: 6px; font-weight: 500;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px; font-size: 14px;
  font-family: inherit; background: var(--cream);
  color: var(--charcoal); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--saffron);
  background: white; box-shadow: 0 0 0 3px rgba(200, 83, 28, 0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.contact-info {
  background: linear-gradient(135deg, var(--forest), var(--forest-dark));
  color: white; padding: 40px;
  border-radius: var(--radius); position: relative; overflow: hidden;
}
.contact-info::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.contact-info h3 { color: white; font-size: 26px; margin-bottom: 24px; position: relative; }
.contact-info .info-item {
  display: flex; gap: 16px; margin-bottom: 22px;
  position: relative;
}
.contact-info .info-item .ico {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(212, 162, 76, 0.2);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-info .info-item p { font-size: 14px; opacity: 0.95; }
.contact-info .info-item h4 { color: var(--gold); font-size: 13px; margin-bottom: 4px; font-family: 'Poppins'; letter-spacing: 1px; text-transform: uppercase; }
.contact-socials { display: flex; gap: 12px; margin-top: 30px; position: relative; }
.contact-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px;
  transition: var(--transition);
}
.contact-socials a:hover { background: var(--saffron); transform: translateY(-3px); }

.map-section { padding: 0 0 90px; }
.map-section iframe {
  width: 100%; height: 420px; border: 0;
  border-radius: var(--radius); box-shadow: var(--shadow);
}

/* ============ FOOTER ============ */
footer { background: var(--charcoal); color: var(--cream); padding: 70px 0 30px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px; margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--gold); font-size: 14px; margin-bottom: 20px;
  font-family: 'Poppins'; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.footer-col p, .footer-col li { font-size: 14px; opacity: 0.85; margin-bottom: 10px; }
.footer-col ul { list-style: none; }
.footer-col a:hover { color: var(--gold); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { width: 100px; height: auto; }
.footer-logo h3 { color: white; font-size: 19px; font-family: 'Playfair Display', serif; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.socials a:hover { background: var(--saffron); transform: translateY(-3px); }
.footer-map iframe { width: 100%; height: 130px; border: 0; border-radius: 10px; margin-top: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  text-align: center; font-size: 13px; opacity: 0.7;
}

/* ============ FLOATING WHATSAPP ============ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  animation: pulse 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: white; flex-direction: column; gap: 0; padding: 14px 0;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; padding: 12px 24px; border-bottom: 1px solid var(--cream-dark); }
  .hamburger { display: block; }
  .slider { height: 380px; }
  .slide-content { left: 5%; right: 5%; max-width: none; }
  .slide-content h2 { font-size: 28px; }
  .slide-content p { font-size: 15px; }
  .section { padding: 60px 0; }
  .section-head h2 { font-size: 30px; }
  .about-intro { grid-template-columns: 1fr; gap: 30px; }
  .vm-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .page-banner h1 { font-size: 32px; }
  .top-strip .container { justify-content: center; text-align: center; }
}


/* LOGO IMAGE RESPONSIVE */

.logo img {
  width: 150px;
  height: auto;
  max-width: 100%;
  display: block;
 
}

/* Large Screens */
@media (max-width: 1200px) {
  .logo img {
    width: 140px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .logo img {
    width: 90px;
  }
}

/* Mobile Devices */
@media (max-width: 480px) {
  .logo img {
    width: 80px;
  }
}

/* Small Mobile */
@media (max-width: 360px) {
  .logo img {
    width: 85px;
  }
}

/* Large Screens */
@media (max-width:1200px){
  .logo img{
    width:180px;
  }
}

/* Tablets */
@media (max-width:992px){
  .logo{
    gap:10px;
    padding:8px 16px;
  }

  .logo img{
    width:160px;
  }
}

/* Mobile */
@media (max-width:768px){
  .logo{
    justify-content:center;
    text-align:center;
    padding:8px 12px;
  }

  .logo img{
    width:140px;
  }
}

/* Small Mobile */
@media (max-width:480px){
  .logo{
    gap:8px;
    padding:6px 10px;
  }

  .logo img{
    width:120px;
  }
}


