/* ============================================
   IGNISGUARD FIRE & SAFETY - MAIN STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700;800&family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  --red: #D32F2F;
  --red-dark: #B71C1C;
  --red-light: #EF5350;
  --black: #111111;
  --black-soft: #1E1E1E;
  --grey: #F5F5F5;
  --grey-mid: #E0E0E0;
  --grey-text: #666666;
  --white: #FFFFFF;
  --yellow: #FF8F00;
  --yellow-light: #FFB300;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(211,47,47,0.15);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ---- TYPOGRAPHY ---- */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 2px;
  color: var(--black);
  line-height: 1.1;
}
.section-title span { color: var(--red); }
.section-sub {
  color: var(--grey-text);
  font-size: 1.05rem;
  margin-top: 10px;
  max-width: 520px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211,47,47,0.35);
}
.btn-secondary {
  background: var(--black);
  color: var(--white);
}
.btn-secondary:hover {
  background: #333;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.btn-lg { padding: 16px 38px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ============================================
   HEADER / NAV
   ============================================ */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 2px;
  color: var(--black);
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.logo span { color: var(--red); }

nav { display: flex; align-items: center; gap: 6px; }
nav a {
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  color: var(--black);
  transition: var(--transition);
  position: relative;
}
nav a:hover, nav a.active {
  color: var(--red);
  background: rgba(211,47,47,0.07);
}

.header-ctas { display: flex; gap: 10px; align-items: center; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--grey-mid);
  padding: 16px 20px;
  gap: 4px;
}
.mobile-menu a {
  padding: 10px 12px;
  font-weight: 600;
  border-radius: 6px;
  color: var(--black);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--red); background: rgba(211,47,47,0.07); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: var(--black);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0000 0%, #111111 50%, #1a0808 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg,
    var(--red) 0, var(--red) 1px,
    transparent 0, transparent 50%
  );
  background-size: 20px 20px;
}
.hero-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(211,47,47,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(211,47,47,0.2);
  border: 1px solid rgba(211,47,47,0.4);
  color: var(--red-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--red); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { text-align: left; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--red-light);
  letter-spacing: 1px;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.trust-item svg { opacity: 0.85; }

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--grey-mid);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(211,47,47,0.25);
}
.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.product-desc {
  font-size: 0.88rem;
  color: var(--grey-text);
  flex: 1;
  margin-bottom: 14px;
  line-height: 1.5;
}
.product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 14px;
}
.product-price .price-note {
  font-size: 0.8rem;
  color: var(--grey-text);
  font-weight: 400;
  font-family: 'Barlow', sans-serif;
}
.product-actions { display: flex; gap: 8px; }
.product-actions .btn { flex: 1; justify-content: center; }

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.about-preview {
  background: var(--grey);
}
.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--red-dark), var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(211,47,47,0.85), rgba(17,17,17,0.9));
  z-index: 1;
}
.about-img-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.about-img-inner p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 3px;
  margin-top: 10px;
}
.about-badge-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--grey-mid);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}
.about-badge svg { color: var(--red); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1.5px solid var(--grey-mid);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.why-card:hover { border-color: rgba(211,47,47,0.3); box-shadow: var(--shadow-lg); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 54px;
  height: 54px;
  background: rgba(211,47,47,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
}
.why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-desc { font-size: 0.9rem; color: var(--grey-text); line-height: 1.6; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, #8B0000 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px,
    transparent 0, transparent 50%
  );
  background-size: 16px 16px;
}
.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 30px; font-size: 1.05rem; }
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--grey); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-mid);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: var(--yellow-light); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--black-soft);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.author-name { font-weight: 700; font-size: 0.95rem; }
.author-role { font-size: 0.8rem; color: var(--grey-text); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo .logo-icon { background: var(--red); }
.footer-logo span { color: var(--red); }
.footer-about { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  font-style: normal;
}
.social-btn:hover { background: var(--red); color: var(--white); }

.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '→'; color: var(--red); font-size: 0.75rem; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.footer-contact-icon {
  width: 30px; height: 30px;
  background: rgba(211,47,47,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-light);
  flex-shrink: 0;
  font-size: 0.85rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   WHATSAPP FLOATING BTN
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  cursor: pointer;
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 30px rgba(37,211,102,0.7); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(211,47,47,0.04) 0, rgba(211,47,47,0.04) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 10px;
}
.page-hero h1 span { color: var(--red); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--red-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.mv-card {
  background: var(--grey);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border-left: 5px solid var(--red);
}
.mv-icon { font-size: 2.2rem; margin-bottom: 16px; }
.mv-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}
.mv-text { color: var(--grey-text); line-height: 1.7; }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.cert-card {
  background: var(--white);
  border: 2px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}
.cert-card:hover { border-color: var(--red); box-shadow: var(--shadow-lg); }
.cert-icon { font-size: 2.2rem; margin-bottom: 10px; }
.cert-name { font-weight: 700; font-size: 0.9rem; color: var(--black); }

.team-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-mid);
}
.value-icon {
  width: 42px; height: 42px;
  background: rgba(211,47,47,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.value-text strong { display: block; font-weight: 700; margin-bottom: 4px; font-size: 0.95rem; }
.value-text p { font-size: 0.85rem; color: var(--grey-text); }

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 30px; margin-top: 40px; }

.filter-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--grey-mid);
  height: fit-content;
  position: sticky;
  top: 90px;
}
.filter-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.filter-group { margin-bottom: 24px; }
.filter-group-title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-text);
  margin-bottom: 12px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--black-soft);
  transition: var(--transition);
  margin-bottom: 4px;
}
.filter-option:hover { background: rgba(211,47,47,0.07); color: var(--red); }
.filter-option.active { background: rgba(211,47,47,0.1); color: var(--red); font-weight: 600; }
.filter-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0;
}
.filter-option.active .filter-dot { opacity: 1; }

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.shop-count { font-size: 0.9rem; color: var(--grey-text); }
.shop-sort select {
  border: 1.5px solid var(--grey-mid);
  border-radius: 6px;
  padding: 8px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  cursor: pointer;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; margin-top: 40px; }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px;
  border: 1px solid var(--grey-mid);
  box-shadow: var(--shadow);
}
.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--black);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--black-soft);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-mid);
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211,47,47,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.contact-info-wrap { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--grey-mid);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.contact-card:hover { border-color: rgba(211,47,47,0.3); box-shadow: var(--shadow); }
.contact-card-icon {
  width: 46px; height: 46px;
  background: rgba(211,47,47,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-card-title { font-weight: 700; font-size: 0.9rem; color: var(--grey-text); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-card-value { font-size: 1rem; color: var(--black); font-weight: 600; }
.contact-card-value a { color: var(--red); }
.contact-card-value a:hover { text-decoration: underline; }

.map-placeholder {
  background: var(--grey);
  border-radius: var(--radius-lg);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey-mid);
  font-size: 2rem;
  color: var(--grey-text);
  gap: 10px;
  overflow: hidden;
}
.map-placeholder p { font-size: 0.9rem; }
.map-placeholder iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--grey-mid);
  box-shadow: var(--shadow);
  margin-top: 40px;
  margin-bottom: 40px;
}
.policy-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-top: 32px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--grey-mid);
}
.policy-content h2:first-of-type { margin-top: 0; }
.policy-content p {
  color: var(--grey-text);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  color: var(--grey-text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.policy-content a { color: var(--red); }
.policy-updated {
  display: inline-block;
  background: rgba(211,47,47,0.08);
  color: var(--red);
  border: 1px solid rgba(211,47,47,0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
}

/* ============================================
   FORM SUCCESS
   ============================================ */
.form-success {
  display: none;
  background: rgba(37,211,102,0.1);
  border: 1.5px solid #25D366;
  border-radius: 8px;
  padding: 14px 18px;
  color: #1a7a40;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 14px;
  align-items: center;
  gap: 10px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .about-preview-inner { gap: 36px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  nav, .header-ctas { display: none; }
  .hamburger { display: flex; }
  .about-preview-inner, .mission-vision-grid, .contact-layout { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .policy-content { padding: 28px 20px; }
  .contact-form-wrap { padding: 24px 18px; }
  .shop-layout { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .products-grid { grid-template-columns: 1fr; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .header-inner { height: 60px; }
}
