/* ============================================
   EVERMOND - COMPONENTS & PAGE-SPECIFIC
   ============================================ */

/* ===== SPLIT SECTIONS ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 3rem; }
}

.split-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-image.with-frame {
  position: relative;
}

.split-image.with-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--color-secondary);
  z-index: -1;
}

.split-image-stack {
  position: relative;
  aspect-ratio: 1 / 1;
}

.split-image-stack .img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.split-image-stack .img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.split-image-stack .img-main img,
.split-image-stack .img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gold-tag {
  display: inline-block;
  font-family: var(--font-heading);
  color: var(--color-secondary-dark);
  font-style: italic;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.split-content h2 {
  margin-bottom: 1.5rem;
}

.split-content .lead {
  margin-bottom: 2rem;
}

.bullet-list {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bullet-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.bullet-list li::before {
  content: '';
  width: 24px;
  height: 24px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230F3D2E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

.bullet-list li strong {
  color: var(--color-primary);
  font-weight: 600;
}

/* ===== STATS BLOCK ===== */
.stats-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (max-width: 768px) {
  .stats-block { grid-template-columns: repeat(2, 1fr); }
}

.stat-cell {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.stat-cell:last-child { border-right: none; }

@media (max-width: 768px) {
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.stat-cell .value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  color: var(--color-secondary);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-cell .label {
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--color-secondary), transparent);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  padding-bottom: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--color-secondary);
  border: 3px solid var(--color-bg);
  border-radius: 50%;
  z-index: 1;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-secondary-dark);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.timeline-desc {
  color: var(--color-text-light);
  font-size: 0.9375rem;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
}

@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem 1rem; }
}

@media (max-width: 640px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

.process-step {
  text-align: center;
  position: relative;
  padding: 1rem;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -8px;
  width: 16px;
  height: 1px;
  background: var(--color-secondary);
}

.process-step:last-child::after { display: none; }

@media (max-width: 1024px) {
  .process-step:nth-child(3)::after { display: none; }
}

.process-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  position: relative;
  transition: all 0.4s ease;
}

.process-number::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--color-secondary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
}

.process-step:hover .process-number {
  background: var(--color-primary);
  color: var(--color-secondary);
  border-color: var(--color-primary);
}

.process-step:hover .process-number::before {
  opacity: 1;
  inset: -10px;
}

.process-step h4 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin: 0;
}

/* ===== WORLD MAP ===== */
.world-section {
  position: relative;
  overflow: hidden;
}

.world-map {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.world-map svg {
  width: 100%;
  height: auto;
  display: block;
}

.world-map .continent {
  fill: var(--color-primary-light);
  stroke: var(--color-secondary);
  stroke-width: 0.5;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.world-map .continent:hover {
  opacity: 0.9;
}

.map-marker {
  fill: var(--color-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-marker:hover {
  fill: var(--color-white);
  transform: scale(1.2);
}

.region-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.region-tab {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 168, 93, 0.3);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.region-tab.active,
.region-tab:hover {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  border-color: var(--color-secondary);
}

.region-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .region-stats { grid-template-columns: repeat(2, 1fr); }
}

.region-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 168, 93, 0.15);
  text-align: center;
}

.region-card h4 {
  color: var(--color-secondary);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.region-card .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.region-card .countries {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== CERTIFICATIONS ===== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .cert-grid { grid-template-columns: 1fr; }
}

.cert-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.cert-card:hover::before { transform: scaleX(1); }
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cert-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.cert-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.cert-card p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.cert-meta {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary-dark);
  font-weight: 600;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  position: relative;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease;
}

.testimonial:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-secondary);
  line-height: 1;
  opacity: 0.3;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  color: var(--color-secondary);
}

.testimonial-rating svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-style: italic;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-info strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
}

.testimonial-info span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.faq-question:hover { color: var(--color-secondary-dark); }

.faq-toggle {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.open .faq-toggle {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 0 1.75rem;
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 720px;
}

/* ===== CLIENT LOGOS ===== */
.logo-strip {
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.logo-strip-title {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-weight: 600;
}

.logo-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.6;
}

.client-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text-light);
  letter-spacing: 0.08em;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.client-logo:hover {
  color: var(--color-primary);
  opacity: 1;
}

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

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(200, 168, 93, 0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(200, 168, 93, 0.1), transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-group {
  justify-content: center;
}

/* ===== PRODUCT DETAIL ===== */
.product-hero {
  padding: 11rem 0 5rem;
  background: var(--color-bg-alt);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .product-hero-grid { grid-template-columns: 1fr; }
}

.product-gallery {
  position: sticky;
  top: 8rem;
}

.product-gallery-main {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--color-white);
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.product-gallery-thumb {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
  border-color: var(--color-secondary);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info h1 {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  margin-bottom: 1rem;
}

.product-detail-info .tagline {
  font-style: italic;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-secondary-dark);
  margin-bottom: 2rem;
}

.product-attrs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2rem;
}

.product-attr {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-attr .key {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

.product-attr .val {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.spec-table th,
.spec-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.spec-table th {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  background: var(--color-bg-alt);
  width: 40%;
}

.spec-table td {
  color: var(--color-text);
  font-size: 0.9375rem;
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s ease;
}

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

.blog-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.blog-body {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

.blog-meta .category {
  color: var(--color-secondary-dark);
}

.blog-meta .dot {
  width: 4px;
  height: 4px;
  background: var(--color-text-muted);
  border-radius: 50%;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.25;
  font-weight: 500;
}

.blog-excerpt {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-form-wrap {
  background: var(--color-white);
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
  .contact-form-wrap { padding: 2rem 1.5rem; }
}

.contact-info-card {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 3rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 168, 93, 0.2), transparent 60%);
}

.contact-info-card h3 {
  color: var(--color-white);
  margin-bottom: 1rem;
  position: relative;
}

.contact-info-card > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  position: relative;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 168, 93, 0.15);
  border: 1px solid var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
}

.contact-info-text strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-info-text p {
  color: var(--color-white);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.5;
}

.contact-info-text a {
  color: var(--color-white);
}

.contact-info-text a:hover {
  color: var(--color-secondary);
}

.office-hours {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.office-hours h6 {
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.office-hours p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0.25rem 0;
}

/* ===== PRODUCT FILTER ===== */
.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.625rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  transition: all 0.3s ease;
}

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

/* ===== TABS ===== */
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2.5rem;
  overflow-x: auto;
}

.tab-btn {
  padding: 1.25rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: transparent;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-secondary);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== PACKAGING SHOWCASE ===== */
.packaging-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) { .packaging-grid { grid-template-columns: 1fr; } }

.packaging-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all 0.4s ease;
}

.packaging-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.packaging-img {
  aspect-ratio: 1 / 1;
  margin-bottom: 1.5rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.packaging-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.packaging-card h4 {
  margin-bottom: 0.75rem;
}

.packaging-specs {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.packaging-specs li {
  font-size: 0.875rem;
  color: var(--color-text-light);
  padding-left: 1.5rem;
  position: relative;
}

.packaging-specs li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-size: 1.5rem;
  line-height: 1;
  top: 0;
}

/* ===== BENTO LAYOUT (Why Choose Us) ===== */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
}

.bento-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease;
}

.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bento-item-1 { grid-column: span 2; grid-row: span 2; background: var(--color-primary); color: var(--color-white); }
.bento-item-2 { grid-column: span 2; }
.bento-item-3 { grid-column: span 1; }
.bento-item-4 { grid-column: span 1; }

@media (max-width: 1024px) {
  .bento-item-1, .bento-item-2 { grid-column: span 2; grid-row: span 1; min-height: 240px; }
  .bento-item-3, .bento-item-4 { grid-column: span 1; min-height: 240px; }
}

.bento-item h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.bento-item-1 h3 { color: var(--color-white); font-size: 2rem; }
.bento-item-1 p { color: rgba(255, 255, 255, 0.85); }

.bento-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 168, 93, 0.12);
  color: var(--color-secondary-dark);
  border-radius: 50%;
}

.bento-item-1 .bento-icon {
  background: rgba(200, 168, 93, 0.2);
  color: var(--color-secondary);
}

.bento-icon svg {
  width: 22px;
  height: 22px;
}

.bento-item .stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-primary);
  line-height: 1;
  margin-top: 0.5rem;
}

.bento-item-1 .stat-num { color: var(--color-secondary); font-size: 4rem; }

/* ===== QUALITY CONTROL STEPS ===== */
.qc-process {
  position: relative;
}

.qc-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.qc-step:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .qc-step { grid-template-columns: 1fr; gap: 2rem; }
}

.qc-step:nth-child(even) .qc-image { order: 2; }

@media (max-width: 900px) {
  .qc-step:nth-child(even) .qc-image { order: 0; }
}

.qc-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
}

.qc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qc-image .qc-number {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-white);
  line-height: 1;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.qc-content h6 {
  margin-bottom: 0.75rem;
}

.qc-content h3 {
  margin-bottom: 1.25rem;
}

/* ===== VALUE TILES (Sustainability, Values) ===== */
.value-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) { .value-tiles { grid-template-columns: 1fr; } }

.value-tile {
  padding: 2.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all 0.4s ease;
}

.value-tile:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

.value-tile-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}

.value-tile h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.value-tile p {
  font-size: 0.9375rem;
  margin: 0;
}

/* ===== MARQUEE STRIP ===== */
.marquee {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  padding: 1.25rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
}

.marquee-item::after {
  content: '✦';
  color: var(--color-primary);
  margin-left: 4rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   LUXURY PRODUCT TILES (per-variety branded)
   ============================================ */

.lux-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, #1a2820 0%, #0a1410 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem 1.5rem;
  color: #fff;
  transition: all 0.6s var(--ease);
}

.lux-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(200, 168, 93, 0.35), transparent 70%),
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(0, 0, 0, 0.4), transparent);
  z-index: 1;
}

.lux-tile::after {
  content: '';
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(200, 168, 93, 0.18);
  pointer-events: none;
  z-index: 3;
  transition: border-color 0.4s ease;
}

.lux-tile:hover::after { border-color: rgba(200, 168, 93, 0.6); }
.lux-tile:hover { transform: translateY(-4px); }

.lux-tile .lux-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: saturate(0.85);
  transition: opacity 0.5s, transform 0.8s var(--ease);
}

.lux-tile:hover .lux-bg { opacity: 0.5; transform: scale(1.05); }

.lux-tile .lux-letter {
  position: absolute;
  bottom: -10%;
  right: -5%;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22rem;
  line-height: 0.85;
  color: rgba(200, 168, 93, 0.08);
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.lux-tile .lux-palm {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  z-index: 3;
  opacity: 0.7;
}

.lux-tile .lux-palm svg { width: 100%; height: 100%; fill: var(--color-secondary); }

.lux-tile .lux-top {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.lux-tile .lux-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-secondary);
  border: 1px solid rgba(200, 168, 93, 0.5);
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
}

.lux-tile .lux-bottom {
  position: relative;
  z-index: 4;
}

.lux-tile .lux-origin {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lux-tile .lux-origin::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--color-secondary);
}

.lux-tile .lux-name {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1;
  letter-spacing: -0.01em;
}

.lux-tile .lux-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.lux-tile .lux-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
  padding-top: 1rem;
  border-top: 1px solid rgba(200, 168, 93, 0.25);
  width: 100%;
  transition: gap 0.3s ease;
}

.lux-tile:hover .lux-cta { gap: 0.875rem; }
.lux-tile .lux-cta svg { width: 12px; height: 12px; }

/* Per-variety color palettes */
.lux-tile.var-medjool { background: linear-gradient(160deg, #3d1e0a 0%, #1a0a04 100%); }
.lux-tile.var-medjool::before { background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(220, 150, 80, 0.35), transparent 70%); }

.lux-tile.var-deglet { background: linear-gradient(160deg, #4a3015 0%, #1f1408 100%); }
.lux-tile.var-deglet::before { background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(230, 175, 90, 0.4), transparent 70%); }

.lux-tile.var-sukkari { background: linear-gradient(160deg, #4d3a18 0%, #1f1606 100%); }
.lux-tile.var-sukkari::before { background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(245, 195, 100, 0.45), transparent 70%); }

.lux-tile.var-ajwa { background: linear-gradient(160deg, #1a0f0a 0%, #050302 100%); }
.lux-tile.var-ajwa::before { background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(180, 120, 60, 0.25), transparent 70%); }

.lux-tile.var-barhi { background: linear-gradient(160deg, #4a2810 0%, #1c0d05 100%); }
.lux-tile.var-barhi::before { background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(235, 165, 80, 0.4), transparent 70%); }

.lux-tile.var-safawi { background: linear-gradient(160deg, #261610 0%, #0a0604 100%); }
.lux-tile.var-safawi::before { background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(200, 135, 70, 0.3), transparent 70%); }

.lux-tile.var-khalas { background: linear-gradient(160deg, #3d2412 0%, #170d06 100%); }
.lux-tile.var-khalas::before { background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(220, 155, 80, 0.35), transparent 70%); }

.lux-tile.var-mabroom { background: linear-gradient(160deg, #2e1a0d 0%, #100905 100%); }
.lux-tile.var-mabroom::before { background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(195, 130, 65, 0.3), transparent 70%); }

.lux-tile.var-siwa { background: linear-gradient(160deg, #15263d 0%, #060d18 100%); }
.lux-tile.var-siwa::before { background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(200, 168, 93, 0.4), transparent 70%); }

.lux-tile.var-zahidi { background: linear-gradient(160deg, #4d3818 0%, #1f1607 100%); }
.lux-tile.var-zahidi::before { background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(240, 190, 95, 0.4), transparent 70%); }

.lux-tile.var-anbara { background: linear-gradient(160deg, #2a1408 0%, #0d0603 100%); }
.lux-tile.var-anbara::before { background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(210, 145, 75, 0.32), transparent 70%); }

.lux-tile.var-organic { background: linear-gradient(160deg, #0f3d2e 0%, #051a14 100%); }
.lux-tile.var-organic::before { background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(63, 140, 74, 0.4), transparent 70%); }

/* ============================================
   LUXURY HERO (premium custom)
   ============================================ */
.lux-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #050f0a 0%, #0F3D2E 45%, #082218 100%);
  color: #fff;
  overflow: hidden;
  padding: 9rem 0 5rem;
}

.lux-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 30%, rgba(200, 168, 93, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(200, 168, 93, 0.1), transparent 60%);
  z-index: 0;
}

.lux-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.lux-hero-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
}

.lux-hero-deco svg { width: 100%; height: 100%; }

.lux-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 900px) {
  .lux-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.lux-hero h1 {
  color: #fff;
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 1.04;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.lux-hero h1 em {
  font-style: italic;
  color: var(--color-secondary);
}

.lux-hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

.lux-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.lux-hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.lux-hero-meta-item .label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.lux-hero-meta-item .value {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  color: #fff;
  line-height: 1;
}

/* Right-side product showcase */
.lux-hero-showcase {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin: 0 auto;
}

.lux-hero-showcase-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 168, 93, 0.3);
  border-radius: 50%;
}

.lux-hero-showcase-frame.f2 { inset: 6%; border-color: rgba(200, 168, 93, 0.5); }
.lux-hero-showcase-frame.f3 { inset: 14%; border-color: rgba(200, 168, 93, 0.7); }

.lux-hero-showcase-img {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(200, 168, 93, 0.4);
}

.lux-hero-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-hero-badge-float {
  position: absolute;
  background: rgba(15, 61, 46, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 168, 93, 0.4);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.lux-hero-badge-float .icon {
  width: 36px;
  height: 36px;
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.lux-hero-badge-float .icon svg { width: 18px; height: 18px; }

.lux-hero-badge-float .text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.lux-hero-badge-float .text small {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.lux-hero-badge-float.bf1 { top: 8%; left: -8%; }
.lux-hero-badge-float.bf2 { bottom: 12%; right: -10%; }
.lux-hero-badge-float.bf3 { bottom: 35%; left: -12%; }

@media (max-width: 900px) {
  .lux-hero-badge-float.bf1 { left: 0; }
  .lux-hero-badge-float.bf2 { right: 0; }
  .lux-hero-badge-float.bf3 { left: 0; }
}

/* ============================================
   LUXURY IMAGE PANELS (replaces stock photos)
   ============================================ */
.lux-panel {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, #0f3d2e 0%, #082218 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lux-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 30%, rgba(200, 168, 93, 0.2), transparent 60%),
    radial-gradient(ellipse 70% 50% at 70% 80%, rgba(200, 168, 93, 0.15), transparent 60%);
}

.lux-panel::after {
  content: '';
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(200, 168, 93, 0.25);
}

.lux-panel-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 80%;
}

.lux-panel-monogram {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(7rem, 14vw, 12rem);
  line-height: 0.85;
  color: var(--color-secondary);
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.lux-panel-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
}

.lux-panel-sub {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200, 168, 93, 0.85);
  font-weight: 600;
}

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer {
  background: linear-gradient(90deg, var(--color-bg-alt) 25%, var(--color-accent) 50%, var(--color-bg-alt) 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}
