/* =====================================================
   TRYON FEEDS — SaaS-Level Premium Stylesheet
   Design: Clean Agricultural Luxury + Modern SaaS
   Font: Sora (display) + DM Sans (body)
   Theme: Deep navy + amber gold + cream white
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ===== TOKENS ===== */
:root {
  --navy:       #0F2B41;
  --navy-deep:  #091C2D;
  --navy-mid:   #1A3D58;
  --navy-light: #2B5270;
  --gold:       #D4972A;
  --gold-light: #F0B849;
  --gold-soft:  #FDF3E0;
  --cream:      #FAFAF7;
  --cream-2:    #F3F3EE;
  --white:      #FFFFFF;
  --text:       #0F1F2E;
  --text-2:     #3D5368;
  --text-3:     #7A94A8;
  --border:     #E2E8ED;
  --border-2:   #C8D4DC;
  --green:      #1A7A4A;
  --green-soft: #E6F4EE;

  --shadow-xs:  0 1px 4px rgba(15,43,65,0.06);
  --shadow-sm:  0 3px 12px rgba(15,43,65,0.08);
  --shadow-md:  0 8px 28px rgba(15,43,65,0.12);
  --shadow-lg:  0 20px 60px rgba(15,43,65,0.16);
  --shadow-xl:  0 32px 80px rgba(15,43,65,0.22);

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 72px;
  --font-disp: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* ===== LAYOUT ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt { background: var(--cream-2); }
.section-dark { background: var(--navy-deep); }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-disp);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: ''; width: 20px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: var(--font-disp); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--text); line-height: 1.2;
  margin-bottom: 14px;
}
.section-header p { font-size: 1rem; color: var(--text-2); max-width: 520px; margin: 0 auto; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}

.logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none;
}
.logo-img { height: 120px; width: auto; object-fit: contain; }
.logo-text {
  display: block; font-family: var(--font-disp);
  font-weight: 700; font-size: 1.15rem; color: var(--navy);
  letter-spacing: -0.01em; line-height: 1.2;
}
.logo-tagline {
  display: block; font-size: 0.62rem; color: var(--text-3);
  font-weight: 400; letter-spacing: 0.02em; margin-top: 1px;
}
.logo-icon-wrap {
  width: 38px; height: 38px; background: var(--navy);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}

.nav-links { display: flex; gap: 2px; }
.nav-links a {
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
  color: var(--text-2); padding: 8px 14px; border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--navy); background: var(--cream-2); }
.nav-links a.active { color: var(--navy); font-weight: 600; background: var(--cream-2); }

.nav-mobile-divider,
.nav-action-link,
.nav-sidebar-section,
.nav-sidebar-social { display: none; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 7px; padding: 10px 22px; border-radius: var(--r-sm);
  font-family: var(--font-disp); font-size: 0.875rem; font-weight: 600;
  transition: all 0.22s var(--ease); cursor: pointer; border: none;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--navy); color: #fff;
  box-shadow: 0 4px 16px rgba(15,43,65,0.25);
}
.btn-primary:hover {
  background: var(--navy-mid); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,43,65,0.32);
}
.btn-primary:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold); color: #fff;
  box-shadow: 0 4px 16px rgba(212,151,42,0.3);
}
.btn-gold:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,151,42,0.4);
}

.btn-outline-navy {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy); box-shadow: none;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

.btn-outline-white {
  background: rgba(255,255,255,0.1);
  color: #fff; border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); }

.btn-ghost { background: var(--cream-2); color: var(--text-2); }
.btn-ghost:hover { background: var(--border); color: var(--text); }

.btn-whatsapp { background: #25D366; color: #fff; box-shadow: 0 4px 14px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }

.btn-lg { padding: 14px 30px; font-size: 1rem; border-radius: var(--r-md); }
.btn-sm { padding: 7px 14px; font-size: 0.78rem; }
.btn-xs { padding: 5px 11px; font-size: 0.72rem; }
.btn-block { width: 100%; }
.btn-pill { border-radius: var(--r-pill); }
.btn-icon-right i, .btn-icon-right svg { margin-left: 4px; font-size: 0.8em; }

/* Mobile menu */
.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; z-index: 1001;
}
.mobile-menu-btn span {
  width: 24px; height: 2.5px; background: var(--navy);
  border-radius: 2px; transition: all 0.3s var(--ease); display: block;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BANNER HERO SLIDER ===== */
.banner-hero {
  position: relative; width: 100%;
  height: calc(100vh - var(--nav-h));
  min-height: 520px; max-height: 760px;
  margin-top: var(--nav-h); overflow: hidden;
  background: var(--navy-deep);
}
.banner-hero-inner { position: absolute; inset: 0; }
.banner-hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  opacity: 0; transition: opacity 1s var(--ease); z-index: 0;
}
.banner-hero-slide.active { opacity: 1; z-index: 1; }

.banner-hero-overlay { display: none; }
.banner-hero-content { display: none; }
.banner-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,151,42,0.18); border: 1px solid rgba(212,151,42,0.4);
  color: var(--gold-light); padding: 6px 16px; border-radius: var(--r-pill);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 22px; width: fit-content;
  backdrop-filter: blur(8px);
}
.banner-hero-content h1 {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.12; color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.banner-hero-content h1 .accent { color: var(--gold-light); }
.banner-hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  color: rgba(255,255,255,0.82); max-width: 480px;
  margin-bottom: 32px; font-weight: 300; line-height: 1.7;
}
.banner-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.banner-hero-dots {
  position: absolute; bottom: 28px; left: 8vw;
  z-index: 4; display: flex; gap: 8px; align-items: center;
}
.banner-hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.35); cursor: pointer;
  transition: all 0.3s var(--ease);
}
.banner-hero-dot.active { width: 28px; border-radius: 4px; background: var(--gold-light); }

/* Hero progress bar */
.banner-progress {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,0.1); z-index: 4;
}
.banner-progress-fill {
  height: 100%; background: var(--gold);
  width: 0%; transition: width 0.1s linear;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-bar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; max-width: 900px; margin: 0 auto;
}
.stats-item {
  text-align: center; padding: 0 20px;
  border-right: 1px solid var(--border);
}
.stats-item:last-child { border-right: none; }
.stats-num {
  font-family: var(--font-disp); font-size: 2.1rem;
  font-weight: 800; color: var(--navy); line-height: 1;
  margin-bottom: 4px;
}
.stats-num span { color: var(--gold); }
.stats-label { font-size: 0.8rem; color: var(--text-3); font-weight: 500; }

/* ===== CATALOGUE ===== */
.catalogue { background: var(--cream); }
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.catalogue-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden; transition: all 0.3s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-xs);
}
.catalogue-card:hover {
  border-color: var(--navy); transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.catalogue-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--cream-2);
}
.catalogue-img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease);
}
.catalogue-card:hover .catalogue-img { transform: scale(1.05); }
.catalogue-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--navy); color: #fff;
  font-size: 0.68rem; font-weight: 700;
  padding: 4px 10px; border-radius: var(--r-pill);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.catalogue-badge.gold { background: var(--gold); }
.catalogue-badge.green { background: var(--green); }
.catalogue-info { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.catalogue-info h3 {
  font-family: var(--font-disp); font-size: 0.98rem;
  font-weight: 700; color: var(--text); margin-bottom: 6px;
  line-height: 1.35;
}
.catalogue-info p { font-size: 0.83rem; color: var(--text-2); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.catalogue-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.catalogue-tag {
  font-size: 0.72rem; color: var(--gold); font-weight: 600;
  display: flex; align-items: center; gap: 4px;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.feature-card {
  background: var(--white); padding: 32px 24px;
  border-radius: var(--r-lg); border: 1px solid var(--border);
  text-align: center; transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-xs); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0); transition: transform 0.3s var(--ease);
  transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--r-md); margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(15,43,65,0.22);
}
.feature-card h3 {
  font-family: var(--font-disp); font-size: 0.98rem;
  font-weight: 700; color: var(--text); margin-bottom: 8px;
}
.feature-card p { font-size: 0.85rem; color: var(--text-2); line-height: 1.65; }

/* ===== PRODUCTS PREVIEW (CATEGORIES) ===== */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.product-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: all 0.3s var(--ease); box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--navy); }
.product-card-img-wrap {
  position: relative; overflow: hidden;
  height: 200px; background: var(--cream-2);
}
.product-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-card-img { transform: scale(1.06); }
.product-card-icon-wrap {
  height: 200px; background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.product-card-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 {
  font-family: var(--font-disp); font-size: 1.05rem;
  font-weight: 700; color: var(--text); margin-bottom: 8px;
}
.product-card p { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.product-card-footer { margin-top: auto; }

/* ===== PRODUCT CATALOG PAGE ===== */
.tabs-wrapper {
  display: flex; gap: 8px; justify-content: center;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 4px;
  margin-bottom: 44px;
}
.tabs-wrapper::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 9px 20px; border: 1.5px solid var(--border);
  background: var(--white); border-radius: var(--r-pill);
  cursor: pointer; font-family: var(--font-disp);
  font-weight: 600; font-size: 0.83rem; white-space: nowrap;
  transition: all 0.2s var(--ease); color: var(--text-2);
}
.tab-btn:hover { border-color: var(--navy); color: var(--navy); background: var(--cream-2); }
.tab-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.product-category.hidden { display: none; }
.product-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.product-item {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: all 0.3s var(--ease); box-shadow: var(--shadow-xs);
}
.product-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--navy-light); }
.product-item-img {
  width: 100%; height: 190px; object-fit: cover;
  display: block;
}
.product-item-body { padding: 20px 22px 22px; }
.product-badge {
  display: inline-block; background: var(--navy); color: #fff;
  font-size: 0.68rem; font-weight: 700; padding: 3px 10px;
  border-radius: var(--r-pill); letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 10px;
}
.product-item h3 {
  font-family: var(--font-disp); font-size: 1rem;
  font-weight: 700; color: var(--text); margin-bottom: 7px;
}
.product-item > p { font-size: 0.85rem; color: var(--text-2); margin-bottom: 12px; line-height: 1.6; }
.product-features { margin-bottom: 14px; display: flex; flex-direction: column; gap: 4px; }
.product-features li {
  font-size: 0.8rem; color: var(--text-2);
  display: flex; align-items: center; gap: 6px;
}
.product-features i { color: var(--gold); font-size: 0.65rem; }
.product-actions { display: flex; gap: 8px; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text h2 {
  font-family: var(--font-disp); font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 18px;
}
.about-text p { font-size: 0.95rem; color: var(--text-2); line-height: 1.8; margin-bottom: 14px; }
.about-img-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-img-wrap img { width: 100%; object-fit: cover; }
.about-img-placeholder {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  border-radius: var(--r-xl); height: 380px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
}
.about-img-placeholder i { font-size: 4rem; margin-bottom: 12px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.about-stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px 20px;
  box-shadow: var(--shadow-xs);
}
.about-stat-num {
  font-family: var(--font-disp); font-size: 1.8rem;
  font-weight: 800; color: var(--navy); line-height: 1;
}
.about-stat-num span { color: var(--gold); }
.about-stat-label { font-size: 0.78rem; color: var(--text-3); margin-top: 3px; }

/* ===== MISSION CARDS ===== */
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mission-card {
  background: var(--white); padding: 36px 28px;
  border-radius: var(--r-lg); border: 1px solid var(--border);
  text-align: center; box-shadow: var(--shadow-xs);
  transition: all 0.3s var(--ease);
}
.mission-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.mission-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--r-md); margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(15,43,65,0.22);
}
.mission-card h3 {
  font-family: var(--font-disp); font-size: 1rem;
  font-weight: 700; margin-bottom: 10px; color: var(--text);
}
.mission-card p { font-size: 0.88rem; color: var(--text-2); line-height: 1.7; }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.why-item {
  background: var(--white); padding: 28px;
  border-radius: var(--r-lg); border: 1px solid var(--border);
  display: flex; gap: 18px; align-items: flex-start;
  box-shadow: var(--shadow-xs); transition: all 0.25s var(--ease);
}
.why-item:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.why-num-wrap {
  font-family: var(--font-disp); font-size: 2.2rem;
  font-weight: 800; color: var(--navy); opacity: 0.12;
  line-height: 1; flex-shrink: 0; width: 48px;
}
.why-item h4 { font-family: var(--font-disp); font-weight: 700; color: var(--text); margin-bottom: 6px; }
.why-item p { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; }

/* ===== BLOG ===== */
.blog-section { background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.blog-card {
  background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border);
  overflow: hidden; transition: all 0.3s var(--ease); box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--navy-light); }
.blog-card-img-wrap { overflow: hidden; aspect-ratio: 16/10; background: var(--cream-2); }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-card-img { transform: scale(1.06); }
.blog-card-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: 0.7rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; font-family: var(--font-disp); }
.blog-card h3 { font-family: var(--font-disp); font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.35; }
.blog-card p { font-size: 0.83rem; color: var(--text-2); line-height: 1.65; flex: 1; margin-bottom: 14px; }
.blog-card .btn { align-self: flex-start; }
.blog-all-link { text-align: center; margin-top: 40px; }

/* ===== BLOG SINGLE PAGE ===== */
.blog-single { padding: 64px 0; }
.blog-single-header { margin-bottom: 32px; }
.blog-single-date { font-size: 0.78rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-disp); margin-bottom: 8px; }
.blog-single h1 { font-family: var(--font-disp); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 12px; }
.blog-single-meta { font-size: 0.82rem; color: var(--text-3); margin-bottom: 8px; }
.blog-single-meta i { margin-right: 4px; }
.blog-single-img { width: 100%; max-height: 460px; object-fit: cover; border-radius: var(--r-xl); margin-bottom: 32px; box-shadow: var(--shadow-lg); }
.blog-single-content { font-size: 0.95rem; color: var(--text-2); line-height: 1.85; max-width: 780px; margin: 0 auto; }
.blog-single-content h2 { font-family: var(--font-disp); font-size: 1.4rem; color: var(--text); margin: 32px 0 14px; font-weight: 700; }
.blog-single-content h3 { font-family: var(--font-disp); font-size: 1.15rem; color: var(--text); margin: 28px 0 10px; font-weight: 600; }
.blog-single-content p { margin-bottom: 16px; }
.blog-single-content ul, .blog-single-content ol { margin: 0 0 16px 24px; }
.blog-single-content li { margin-bottom: 6px; }
.blog-single-content img { max-width: 100%; border-radius: var(--r-md); margin: 20px 0; }
.blog-single-content blockquote { border-left: 3px solid var(--gold); padding: 12px 20px; margin: 20px 0; background: var(--cream-2); border-radius: 0 var(--r-sm) var(--r-sm) 0; font-style: italic; color: var(--text-2); }
.blog-single-content a { color: var(--navy); text-decoration: underline; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--navy-deep); }
.testimonials .section-eyebrow { color: var(--gold-light); }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: rgba(255,255,255,0.6); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg); padding: 28px;
  transition: all 0.3s var(--ease);
}
.testimonial-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(212,151,42,0.3); }
.t-stars { color: var(--gold-light); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.t-quote {
  font-size: 0.92rem; color: rgba(255,255,255,0.8);
  line-height: 1.75; margin-bottom: 20px; font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-disp); font-weight: 700; color: #fff; font-size: 0.9rem;
  flex-shrink: 0;
}
.t-name { font-family: var(--font-disp); font-weight: 600; color: #fff; font-size: 0.9rem; }
.t-role { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(130deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,151,42,0.12), transparent 70%);
  pointer-events: none;
}
.cta-content { text-align: center; color: #fff; position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-disp); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; margin-bottom: 14px;
}
.cta-content p { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 40px; align-items: start; }
.contact-form-wrapper {
  background: var(--white); border-radius: var(--r-xl);
  padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.contact-form-wrapper h2 {
  font-family: var(--font-disp); font-size: 1.5rem; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.contact-form-wrapper > p { font-size: 0.9rem; color: var(--text-2); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .form-group-full { grid-column: 1 / -1; }
.form-group { margin-bottom: 0; }
.form-group label {
  display: block; font-weight: 600; font-size: 0.82rem;
  margin-bottom: 7px; color: var(--text); letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text);
  background: var(--cream); transition: all 0.2s var(--ease);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--navy);
  background: var(--white); box-shadow: 0 0 0 3px rgba(15,43,65,0.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit-row { margin-top: 20px; }
.form-success {
  text-align: center; padding: 40px;
  background: var(--green-soft); border-radius: var(--r-md);
}
.form-success i { font-size: 2.5rem; color: var(--green); margin-bottom: 12px; }
.form-success h3 { color: var(--green); margin-bottom: 8px; font-family: var(--font-disp); }
.form-success p { font-size: 0.9rem; color: var(--text-2); }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  background: var(--white); padding: 20px;
  border-radius: var(--r-md); border: 1px solid var(--border);
  box-shadow: var(--shadow-xs); display: flex; align-items: flex-start; gap: 14px;
  transition: all 0.2s var(--ease);
}
.info-card:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.info-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 0.9rem;
}
.info-card h3 { font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.info-card p, .info-card a { font-size: 0.84rem; color: var(--text-2); }
.info-card a:hover { color: var(--navy); }

/* ===== MAP ===== */
.map-section { padding: 0; }
.map-wrapper { overflow: hidden; border-radius: 0; }
.map-wrapper iframe { display: block; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(130deg, var(--navy-deep), var(--navy));
  color: #fff; padding: 140px 0 72px; text-align: center;
  position: relative; overflow: hidden;
}
.page-header::after {
  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.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-header h1 {
  font-family: var(--font-disp); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1;
}
.page-header p { font-size: 1rem; opacity: 0.8; position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 16px; font-size: 0.82rem;
  color: rgba(255,255,255,0.6); position: relative; z-index: 1;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: 0.6rem; }

/* ===== PRODUCT DETAIL ===== */
.product-detail-section { padding: 64px 0; }
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy); font-weight: 600; font-size: 0.88rem;
  margin-bottom: 28px; transition: gap 0.2s;
}
.back-link:hover { gap: 10px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-detail-img-wrap {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-xl); position: relative;
}
.product-detail-img { width: 100%; display: block; }
.product-detail-info {}
.product-detail-info h1 {
  font-family: var(--font-disp); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.25;
}
.product-detail-category {
  display: inline-block; background: var(--cream-2); color: var(--navy);
  padding: 4px 12px; border-radius: var(--r-pill);
  font-size: 0.78rem; font-weight: 600; margin-bottom: 14px; border: 1px solid var(--border);
}
.product-detail-desc { font-size: 0.95rem; color: var(--text-2); line-height: 1.75; margin-bottom: 22px; }
.product-detail-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 26px; }
.product-detail-features li { font-size: 0.9rem; color: var(--text-2); display: flex; align-items: center; gap: 8px; }
.product-detail-features i { color: var(--gold); }
.product-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); }
.footer-main { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-brand {}
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-text {
  font-family: var(--font-disp); font-weight: 700;
  font-size: 1.1rem; color: #fff;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.75; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.6);
  transition: all 0.2s var(--ease); font-size: 0.88rem;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer h4 {
  color: #fff; font-family: var(--font-disp); font-size: 0.88rem;
  font-weight: 700; margin-bottom: 18px; letter-spacing: 0.02em;
}
.footer ul { display: flex; flex-direction: column; gap: 9px; }
.footer ul li i { margin-right: 8px; color: rgba(255,255,255,0.35); width: 14px; font-size: 0.75rem; }
.footer ul a {
  font-size: 0.84rem; color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--gold-light); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.08); }
.footer-bottom {
  padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; font-size: 0.78rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-bottom-links a:hover { color: #fff; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 1.7rem;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  z-index: 999; transition: all 0.3s var(--ease-spring);
}
.whatsapp-float:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 10px 36px rgba(37,211,102,0.55); }
.whatsapp-float::before {
  content: 'Chat with us';
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--navy-deep); color: #fff; font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 500; white-space: nowrap;
  padding: 6px 12px; border-radius: var(--r-sm);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s; box-shadow: var(--shadow-sm);
}
.whatsapp-float:hover::before { opacity: 1; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 28px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0); }
}
.whatsapp-float { animation: waPulse 2.5s ease infinite; }

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

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }

/* ===== PAGE CONTENT ===== */
.page-content { line-height: 1.8; color: var(--text-2); }
.page-content h2 { font-family: var(--font-disp); color: var(--text); margin: 28px 0 12px; font-size: 1.35rem; }
.page-content p { margin-bottom: 14px; }

/* ===== UTILITY ===== */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 62px; }
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }

  /* Nav mobile — sidebar right side */
  .nav-links {
    position: fixed; top: var(--nav-h); right: 0; width: 280px; max-width: 75vw;
    height: calc(100vh - var(--nav-h)); background: var(--white); flex-direction: column;
    padding: 20px 0 24px; gap: 0; z-index: 998;
    overflow-y: auto; box-shadow: -6px 0 30px rgba(0,0,0,0.15);
    transform: translateX(100%); display: flex;
    transition: transform 0.3s var(--ease);
  }
  .nav-links.active { transform: translateX(0); }
  .nav-links li { display: block; }
  .nav-links a { display: block; padding: 14px 24px; font-size: 1rem; border-radius: 0; border-bottom: 1px solid var(--border); }
  .nav-links a:hover { background: var(--cream-2); }
  .nav-links .active { background: var(--cream-2); font-weight: 600; }

  /* Sidebar overlay */
  .nav-overlay {
    position: fixed; inset: 0; z-index: 997;
    background: rgba(9,28,45,0.5);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s var(--ease);
  }
  .nav-overlay.active { opacity: 1; pointer-events: auto; }

  .nav-actions .btn,
  .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-mobile-divider { display: block; height: 1px; background: var(--border); margin: 0; }
  .nav-action-link { display: flex !important; align-items: center; gap: 10px; padding: 14px 24px !important; background: transparent !important; font-weight: 500 !important; color: var(--navy) !important; border-bottom: 1px solid var(--border); }
  .nav-action-link:hover { background: var(--cream-2) !important; color: var(--navy) !important; }
  .nav-action-link.wa { background: rgba(37,211,102,0.08) !important; color: #1a7a4a !important; font-weight: 600 !important; border-bottom: none; }
  .nav-action-link.wa:hover { background: #25D366 !important; color: #fff !important; }
  .nav-sidebar-section { display: block; padding: 16px 24px 4px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); font-family: var(--font-disp); }
  .nav-sidebar-social { display: flex; gap: 10px; padding: 14px 24px; }
  .nav-social-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--cream-2); display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 1rem; transition: all 0.2s; border: 1px solid var(--border); }
  .nav-social-icon:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

  /* Banner */
  .banner-hero { height: 80vw; min-height: 340px; max-height: 500px; }
  .banner-hero-content { padding: 0 6vw; }
  .banner-hero-content h1 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .banner-hero-sub { font-size: 0.85rem; margin-bottom: 18px; }
  .banner-hero-actions .btn-lg { padding: 10px 20px; font-size: 0.88rem; }
  .banner-hero-dots { bottom: 14px; left: 6vw; }

  /* Stats */
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stats-item { padding: 14px 10px; }
  .stats-item:nth-child(2) { border-right: none; }
  .stats-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stats-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

  .section-header h2 { font-size: 1.6rem; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .feature-card { padding: 22px 16px; }
  .catalogue-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .mission-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .banner-hero-actions { flex-direction: column; gap: 10px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .features-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .catalogue-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .contact-form-wrapper { padding: 24px 18px; }
  .why-item { flex-direction: column; gap: 6px; }
  .why-num-wrap { font-size: 1.6rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* Safe-area notch */
@supports (padding: env(safe-area-inset-bottom)) {
  .footer-bottom { padding-bottom: calc(20px + env(safe-area-inset-bottom)); }
  .whatsapp-float { bottom: calc(28px + env(safe-area-inset-bottom)); right: calc(28px + env(safe-area-inset-right)); }
}

/* PWA feel */
body { -webkit-tap-highlight-color: transparent; overscroll-behavior: none; }
.btn, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }