/* ═══════════════════════════════════════════════════════════════════════════
   Shiloh Ridge Tradings Ltd — Main Stylesheet
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
  --navy: #0A1628;
  --steel: #2C3E50;
  --electric: #007BFF;
  --gold: #D4AF37;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Lato', sans-serif;
}

/* ── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--steel);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--steel); border-radius: 4px; }

/* ── Utility ───────────────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section-label {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  font-weight: 600;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 0.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.btn-electric { background: var(--electric); color: var(--white); }
.btn-electric:hover { background: #0056b3; }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #c9a030; }

/* ── NAVBAR ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 22, 40, 0.95);
  padding: 1rem 0;
  transition: all 0.3s;
}
.navbar.scrolled {
  background: var(--navy);
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-brand {
  display: flex; align-items: center; gap: 0.75rem;
}
.navbar-brand .logo-icon {
  width: 40px; height: 40px;
  background: var(--gold); border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.navbar-brand:hover .logo-icon { transform: scale(1.1); }
.navbar-brand .logo-icon svg { color: var(--navy); }
.navbar-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.1em;
  display: block; line-height: 1.2;
}
.navbar-brand .brand-tagline {
  color: var(--gold); font-size: 0.625rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-family: var(--font-body);
}

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-heading);
  font-size: 0.875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.5rem 1rem; border-radius: 0.25rem;
  transition: all 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white); background: rgba(255,255,255,0.1);
}
.nav-links a.active { color: var(--gold); }

/* Products dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-heading);
  font-size: 0.875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.5rem 1rem; border-radius: 0.25rem;
  display: flex; align-items: center; gap: 0.25rem;
  transition: all 0.3s; cursor: pointer;
}
.nav-dropdown-toggle:hover, .nav-dropdown.open .nav-dropdown-toggle {
  color: var(--white); background: rgba(255,255,255,0.1);
}
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--white); border-radius: 0.75rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  min-width: 240px; padding: 0.5rem;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(4px);
}
.nav-dropdown-menu a {
  display: block; padding: 0.625rem 1rem;
  color: var(--steel); font-size: 0.875rem;
  border-radius: 0.375rem; transition: all 0.2s;
  font-family: var(--font-body); letter-spacing: 0;
  text-transform: none;
}
.nav-dropdown-menu a:hover {
  background: rgba(0,123,255,0.08); color: var(--electric);
}

.nav-cta {
  background: var(--gold); color: var(--navy);
  padding: 0.5rem 1.5rem; border-radius: 0.25rem;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.875rem; text-transform: uppercase;
  letter-spacing: 0.05em; transition: all 0.3s;
}
.nav-cta:hover { background: #c9a030; }

/* Mobile menu */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--white);
  transition: all 0.3s; border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 99;
  padding: 5rem 2rem 2rem;
  flex-direction: column; gap: 0.5rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.3s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }
.mobile-menu .mobile-cta {
  margin-top: 1rem; text-align: center;
  background: var(--gold); color: var(--navy);
  padding: 0.75rem; border-radius: 0.25rem;
  font-weight: 700; border: none;
}

@media (max-width: 1023px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-slide.active img {
  animation: heroZoom 8s ease-in-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(10,22,40,0.95), rgba(10,22,40,0.85), rgba(10,22,40,0.65));
}
.hero-content { position: relative; z-index: 2; max-width: 48rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,175,55,0.2); border: 1px solid rgba(212,175,55,0.4);
  border-radius: 9999px; padding: 0.375rem 1rem; margin-bottom: 2rem;
}
.hero-badge svg { color: var(--gold); }
.hero-badge span {
  color: var(--gold); font-family: var(--font-heading);
  font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.hero h1 {
  font-size: 3.5rem; color: var(--white);
  text-transform: uppercase; line-height: 1.1; margin-bottom: 1.5rem;
}
.hero h1 .text-gold { color: var(--gold); }
.hero h1 .text-electric { color: var(--electric); }
.hero p {
  color: rgba(255,255,255,0.7); font-size: 1.25rem;
  max-width: 40rem; line-height: 1.6; margin-bottom: 2.5rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-indicators {
  position: absolute; bottom: 3rem; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.hero-dots { display: flex; gap: 0.5rem; }
.hero-dots button {
  width: 10px; height: 10px; border-radius: 9999px;
  background: rgba(255,255,255,0.4); transition: all 0.3s;
}
.hero-dots button.active {
  background: var(--gold); width: 2rem;
}
.scroll-indicator {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.3); border-radius: 9999px;
  display: flex; justify-content: center; padding-top: 0.5rem;
}
.scroll-indicator span {
  width: 4px; height: 12px; background: var(--gold);
  border-radius: 9999px; animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (min-width: 768px) {
  .hero h1 { font-size: 4.5rem; }
}

/* ── PAGE HERO (inner pages) ───────────────────────────────────────────── */
.page-hero {
  position: relative; padding: 8rem 0 5rem;
  background: var(--navy); overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-label { color: var(--electric); }
.page-hero h1 {
  font-size: 3rem; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-top: 0.5rem; margin-bottom: 1.5rem;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.125rem; max-width: 40rem; line-height: 1.6; }
@media (min-width: 768px) { .page-hero h1 { font-size: 3.75rem; } }

/* ── ABOUT SECTION (Home) ──────────────────────────────────────────────── */
.about-section { padding: 6rem 0; background: var(--white); }
.about-grid {
  display: grid; gap: 4rem; align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-grid .section-label { color: var(--electric); }
.about-grid .section-title { font-size: 2.5rem; color: var(--navy); margin: 0.5rem 0 1.5rem; }
@media (min-width: 768px) { .about-grid .section-title { font-size: 3rem; } }
.about-grid p { color: rgba(44,62,80,0.8); line-height: 1.7; margin-bottom: 1.5rem; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat-card {
  background: var(--gray-50); border-radius: 1rem;
  padding: 2rem; text-align: center;
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.3s;
}
.stat-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.stat-card .stat-icon {
  width: 56px; height: 56px;
  background: rgba(0,123,255,0.1); border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.stat-card .stat-icon svg { color: var(--electric); }
.stat-card .stat-number {
  font-family: var(--font-heading); font-size: 1.875rem;
  font-weight: 700; color: var(--navy);
}
.stat-card .stat-label {
  color: rgba(44,62,80,0.6); font-size: 0.875rem; margin-top: 0.25rem;
}

/* ── PRODUCT CATEGORIES (carousel) ─────────────────────────────────────── */
.products-section { padding: 6rem 0; background: var(--gray-50); }
.products-section .section-label { color: var(--electric); }
.products-section .section-title { font-size: 2.5rem; color: var(--navy); margin: 0.5rem 0 1rem; }
@media (min-width: 768px) { .products-section .section-title { font-size: 3rem; } }
.products-section > .container > p {
  color: var(--steel); font-size: 1.125rem;
  max-width: 40rem; margin: 0 auto 1rem;
}
.products-section .text-center { text-align: center; margin-bottom: 4rem; }

.carousel-wrapper {
  overflow: hidden; position: relative; cursor: grab;
}
.carousel-track {
  display: flex; gap: 1.5rem;
  transition: none;
}
.category-card {
  flex-shrink: 0; width: 220px;
  background: var(--white); border-radius: 1rem;
  overflow: hidden; border: 1px solid var(--gray-100);
  transition: all 0.3s; display: block;
}
.category-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border-color: rgba(0,123,255,0.3);
  transform: translateY(-4px);
}
.category-card .card-img {
  height: 128px; background: var(--navy);
  position: relative; overflow: hidden;
}
.category-card .card-img img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.6; transition: transform 0.5s;
}
.category-card:hover .card-img img { transform: scale(1.1); }
.category-card .card-img .img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.8), transparent);
}
.category-card .card-img .card-icon {
  position: absolute; bottom: 0.75rem;
  left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px;
  background: var(--electric); border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.category-card:hover .card-icon { background: var(--gold); }
.category-card .card-icon svg { color: var(--white); width: 20px; height: 20px; }
.category-card .card-body {
  padding: 1rem; text-align: center;
}
.category-card .card-body h3 {
  font-family: var(--font-heading); font-size: 0.875rem;
  font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.05em;
  transition: color 0.3s;
}
.category-card:hover .card-body h3 { color: var(--electric); }

/* Products grid (for products.html) */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.products-grid .category-card { width: auto; }

.view-all-btn { text-align: center; margin-top: 3rem; }

/* ── WHY CHOOSE US ──────────────────────────────────────────────────────── */
.why-section { padding: 6rem 0; background: var(--navy); }
.why-section .section-label { color: var(--gold); }
.why-section .section-title { font-size: 2.5rem; color: var(--white); margin: 0.5rem 0; }
@media (min-width: 768px) { .why-section .section-title { font-size: 3rem; } }
.why-grid {
  display: grid; gap: 2rem; margin-top: 4rem;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem; padding: 2rem; text-align: center;
  transition: background 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.1); }
.why-card .why-icon {
  width: 64px; height: 64px;
  background: rgba(0,123,255,0.2); border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; transition: background 0.3s;
}
.why-card:hover .why-icon { background: var(--electric); }
.why-card .why-icon svg { color: var(--electric); transition: color 0.3s; }
.why-card:hover .why-icon svg { color: var(--white); }
.why-card h3 {
  font-family: var(--font-heading); font-size: 1.25rem;
  font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.6; }

/* ── PARTNERS SECTION ──────────────────────────────────────────────────── */
.partners-section { padding: 5rem 0; background: var(--white); }
.partners-section .section-title { font-size: 2.5rem; color: var(--navy); margin-bottom: 1rem; }
@media (min-width: 768px) { .partners-section .section-title { font-size: 3rem; } }
.partners-section > .container > p {
  color: var(--steel); font-size: 1.125rem; max-width: 40rem; margin: 0 auto;
}
.partners-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 3rem;
}
@media (min-width: 640px) { .partners-grid { grid-template-columns: repeat(4, 1fr); } }
.partner-card {
  background: var(--gray-50); border-radius: 0.75rem;
  padding: 1.5rem; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 1px solid var(--gray-100); transition: all 0.3s;
}
.partner-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: rgba(0,123,255,0.2);
}
.partner-card img {
  height: 40px; width: auto; object-fit: contain;
  margin-bottom: 0.75rem; transition: transform 0.3s;
}
.partner-card:hover img { transform: scale(1.1); }
.partner-card span {
  font-family: var(--font-heading); font-size: 0.875rem;
  font-weight: 700; color: var(--steel);
  letter-spacing: 0.05em; transition: color 0.3s;
}
.partner-card:hover span { color: var(--electric); }

/* ── TESTIMONIALS ──────────────────────────────────────────────────────── */
.testimonials-section { padding: 6rem 0; background: var(--gray-50); }
.testimonials-section .section-label { color: var(--electric); }
.testimonials-section .section-title { font-size: 2.5rem; color: var(--navy); margin: 0.5rem 0; }
@media (min-width: 768px) { .testimonials-section .section-title { font-size: 3rem; } }
.testimonials-grid {
  display: grid; gap: 2rem; margin-top: 4rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--white); border-radius: 1rem;
  padding: 2rem; border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-stars svg { color: var(--gold); fill: var(--gold); width: 18px; height: 18px; }
.testimonial-stars svg.empty { color: var(--gray-200); fill: var(--gray-200); }
.testimonial-card .quote {
  color: rgba(44,62,80,0.8); font-style: italic;
  line-height: 1.7; margin-bottom: 1.5rem;
}
.testimonial-card .author-name {
  font-family: var(--font-heading); font-weight: 700;
  color: var(--navy); font-size: 1.125rem;
}
.testimonial-card .author-company { color: var(--electric); font-size: 0.875rem; }

/* ── CTA BANNER ────────────────────────────────────────────────────────── */
.cta-section {
  position: relative; padding: 6rem 0; overflow: hidden;
}
.cta-section .cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--electric), #1a56db);
}
.cta-section .container { position: relative; z-index: 2; text-align: center; max-width: 56rem; }
.cta-section h2 {
  font-size: 2.5rem; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .cta-section h2 { font-size: 3rem; } }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.125rem; margin-bottom: 2.5rem; max-width: 40rem; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ── FOOTER ────────────────────────────────────────────────────────────── */
.footer { background: var(--navy); color: var(--white); }
.footer-main { padding: 4rem 0; }
.footer-grid {
  display: grid; gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; margin: 1.5rem 0; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1); border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.footer-socials a:hover { background: var(--electric); }
.footer-socials a svg { width: 16px; height: 16px; color: var(--white); }
.footer h4 {
  font-family: var(--font-heading); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.5rem; font-size: 0.875rem;
}
.footer ul li { margin-bottom: 0.75rem; }
.footer ul li a {
  color: rgba(255,255,255,0.6); font-size: 0.875rem;
  transition: color 0.3s;
}
.footer ul li a:hover { color: var(--white); }
.footer .contact-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.footer .contact-item svg {
  color: var(--electric); flex-shrink: 0; margin-top: 2px;
  width: 18px; height: 18px;
}
.footer .contact-item span { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .footer-bottom .container { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.875rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.875rem; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ── WHATSAPP BUTTON ───────────────────────────────────────────────────── */
.whatsapp-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  background: #25D366; color: var(--white);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  animation: pulseGreen 2s infinite;
}
.whatsapp-btn:hover { background: #1da851; transform: scale(1.1); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

/* ── SCROLL TO TOP ─────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 1.5rem; right: 5rem; z-index: 90;
  background: var(--navy); color: var(--white);
  width: 44px; height: 44px; border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  opacity: 0; visibility: hidden; transition: all 0.3s;
  cursor: pointer;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--electric); }
.scroll-top svg { width: 20px; height: 20px; }

/* ── GALLERY ───────────────────────────────────────────────────────────── */
.filter-bar {
  position: sticky; top: 56px; z-index: 30;
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  padding: 1rem 0;
}
.filter-buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-btn {
  padding: 0.5rem 1rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 500;
  background: var(--gray-100); color: var(--steel);
  transition: all 0.3s; border: none; cursor: pointer;
}
.filter-btn:hover { background: var(--gray-200); }
.filter-btn.active { background: var(--electric); color: var(--white); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem; padding: 3rem 0;
}
.gallery-item {
  border-radius: 1rem; overflow: hidden; cursor: pointer;
  position: relative; aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.8), transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 {
  color: var(--white); font-family: var(--font-heading);
  font-size: 1.125rem; font-weight: 700;
}
.gallery-overlay p { color: rgba(255,255,255,0.7); font-size: 0.875rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.9);
  display: none; align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: 0.5rem;
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: var(--white); cursor: pointer;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--white); cursor: pointer;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-info {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  color: var(--white); text-align: center;
}
.lightbox-info h4 { font-family: var(--font-heading); font-size: 1.25rem; }
.lightbox-info p { color: rgba(255,255,255,0.6); font-size: 0.875rem; }

/* ── CATEGORY DETAIL ───────────────────────────────────────────────────── */
.category-detail-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem; padding: 4rem 0;
}
.product-card {
  background: var(--white); border-radius: 1rem;
  overflow: hidden; border: 1px solid var(--gray-100);
  transition: all 0.3s;
}
.product-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.product-card .product-img {
  height: 220px; overflow: hidden; cursor: pointer;
}
.product-card .product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-card .product-body { padding: 1.5rem; }
.product-card .product-body h3 {
  font-family: var(--font-heading); font-size: 1.125rem;
  font-weight: 700; color: var(--navy); margin-bottom: 0.5rem;
}
.product-card .product-body p {
  color: rgba(44,62,80,0.7); font-size: 0.875rem; line-height: 1.6;
}

/* Quote form */
.quote-form-section { padding: 4rem 0; background: var(--gray-50); }
.quote-form-card {
  background: var(--white); border-radius: 1rem;
  padding: 2.5rem; max-width: 48rem; margin: 0 auto;
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.quote-form-card h3 {
  font-family: var(--font-heading); font-size: 1.5rem;
  font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

/* ── FORMS ─────────────────────────────────────────────────────────────── */
.form-grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 640px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}
.form-group label {
  display: block; font-size: 0.875rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.375rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300); border-radius: 0.5rem;
  font-family: var(--font-body); font-size: 1rem;
  color: var(--steel); transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--electric); color: var(--white);
  padding: 0.75rem 2rem; border-radius: 0.5rem;
  font-family: var(--font-heading); font-weight: 600;
  font-size: 1.125rem; text-transform: uppercase;
  letter-spacing: 0.05em; border: none;
  cursor: pointer; transition: background 0.3s;
}
.form-submit:hover { background: #0056b3; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success {
  background: #d1fae5; border: 1px solid #6ee7b7;
  color: #065f46; padding: 1.5rem; border-radius: 0.5rem;
  text-align: center; display: none;
}
.form-success.show { display: block; }

/* ── CONTACT PAGE ──────────────────────────────────────────────────────── */
.contact-grid {
  display: grid; gap: 4rem; padding: 4rem 0;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.5fr; } }
.contact-info-card {
  background: var(--navy); border-radius: 1rem;
  padding: 2.5rem; color: var(--white);
}
.contact-info-card h3 {
  font-family: var(--font-heading); font-size: 1.5rem;
  font-weight: 700; margin-bottom: 1.5rem;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-item .icon-wrap {
  width: 40px; height: 40px;
  background: rgba(0,123,255,0.2); border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item .icon-wrap svg { color: var(--electric); width: 20px; height: 20px; }
.contact-info-item .info-label { color: rgba(255,255,255,0.5); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-info-item .info-value { color: var(--white); font-size: 1rem; }
.contact-whatsapp {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: #25D366; color: var(--white);
  padding: 0.75rem 1.5rem; border-radius: 0.5rem;
  font-weight: 600; transition: background 0.3s;
  margin-top: 0.5rem;
}
.contact-whatsapp:hover { background: #1da851; }
.map-section { height: 400px; background: var(--gray-200); }
.map-section iframe { width: 100%; height: 100%; border: 0; }

/* ── ABOUT PAGE DETAIL ─────────────────────────────────────────────────── */
.story-section { padding: 6rem 0; }
.story-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .story-grid { grid-template-columns: 1fr 1fr; } }
.story-grid .section-title { font-size: 2.5rem; color: var(--navy); margin-bottom: 1.5rem; }
.story-grid p { color: rgba(44,62,80,0.8); line-height: 1.7; margin-bottom: 1.5rem; }
.story-image {
  border-radius: 1rem; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.story-image img { width: 100%; height: 500px; object-fit: cover; }

.values-section { padding: 6rem 0; background: var(--gray-50); }
.values-grid {
  display: grid; gap: 2rem; margin-top: 4rem;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  background: var(--white); border-radius: 1rem;
  padding: 2rem; text-align: center;
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
}
.value-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-2px); }
.value-card .value-icon {
  width: 64px; height: 64px;
  background: rgba(0,123,255,0.1); border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.value-card .value-icon svg { color: var(--electric); width: 28px; height: 28px; }
.value-card h3 {
  font-family: var(--font-heading); font-size: 1.25rem;
  font-weight: 700; color: var(--navy);
  text-transform: uppercase; margin-bottom: 0.75rem;
}
.value-card p { color: rgba(44,62,80,0.7); font-size: 0.875rem; line-height: 1.6; }

/* ── PARTNER PAGE ──────────────────────────────────────────────────────── */
.partner-detail-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem; padding: 4rem 0;
}
.partner-detail-card {
  background: var(--white); border-radius: 1rem;
  padding: 2rem; text-align: center;
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
}
.partner-detail-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border-color: rgba(0,123,255,0.2);
}
.partner-detail-card img {
  height: 48px; width: auto; object-fit: contain;
  margin: 0 auto 1rem; transition: transform 0.3s;
}
.partner-detail-card:hover img { transform: scale(1.1); }
.partner-detail-card h3 {
  font-family: var(--font-heading); font-size: 1rem;
  font-weight: 700; color: var(--navy); text-transform: uppercase;
}

.become-partner { padding: 6rem 0; background: var(--gray-50); }
.become-partner-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .become-partner-grid { grid-template-columns: 1fr 1fr; } }
.become-partner .section-title { font-size: 2.5rem; color: var(--navy); margin-bottom: 1.5rem; }
.become-partner p { color: rgba(44,62,80,0.8); line-height: 1.7; margin-bottom: 2rem; }
.benefit-list { display: flex; flex-direction: column; gap: 1rem; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.benefit-item svg { color: var(--electric); flex-shrink: 0; margin-top: 2px; width: 20px; height: 20px; }
.benefit-item span { color: rgba(44,62,80,0.8); }
.partner-cta-card {
  background: var(--navy); border-radius: 1rem;
  padding: 3rem; text-align: center;
}
.partner-cta-card h3 {
  font-family: var(--font-heading); font-size: 1.5rem;
  font-weight: 700; color: var(--white);
  text-transform: uppercase; margin-bottom: 1rem;
}
.partner-cta-card p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }

/* ── Spinner ───────────────────────────────────────────────────────────── */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Loading placeholder ───────────────────────────────────────────────── */
.loading-placeholder {
  text-align: center; padding: 4rem 2rem;
  color: rgba(44,62,80,0.5);
}
