/* Subtle designer watermark */
.designer-watermark {
  position: fixed;
  right: 2vw;
  bottom: 1.2vw;
  z-index: 9999;
  font-size: 1.1rem;
  color: #2d3e2d;
  opacity: 0.09;
  pointer-events: none;
  user-select: none;
  font-family: 'Oswald', 'Nunito Sans', sans-serif;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-shadow: 0 2px 8px #fff, 0 1px 0 #fff;
}
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Nunito+Sans:wght@400;600;700;800&display=swap");

:root {
  --surface: #ffffff;
  --ink: #2d3e2d;
  --brand: #6b9e7f;
  --accent: #5a8f68;
  --border: #dde8dd;
  --shadow: 0 18px 40px rgba(70, 100, 80, 0.06);
  --shadow-strong: 0 22px 46px rgba(70, 100, 80, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background-image: url("../img/background.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  /* subtle warm tint to harmonize with header image */
  background-color: rgba(245, 238, 226, 0.10);
  background-blend-mode: multiply;
  line-height: 1.55;
}
.site-header::before{
  content: "";
  position: absolute;
  inset: -6px; /* slightly extend beyond edges to hide seams without over-blur */
  background: url("../img/header-bg.jpeg") center 75% / cover no-repeat;
  filter: blur(2.5px) saturate(0.98);
  transform: scale(1.03);
  opacity: 0.60; /* reduced blur strength for clarity */
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 2.4rem)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  /* warm tint applied via blend-mode to match page tone */
  /* actual image rendering moved to ::before to allow clean blur/coverage */
  background-image: none;
  background-color: rgba(245, 238, 226, 0.22);
  background-blend-mode: multiply;
  border-bottom: 1px solid rgba(171, 162, 137, 0.35);
  box-shadow: 0 2px 10px rgba(75, 70, 60, 0.08);
  min-height: 96px;
  overflow: hidden;
}

.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}

.header-container {
  width: min(1160px, calc(100% - 2.4rem));
  margin: 0 auto;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 3; /* ensure content sits above blurred layer and side mask */
}

/* subtle side mask to partially hide decorative elements near edges */
.site-header::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245,238,226,0.72) 0%, rgba(245,238,226,0.0) 14%, rgba(245,238,226,0.0) 86%, rgba(245,238,226,0.72) 100%);
  pointer-events: none;
  z-index: 1;
}

.brand { 
  display: flex; 
  align-items: center; 
  gap: 0.3rem;
  flex-shrink: 0;
}
/* ensure the brand container stays pinned left and pushes other header controls right */
.brand { margin-right: auto; }

.brand-logo {
  width: 110px;
  height: auto;
  max-height: 88px;
  object-fit: contain;
  display: block;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  background: linear-gradient(145deg, var(--brand), #5a8f68);
  box-shadow: 0 6px 16px rgba(107, 158, 127, 0.2);
}

.brand-text h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-text p { 
  margin: 0; 
  color: var(--accent); 
  font-size: 0.75rem;
  font-weight: 700;
}

.brand-text { display: block; margin-left: 0.6rem; }
.brand-text h1 { font-size: 1.05rem; }
.brand-text p { font-size: 0.82rem; }

.menu-toggle {
  display: none;
  border: 1px solid #cfc6b4;
  background: rgba(255, 255, 255, 0.7);
  color: #5a4324;
  border-radius: 8px;
  width: 42px;
  height: 40px;
  cursor: pointer;
}

.nav { margin-left: 0; }

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.9rem; /* consistent spacing between nav items */
  flex-wrap: nowrap; /* prevent items from wrapping to multiple lines */
}

.nav li { display: flex; align-items: center; }

.nav li + li::before {
  content: ""; /* remove vertical separator for cleaner spacing */
  margin: 0;
}

.nav { margin-left: 0; }

.nav a {
  color: #4b3a23;
  font-weight: 800;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 0.85rem; /* slightly tighter but consistent */
  border-radius: 20px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  white-space: nowrap; /* keep single-line buttons */
}

.nav a:hover,
.nav a.active {
  color: #6a5027;
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(133, 109, 66, 0.32);
  box-shadow: 0 8px 18px rgba(98, 79, 45, 0.12);
  transform: translateY(-1px);
}

/* Responsive: scale header logo on smaller screens */
@media (max-width: 900px) {
  .brand-logo { width: 140px; max-height: 90px; }
  .header-container { min-height: 120px; }
  .nav { margin-left: 1rem; }
  .brand-text { display: none; }
}

.hero { padding: 5rem 0 3rem; }

.shop-hero {
  position: relative;
  border-radius: 18px;
  padding: clamp(2.2rem, 5vw, 4.2rem);
  color: #fff;
  /* softened overlay so hero image and text blend nicely */
  background:
    linear-gradient(100deg, rgba(107, 158, 127, 0.42), rgba(122, 179, 143, 0.30)),
    url("../img/hero-image.jpeg") right center / contain no-repeat,
    linear-gradient(130deg, rgba(107,158,127,0.88), rgba(90,143,104,0.78));
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* subtle moving sheen muted for readability */
  background: linear-gradient(120deg, transparent 0, rgba(255, 255, 255, 0.06) 45%, transparent 70%);
  transform: none;
  animation: none;
}

@keyframes heroSweep {
  0% { transform: translateX(-130%); }
  55% { transform: translateX(130%); }
  100% { transform: translateX(130%); }
}

/* Reveal animation used for elements that should fade/slide into view */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* subtle shine sweep over the hero */
.shop-hero::before {
  animation: heroSweep 8s linear infinite;
  opacity: 0.18;
  background: linear-gradient(120deg, transparent 0, rgba(255,255,255,0.38) 45%, rgba(255,255,255,0.22) 55%, transparent 70%);
  /* wider and brighter for a heavier shine */
}

/* Card hover lift and shadow */
.card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(28,40,32,0.10);
}

/* Generic reveal helper class (used across multiple markup points) */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: revealUp 0.7s ease forwards;
}

/* Nav underline that slides in on hover/active */
.nav a { position: relative; }
.nav a::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  width: 0;
  border-radius: 2px;
  transition: width 0.28s ease;
  margin-top: 6px;
}
.nav a:hover::after,
.nav a.active::after { width: 72%; }

/* Floating action button pulse and hover lift */
.floating-action-btn {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.floating-action-btn:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 14px 32px rgba(0,0,0,0.14); }
.floating-toggle-btn { animation: pulse 3.6s infinite; }
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* Subtle lift for right-side content blocks (hero content / showcase) */
.showcase-content, .hero-content {
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.showcase-content:hover, .hero-content:hover { transform: translateY(-4px); }

/* Respect user's reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .shop-hero::before, .reveal, .floating-toggle-btn, .card, .nav a::after { animation: none !important; transition: none !important; }
}

.eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  color: #ffffff; /* white text for visibility over green */
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  padding: 0.35rem 0.75rem;
}

.hero h2,
.section-title,
.section h3 {
  margin: 0.85rem 0 1.2rem;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  text-transform: uppercase;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.section-title { color: var(--ink); }
.section h3 { font-size: clamp(1.7rem, 3vw, 2.7rem); color: #1f2329; }
.section-title-compact { font-size: clamp(1.7rem, 3vw, 2.5rem); }

.lead { color: #444a55; font-size: 1.2rem; max-width: 58ch; font-weight: 600; }
.lead-inverse {
  color: #f4fff6;
  text-shadow: 0 1px 2px rgba(30, 45, 30, 0.35);
  max-width: 44ch;
  font-size: 1.15rem;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.2rem; }

.hero-wrapper {
  display: grid;
  grid-template-columns: 0.14fr 0.86fr;
  gap: 1.25rem;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0 1.2rem;
  width: 100vw;
  min-height: 100%;
  /* subtle green gradient fade from left to right - covers full height */
  background: linear-gradient(90deg, rgba(107,158,127,0.18) 0%, rgba(107,158,127,0.22) 30%, rgba(107,158,127,0.28) 100%);
}

.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6rem; /* reduced padding to avoid oversized translucent area */
  /* subtle background container to make logo pop */
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(28,40,32,0.08);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  margin: 0.4rem 0.6rem 0.4rem 1rem; /* keep spacing but avoid extending too far left */
  position: relative;
  z-index: 6; /* higher so it always sits atop gradients */
  max-width: 180px; /* constrain width so the highlight doesn't grow too large */
  overflow: hidden; /* contain the translucent background inside rounded box */
  box-sizing: border-box;
}

.hero-logo img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(107, 158, 127, 0.15));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.hero-logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 16px 40px rgba(107, 158, 127, 0.25));
}

.hero-content {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 0.35rem;
}

.btn {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.88rem 1.35rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--brand), var(--accent));
  box-shadow: 0 12px 24px rgba(107, 158, 127, 0.32);
}

.btn-primary:hover { background: linear-gradient(130deg, #5a8f68, #4d7a57); }

.btn-secondary {
  color: var(--ink);
  background: #f5f7f5;
  border: 2px solid #dde8dd;
}

.btn-secondary:hover { background: #eef2ee; }

.shop-hero .btn-primary {
  background: #4e7f5a;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 10px 20px rgba(28, 46, 33, 0.35);
}

.shop-hero .btn-primary:hover {
  background: #436f4e;
}

.shop-hero .btn-secondary {
  color: #1f2f22;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(22, 30, 24, 0.2);
}

.shop-hero .btn-secondary:hover {
  background: #ffffff;
}

.hero-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }

.chip {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.36rem 0.75rem;
}

.section { padding: 2.2rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }

.card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(221, 232, 221, 0.6);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(70, 100, 80, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(107, 158, 127, 0.15);
  border-color: #c6dcc8;
}

.card h4 {
  margin: 0 0 0.45rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 1.45rem;
  color: #1d232a;
}

.card p,
.card li { color: #4f5764; }
.card ul { margin: 0; padding-left: 1.05rem; }
.card li + li { margin-top: 0.35rem; }

.pillar { border-left: 5px solid var(--brand); }
.pillar.coffee { border-left-color: #8b6f47; }
.pillar.cardamom { border-left-color: var(--accent); }

.dark-panel {
  background: linear-gradient(130deg, #f5f7f5, #eef2ee);
  border: 1px solid #dde8dd;
  border-top: 5px solid var(--brand);
  color: var(--ink);
}

.dark-panel h3,
.dark-panel h4 { color: var(--ink); }

.dark-panel p,
.dark-panel li { color: #5a6a5c; }

.value-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; }

.value-item {
  border-radius: 12px;
  border: 1px solid rgba(221, 232, 221, 0.6);
  background: rgba(245, 247, 245, 0.9);
  padding: 0.74rem;
  text-align: center;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  color: #2b313a;
}

.shop-card { padding: 0.7rem; }
.shop-media { border-radius: 12px; overflow: hidden; border: 1px solid rgba(221, 232, 221, 0.6); }

.shop-image,
.shop-image-placeholder {
  width: 100%;
  min-height: 210px;
  object-fit: cover;
}

.shop-image-placeholder {
  display: grid;
  place-items: center;
  color: #6a717d;
  background:
    linear-gradient(135deg, #f5f7f5, #f0f4f1),
    repeating-linear-gradient(45deg, rgba(107, 158, 127, 0.03) 0 8px, rgba(107, 158, 127, 0) 8px 16px);
}

.shop-title { margin-top: 0.8rem; }
.shop-desc { margin: 0; min-height: 56px; }

.deep-dive-image {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(221, 232, 221, 0.6);
  margin-bottom: 0.6rem;
  transition: transform 0.35s ease;
}

.card:hover .deep-dive-image { transform: scale(1.03); }

.img-placeholder {
  border-radius: 12px;
  border: 1px dashed rgba(200, 192, 184, 0.5);
  min-height: 180px;
  display: grid;
  place-items: center;
  color: #69707b;
  background: rgba(245, 247, 245, 0.8);
  font-weight: 700;
}

.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.7rem; }

.metric {
  border-radius: 12px;
  border: 1px solid rgba(221, 232, 221, 0.6);
  background: rgba(245, 247, 245, 0.9);
  padding: 0.76rem;
  text-align: center;
}

.metric strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  color: var(--brand);
  display: block;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.timeline { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.8rem; }
.timeline .card { border-top: 5px solid var(--brand); }

.trust-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.7rem; }

.trust-item {
  background: #f5f7f5;
  color: var(--ink);
  border: 1px solid #dde8dd;
  border-radius: 12px;
  text-align: center;
  padding: 0.8rem;
  font-weight: 700;
  font-size: 0.95rem;
}

label { font-weight: 800; color: #2b313a; }
form { display: grid; gap: 0.78rem; }

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d8d1ca;
  background: #fff;
  padding: 0.66rem 0.7rem;
  font: inherit;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(107, 158, 127, 0.16);
}

textarea { min-height: 130px; resize: vertical; }

.form-note { color: #6a7079; font-size: 0.9rem; }
.error { color: #b0151e; font-size: 0.88rem; }
.small { font-size: 0.9rem; }
.mt-compact { margin-top: 1.2rem; }
.mt-title { margin-top: 1.1rem; }
.spaced-top { margin-top: 0.8rem; }

.admin-layout { max-width: 820px; }

.admin-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(221, 232, 221, 0.6);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.75rem;
}

.admin-list { display: grid; gap: 0.65rem; }
.admin-actions { display: flex; gap: 0.45rem; }

.site-footer {
  margin-top: 2.2rem;
  background: linear-gradient(120deg, #2d3e2d, #3d4d3d);
  color: #d8dcd8;
  border-top: 4px solid var(--brand);
  padding: 1.3rem 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-grid strong {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.quality-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid rgba(221, 232, 221, 0.7);
  box-shadow: 0 12px 32px rgba(70, 100, 80, 0.06);
}

.showcase-image {
  position: relative;
  display: grid;
  place-items: center;
}

.showcase-image img {
  width: 100%;
  max-width: 420px;
  border: 5px solid var(--brand);
  border-radius: 14px;
  display: block;
}

.showcase-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0.5rem 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.showcase-subheading {
  color: var(--brand);
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 1.4rem 0 1rem;
  display: block;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.feature-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.checkmark {
  color: var(--brand);
  font-weight: 900;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: -0.1rem;
}

.feature-item span:last-child {
  font-weight: 700;
  color: #2b313a;
  font-size: 0.95rem;
}

.showcase-footer {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-label {
  font-size: 0.85rem;
  color: #6a7079;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.contact-phone a {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brand);
  font-family: "Oswald", sans-serif;
}

.eyebrow-center {
  display: block;
  text-align: center;
  background: rgba(107, 158, 127, 0.12);
  color: var(--brand);
  border: 1px solid rgba(107, 158, 127, 0.25);
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  padding: 0.4rem 0.85rem;
  width: fit-content;
  margin: 0 auto 1.2rem;
}

.why-choose-title {
  text-align: center;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  margin: 0 0 2.4rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

/* Improve the 'Why Choose Us' container visibility while keeping theme */
.why-choose-section {
  background: rgba(255,255,255,0.96); /* subtle solid surface */
  border: 1px solid rgba(221,232,221,0.85);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 14px 36px rgba(28, 40, 32, 0.06);
  margin: 0 auto;
}

.why-choose-section .feature-card {
  background: transparent; /* keep individual cards clean */
}

@media (max-width: 900px) {
  .why-choose-section { padding: 1.2rem; border-radius: 12px; }
}

.features-showcase {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.2rem 0;
}

.features-left,
.features-right {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.showcase-center-image {
  display: grid;
  place-items: center;
  min-height: 350px;
}

.showcase-center-image img {
  width: 100%;
  max-width: 280px;
  border: 4px solid var(--brand);
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(28, 21, 21, 0.12);
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.8rem;
  border-radius: 12px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(107, 158, 127, 0.12);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
  display: block;
}

.feature-card h4 {
  margin: 0 0 0.4rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
  color: #1d232a;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #4f5764;
  line-height: 1.4;
}

.floating-contact-menu {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  z-index: 100;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0;
  box-shadow: 0 12px 28px rgba(107, 158, 127, 0.25);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease, opacity 0.28s ease;
  font-family: "Nunito Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

.floating-btn svg {
  transition: transform 0.28s ease;
}

.floating-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 16px 36px rgba(107, 158, 127, 0.35);
}

.floating-btn:hover svg {
  transform: scale(1.1);
}

.floating-action-btn {
  opacity: 0;
  transform: scale(0.4) translateY(10px);
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.28s ease, box-shadow 0.28s ease;
}

.floating-contact-menu.open .floating-action-btn {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.floating-contact-menu.open .floating-action-btn:nth-child(1) {
  transition-delay: 0.05s;
}

.floating-contact-menu.open .floating-action-btn:nth-child(2) {
  transition-delay: 0.15s;
}

.floating-email-btn {
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.floating-email-btn:hover {
  background: linear-gradient(135deg, #d53942, #cc343d);
}

.floating-whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #20ba5a);
}

.floating-whatsapp-btn:hover {
  background: linear-gradient(135deg, #20ba5a, #1aa84e);
}

.floating-toggle-btn {
  background: #ffffff;
  border: 2px solid rgba(182, 33, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-toggle-btn:hover {
  background: #f5f5f5;
  border-color: var(--brand);
}

.floating-toggle-btn.open {
  transform: rotate(45deg);
}

@media (max-width: 980px) {
  .quality-showcase {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 1.5rem;
  }

  .features-showcase {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .showcase-center-image {
    min-height: 300px;
  }

  .grid-2,
  .hero-grid { grid-template-columns: 1fr; }

  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .metric-grid,
  .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .timeline { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-grid; place-items: center; }

  .header-inner { flex-wrap: wrap; padding: 0.5rem 0; }

  .header-container {
    flex-wrap: wrap;
    justify-content: space-between;
    min-height: 88px;
    gap: 0.7rem;
  }

  .nav { display: none; width: 100%; }
  .nav.open { display: block; }

  .nav li + li::before { content: none; }

  .nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding-bottom: 0.55rem;
  }

  .nav a {
    font-size: 1rem;
    padding: 0.42rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .brand-logo {
    width: 86px;
    height: 86px;
  }

  .grid-3,
  .value-grid,
  .metric-grid,
  .trust-strip { grid-template-columns: 1fr; }

  .hero { padding-top: 1.8rem; }

  .hero h2,
  .section-title,
  .section h3 { line-height: 1.1; }

  .features-grid { grid-template-columns: 1fr; }

  .showcase-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .why-choose-title { font-size: clamp(1.6rem, 5vw, 2.8rem); }

  .features-showcase { gap: 1.2rem; padding: 1rem 0; }

  .showcase-center-image { min-height: 250px; }

  .showcase-center-image img { max-width: 220px; }

  .feature-card {
    padding: 0.6rem;
    border-radius: 10px;
  }

  .feature-icon { font-size: 2rem; margin-bottom: 0.4rem; }

  .feature-card h4 { font-size: 1rem; }

  .feature-card p { font-size: 0.85rem; }

  .floating-contact-menu {
    bottom: 1.2rem;
    right: 1.2rem;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
  }

  .floating-btn svg {
    width: 20px;
    height: 20px;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-logo img {
    max-width: 200px;
  }
}

.brand-logo {
  
  object-fit: contain;
  display: block;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.about-hero {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(135deg, rgba(182, 33, 42, 0.08), rgba(15, 124, 87, 0.06));
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}

.about-logo-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-section-logo {
  width: 220px;
  height: 220px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(182, 33, 42, 0.25));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.about-logo-side:hover .about-section-logo {
  transform: scale(1.06);
  filter: drop-shadow(0 20px 48px rgba(182, 33, 42, 0.35));
}

.about-intro-side .lead {
  font-size: 1.05rem;
  color: #4f5764;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .about-section-logo {
    width: 180px;
    height: 180px;
  }
}
