@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --primary: #c47d1a;
  --primary-dark: #9e6012;
  --primary-light: #e8a83a;
  --secondary: #2d5a27;
  --secondary-dark: #1e3e1a;
  --secondary-light: #4a8a3f;
  --accent: #f5c842;
  --bg-light: #fdf8ef;
  --bg-cream: #faf3e0;
  --text-dark: #1a1a1a;
  --text-medium: #444444;
  --text-muted: #777777;
  --white: #ffffff;
  --border: #e8d9b8;
  --shadow: 0 4px 24px rgba(196, 125, 26, 0.12);
  --shadow-hover: 0 8px 32px rgba(196, 125, 26, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.section-title span { color: var(--primary); }

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 12px auto 20px;
}

.divider-left { margin-left: 0; }

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary-custom:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(196, 125, 26, 0.4);
  color: var(--white);
}

.btn-primary-custom:hover::after { opacity: 1; }

.btn-secondary-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-secondary-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 125, 26, 0.3);
}

.btn-green-custom {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-green-custom:hover {
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.35);
  color: var(--white);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  color: var(--white);
}

/* ===================== NAVBAR ===================== */
.navbar-custom {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  padding: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--primary);
  transition: var(--transition);
}

.navbar-custom.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.brand-logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(196, 125, 26, 0.3);
  flex-shrink: 0;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text-wrap .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
  letter-spacing: 0.5px;
}

.brand-text-wrap .brand-tagline {
  font-size: 0.68rem;
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-link-custom {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--primary) !important;
  background: rgba(196, 125, 26, 0.08);
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  padding: 8px 22px !important;
  border-radius: 50px;
  font-weight: 600;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(196, 125, 26, 0.35);
}

/* ===================== HERO / CAROUSEL ===================== */
.hero-carousel {
  position: relative;
  height: 85vh;
  min-height: 550px;
  overflow: hidden;
}

.hero-carousel .carousel-inner { height: 100%; }

.hero-carousel .carousel-item {
  height: 100%;
  position: relative;
}

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

.hero-carousel .carousel-caption-custom {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 80px;
  background: linear-gradient(90deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.35) 60%, transparent 100%);
  text-align: left;
}

.hero-carousel .carousel-caption-custom .badge-pill {
  display: inline-block;
  background: var(--accent);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  width: fit-content;
}

.hero-carousel .carousel-caption-custom h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-carousel .carousel-caption-custom p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-carousel .carousel-caption-custom .hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.hero-carousel .carousel-control-prev { left: 24px; }
.hero-carousel .carousel-control-next { right: 24px; }

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-carousel .carousel-indicators {
  bottom: 20px;
}

.hero-carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  margin: 0 4px;
  transition: var(--transition);
}

.hero-carousel .carousel-indicators button.active {
  background: var(--accent);
  width: 28px;
  border-radius: 10px;
}

/* Whatsapp float button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  color: white;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ===================== TOP INFO BAR ===================== */
.top-info-bar {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  padding: 8px 0;
}

.top-info-bar a { color: rgba(255,255,255,0.9); transition: var(--transition); }
.top-info-bar a:hover { color: var(--accent); }
.top-info-bar .sep { margin: 0 14px; opacity: 0.5; }

/* ===================== FEATURE STRIP ===================== */
.feature-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--bg-cream), var(--border));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-icon i {
  color: var(--primary);
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.feature-item:hover .feature-icon i {
  color: var(--white);
}

.feature-item h6 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text-dark);
}

.feature-item p {
  font-size: 0.77rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* ===================== PRODUCTS ===================== */
.products-section {
  background: var(--bg-cream);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
  letter-spacing: 0.5px;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--bg-cream);
}

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

.product-card:hover .product-img-wrap img { transform: scale(1.07); }

.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.product-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.weight-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.weight-btn {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  color: var(--text-medium);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.weight-btn:hover,
.weight-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}



.product-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.product-actions .btn-buy {
  flex: 1;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border: none;
  color: var(--white);
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.product-actions .btn-buy:hover {
  background: var(--secondary-light);
  transform: scale(1.02);
}

/* ===================== SLIDER (PRODUCT SHOWCASE) ===================== */
.category-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cat-tab-btn {
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text-medium);
  padding: 9px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cat-tab-btn.active,
.cat-tab-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196, 125, 26, 0.3);
}

.category-panel { display: none; }
.category-panel.active { display: block; }

.size-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

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

.size-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.size-card-body {
  padding: 16px;
}

.size-card-body h6 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.size-card-body .weight-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 50px;
  margin-bottom: 8px;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 50%, var(--primary-dark) 100%);
  padding: 70px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .cta-content { position: relative; z-index: 1; }

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===================== ABOUT PREVIEW ===================== */
.about-preview {
  background: var(--white);
}

.stat-box {
  text-align: center;
  padding: 24px;
  background: var(--bg-cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.stat-box:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stat-box .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-box:hover .stat-num { color: var(--white); }

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

.stat-box:hover .stat-label { color: rgba(255,255,255,0.85); }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}

.about-img-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-img-overlay .badge-text {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.about-img-overlay .badge-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-medium);
}

.check-list li .check-icon {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section {
  background: linear-gradient(135deg, var(--bg-cream), var(--white));
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

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

.stars { color: var(--accent); font-size: 1rem; margin-bottom: 14px; }

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.reviewer-info .name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.reviewer-info .location {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===================== ABOUT PAGE ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 40%, var(--primary-dark) 100%);
  padding: 80px 0 60px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='6'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.85rem;
}

.breadcrumb-custom a { color: rgba(255,255,255,0.6); }
.breadcrumb-custom .sep { color: rgba(255,255,255,0.4); }
.breadcrumb-custom .current { color: var(--accent); font-weight: 600; }

.about-mission {
  background: var(--white);
}

.mission-card {
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.mission-card:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.mission-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.mission-icon i {
  color: var(--white);
}

.mission-card:hover .mission-icon { background: rgba(255,255,255,0.2); }

.mission-card h4 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

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

.mission-card:hover p { color: rgba(255,255,255,0.85); }

.quality-section {
  background: var(--bg-cream);
}

.quality-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-hover);
}

.quality-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.qf-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.qf-text h5 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.qf-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ===================== CONTACT PAGE ===================== */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

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

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.icon-orange { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; }
.icon-green { background: linear-gradient(135deg, var(--secondary), var(--secondary-light)); color: white; }
.icon-blue { background: linear-gradient(135deg, #2e7cd9, #1a5fb4); color: white; }
.icon-purple { background: linear-gradient(135deg, #7c5cbf, #5a3a8f); color: white; }

.contact-info-card h5 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-info-card p, .contact-info-card a {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
}

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

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-group-custom { margin-bottom: 20px; }

.form-label-custom {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: block;
}

.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(196, 125, 26, 0.1);
}

textarea.form-control-custom { resize: vertical; min-height: 130px; }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ===================== FOOTER ===================== */
.footer {
  background: linear-gradient(180deg, #0f1f0c 0%, #0a1508 100%);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 0;
}

.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.footer-brand .tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 300px;
}

.footer-heading {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item .fi-icon {
  width: 34px;
  height: 34px;
  background: rgba(196, 125, 26, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-bottom span { color: var(--accent); }

/* ===================== PAGE-SPECIFIC BGs ===================== */
.bg-white { background: var(--white) !important; }
.bg-cream { background: var(--bg-cream) !important; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-up { animation: fadeInUp 0.7s ease forwards; }
.animate-left { animation: fadeInLeft 0.7s ease forwards; }
.animate-right { animation: fadeInRight 0.7s ease forwards; }

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

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) {
  .hero-carousel { height: 65vh; min-height: 420px; }
  .hero-carousel .carousel-caption-custom { padding: 30px 40px; }
  .hero-carousel .carousel-caption-custom h1 { font-size: 2.4rem; }
  .section-title { font-size: 2rem; }
  .about-img-wrap img { height: 360px; }
}

@media (max-width: 767.98px) {
  .hero-carousel { height: 55vh; min-height: 380px; }
  .hero-carousel .carousel-caption-custom { padding: 20px 24px; }
  .hero-carousel .carousel-caption-custom h1 { font-size: 1.8rem; }
  .hero-carousel .carousel-caption-custom p { font-size: 0.9rem; }
  .section-pad { padding: 55px 0; }
  .section-title { font-size: 1.7rem; }
  .cta-section h2 { font-size: 1.9rem; }
  .page-hero h1 { font-size: 2.1rem; }
  .contact-form-card { padding: 26px 20px; }
  .top-info-bar .d-flex { flex-direction: column; align-items: center; gap: 6px; }
  .feature-item { border-bottom: 1px solid var(--border); padding-bottom: 16px; }
  .about-img-wrap img { height: 280px; }
}

@media (max-width: 575.98px) {
  .hero-carousel { height: 50vh; }
  .hero-carousel .carousel-caption-custom h1 { font-size: 1.5rem; }
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next { display: none; }
  .section-title { font-size: 1.5rem; }
  .product-img-wrap { height: 180px; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 50px; height: 50px; }
}
