/* =============================================
   SunCure Agro Processing — Custom Stylesheet
   ============================================= */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --radius: 0.5rem;
  --background: #fefcf7;
  --foreground: #1a2e20;
  --card: #ffffff;
  --card-foreground: #1a2e20;
  --primary: #1a5c3a;
  --primary-foreground: #fefcf5;
  --secondary: #f2ede4;
  --secondary-foreground: #1f3a28;
  --muted: #f0ece3;
  --muted-foreground: #6b7a6d;
  --accent: #ede6d7;
  --accent-foreground: #1f3a28;
  --destructive: #c44232;
  --border: #e5e2da;
  --input: #e5e2da;
  --ring: #c9943a;
  --gold: #c9943a;
  --gold-foreground: #1a2e20;
  --cream: #faf5e9;

  --shadow-elegant: 0 20px 60px -20px rgba(26, 92, 58, 0.25);
  --shadow-soft: 0 8px 30px -10px rgba(26, 92, 58, 0.15);

  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ---------- Layout ---------- */
.container-page {
  width: 100%;
  margin-inline: auto;
  max-width: 1200px;
  padding-inline: 1.5rem;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-wrapper > main {
  flex: 1;
}

/* ---------- Typography Utilities ---------- */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #dbb06a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(229, 226, 218, 0.6);
  background: rgba(254, 252, 247, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header .container-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  min-height: 60px;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  gap: 0.5rem;
}

.logo-link {
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--primary);
}

.logo-sub {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}

.header-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.header-nav::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(26, 46, 32, 0.7);
  transition: color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--primary);
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: block;
  }
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  color: var(--foreground);
  flex-shrink: 0;
}

.mobile-toggle svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(229, 226, 218, 0.6);
  background: var(--background);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 40;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav .container-page {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(26, 46, 32, 0.8);
  border-bottom: 1px solid rgba(229, 226, 218, 0.4);
}

.mobile-nav a:last-of-type {
  border-bottom: none;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--primary);
}

.mobile-nav .btn {
  margin-top: 0.75rem;
  border-bottom: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  line-height: 1;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1.75rem;
  height: 2.5rem;
}

.btn-primary:hover {
  background: #164d30;
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--input);
  padding: 0.5rem 1.75rem;
  height: 2.5rem;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--accent-foreground);
}

.btn-ghost {
  background: transparent;
  color: var(--foreground);
  padding: 0.5rem 1.75rem;
  height: 2.5rem;
}

.btn-ghost:hover {
  background: var(--accent);
  color: var(--accent-foreground);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.5rem 1.75rem;
  height: 2.5rem;
}

.btn-secondary:hover {
  background: #e8e2d8;
}

.btn-lg {
  height: 3rem;
  padding: 0.75rem 2rem;
  font-size: 0.9375rem;
}

.btn-sm {
  height: 2rem;
  padding: 0.25rem 1.25rem;
  font-size: 0.8125rem;
}

.btn svg,
.btn .icon {
  width: 1rem;
  height: 1rem;
}

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-elegant);
}

.card-body {
  padding: 2rem;
}

.card-elevated {
  box-shadow: var(--shadow-soft);
}

/* ---------- Forms ---------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--input);
  border-radius: calc(var(--radius) - 2px);
  background: var(--card);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
  opacity: 0.6;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 2px rgba(201, 148, 58, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* ---------- Page Header (hero banner) ---------- */
.page-header {
  border-bottom: 1px solid rgba(229, 226, 218, 0.6);
  background: linear-gradient(to bottom, rgba(242, 237, 228, 0.6), var(--background));
}

.page-header .container-page {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .page-header .container-page {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.page-header-inner {
  max-width: 48rem;
}

.page-header h1 {
  font-size: 2.25rem;
  line-height: 1.05;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 3.75rem;
  }
}

.page-header p {
  margin-top: 1.25rem;
  max-width: 42rem;
  font-size: 1rem;
  color: var(--muted-foreground);
}

@media (min-width: 480px) {
  .page-header p {
    font-size: 1.125rem;
  }
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  overflow: hidden;
}

.hero .container-page {
  display: grid;
  gap: 2.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 480px) {
  .hero .container-page {
    gap: 3.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (min-width: 768px) {
  .hero .container-page {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.hero-content {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-image-wrap {
  position: relative;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.1s;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: -1.5rem;
  z-index: -1;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(26, 92, 58, 0.1), transparent, rgba(201, 148, 58, 0.2));
  filter: blur(2rem);
}

.hero-image {
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: var(--shadow-elegant);
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  display: none;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 640px) {
  .hero-badge {
    display: block;
  }
}

.hero-badge-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-badge-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(26, 92, 58, 0.1);
  color: var(--primary);
}

.hero-badge-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.hero h1 {
  font-size: 2.25rem;
  line-height: 1.05;
}

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

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

.hero h1 .italic {
  font-style: italic;
  color: var(--primary);
}

.hero-subtitle {
  margin-top: 1.5rem;
  max-width: 32rem;
  font-size: 1rem;
  color: var(--muted-foreground);
}

@media (min-width: 480px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 480px) {
  .hero-stats {
    gap: 2rem;
  }
}

.hero-stats .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--foreground);
}

.hero-stats .stat-divider {
  width: 1px;
  height: 2rem;
  background: var(--border);
}

/* ---------- Features Section ---------- */
.features-section {
  border-top: 1px solid rgba(229, 226, 218, 0.6);
  border-bottom: 1px solid rgba(229, 226, 218, 0.6);
  background: rgba(242, 237, 228, 0.3);
}

.features-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 5rem 0;
  }
}

.feature-item {
  transition: transform 0.3s;
}

.feature-icon {
  margin-bottom: 1.25rem;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(26, 92, 58, 0.1);
  color: var(--primary);
  transition: all 0.3s;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-item:hover .feature-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}

.feature-item h3 {
  font-size: 1.25rem;
}

.feature-item p {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
}

/* ---------- Split Section (image + text) ---------- */
.split-section .container-page {
  display: grid;
  gap: 3rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .split-section .container-page {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 6rem 0;
  }
}

.split-image {
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.split-text h2 {
  font-size: 1.75rem;
}

@media (min-width: 480px) {
  .split-text h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .split-text h2 {
    font-size: 3rem;
  }
}

.split-text p {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--muted-foreground);
}

@media (min-width: 480px) {
  .split-text p {
    font-size: 1.125rem;
  }
}

.split-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.split-list .step-num {
  margin-top: 0.25rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(201, 148, 58, 0.3);
  font-size: 10px;
  font-weight: 600;
  color: var(--primary);
}

.split-list .step-text {
  color: rgba(26, 46, 32, 0.8);
}

.split-text .btn {
  margin-top: 2rem;
}

/* ---------- Product Preview Cards ---------- */
.products-preview {
  background: rgba(242, 237, 228, 0.4);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .products-preview {
    padding: 6rem 0;
  }
}

.section-header {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .section-header {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
}

.product-cards {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .product-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  transition: all 0.3s;
}

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

.product-card-header {
  margin-bottom: 1.5rem;
  display: flex;
  height: 3rem;
  align-items: center;
  justify-content: space-between;
}

.product-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.product-card h3 {
  font-size: 1.5rem;
}

.product-card p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ---------- Industries Strip (CTA banner) ---------- */
.industries-strip {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .industries-strip {
    padding: 6rem 0;
  }
}

.industries-strip-inner {
  display: grid;
  gap: 2rem;
  border-radius: 1.5rem;
  background: var(--primary);
  padding: 1.5rem;
  color: var(--primary-foreground);
}

@media (min-width: 640px) {
  .industries-strip-inner {
    padding: 2.5rem;
  }
}

@media (min-width: 768px) {
  .industries-strip-inner {
    grid-template-columns: 1fr 1fr;
    padding: 4rem;
  }
}

.industries-strip .eyebrow {
  margin-bottom: 1rem;
  color: var(--gold);
}

.industries-strip h2 {
  font-size: 2.25rem;
}

@media (min-width: 768px) {
  .industries-strip h2 {
    font-size: 3rem;
  }
}

.industries-strip .desc {
  margin-top: 1.25rem;
  color: rgba(254, 252, 245, 0.8);
}

.industry-pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-self: center;
}

.industry-pill {
  border-radius: 1rem;
  border: 1px solid rgba(254, 252, 245, 0.15);
  background: rgba(254, 252, 245, 0.05);
  padding: 1.25rem;
}

.industry-pill svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
}

.industry-pill p {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 0 0 3rem;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 0 0 6rem;
  }
}

.cta-card {
  display: grid;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
}

@media (min-width: 768px) {
  .cta-card {
    grid-template-columns: 1.2fr 1fr;
  }
}

.cta-card-body {
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .cta-card-body {
    padding: 2.5rem;
  }
}

@media (min-width: 768px) {
  .cta-card-body {
    padding: 3.5rem;
  }
}

.cta-card h2 {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .cta-card h2 {
    font-size: 2.25rem;
  }
}

.cta-card p {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

.cta-card .btn {
  margin-top: 2rem;
}

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

/* ---------- About: Values ---------- */
.values-section {
  background: rgba(242, 237, 228, 0.4);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .values-section {
    padding: 5rem 0;
  }
}

.values-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  border-radius: 1rem;
  background: var(--background);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 480px) {
  .value-card {
    padding: 2rem;
  }
}

.value-card .value-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
}

.value-card h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.value-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ---------- About: Stats ---------- */
.about-stats {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .about-stats {
    padding: 6rem 0;
  }
}

.about-stats .container-page {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-stats .container-page {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--primary);
}

.about-stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
}

/* ---------- Contact Page ---------- */
.contact-layout {
  display: grid;
  gap: 2.5rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .contact-layout {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1.2fr 1fr;
  }
}

.contact-form-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 480px) {
  .contact-form-card {
    padding: 1.5rem;
  }
}

@media (min-width: 640px) {
  .contact-form-card {
    padding: 2rem;
  }
}

.contact-form-card .form-grid {
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-card .btn {
  width: 100%;
}

.contact-form-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-sidebar .info-block .eyebrow {
  margin-bottom: 0.5rem;
}

.contact-sidebar .office-name {
  font-size: 1.125rem;
  color: var(--foreground);
}

.contact-sidebar .office-address {
  color: var(--muted-foreground);
}

.contact-details-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-detail-item svg {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.contact-detail-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
}

.contact-detail-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  display: inline-block;
}

a.contact-detail-value:hover,
a.contact-detail-value:focus {
  color: var(--primary);
}

.contact-detail-sub {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  display: inline-block;
}

a.contact-detail-sub:hover,
a.contact-detail-sub:focus {
  color: var(--primary);
}

.contact-global-card {
  border-radius: 1rem;
  background: var(--primary);
  padding: 1.5rem;
  color: var(--primary-foreground);
}

.contact-global-card .eyebrow {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-global-card p {
  font-size: 1.125rem;
}

/* ---------- Products Page ---------- */
.product-category-card {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  transition: box-shadow 0.3s;
}

.product-category-card:hover {
  box-shadow: var(--shadow-elegant);
}

.product-category-img-wrap {
  overflow: hidden;
}

.product-category-img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.product-category-body {
  padding: 1.25rem;
}

@media (min-width: 480px) {
  .product-category-body {
    padding: 2rem;
  }
}

.product-category-body h3 {
  font-size: 1.5rem;
}

.product-items {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 480px) {
  .product-items {
    grid-template-columns: 1fr 1fr;
  }
}

.product-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.product-items li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 0.375rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--gold);
}

.custom-blend-cta {
  margin-top: 4rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--secondary);
  padding: 1.5rem;
  text-align: center;
}

@media (min-width: 480px) {
  .custom-blend-cta {
    padding: 2.5rem;
  }
}

.custom-blend-cta h3 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .custom-blend-cta h3 {
    font-size: 1.875rem;
  }
}

.custom-blend-cta p {
  margin-top: 0.75rem;
  margin-inline: auto;
  max-width: 36rem;
  color: var(--muted-foreground);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-auto-rows: 220px;
  gap: 1rem;
}

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

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.gallery-item.span-2col {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .gallery-item.span-2row {
    grid-row: span 2;
  }
}

.gallery-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  transform: translateY(1rem);
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 1rem;
  font-size: 0.875rem;
  color: #fff;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- Industries Page ---------- */
.industries-grid {
  display: grid;
  gap: 1.5rem;
}

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

.industry-card {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.25rem;
  transition: box-shadow 0.3s;
}

@media (min-width: 480px) {
  .industry-card {
    padding: 2rem;
  }
}

.industry-card:hover {
  box-shadow: var(--shadow-soft);
}

.industry-card-icon {
  margin-bottom: 1.5rem;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
}

.industry-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.industry-card h3 {
  font-size: 1.25rem;
}

.industry-card p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
}

/* ---------- Blog Page ---------- */
.blog-grid {
  display: grid;
  gap: 2.5rem;
}

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

.blog-article {
  cursor: pointer;
}

.blog-article-img-wrap {
  margin-bottom: 1.25rem;
  overflow: hidden;
  border-radius: 1.5rem;
}

.blog-article-img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
}

.blog-article-tag {
  color: var(--gold);
}

.blog-article h3 {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  transition: color 0.2s;
}

.blog-article:hover h3 {
  color: var(--primary);
}

.blog-article p {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
}

.blog-read-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s;
}

.blog-read-link:hover {
  gap: 0.5rem;
}

/* ---------- Solar Dehydrators Page ---------- */
.tech-specs {
  border-top: 1px solid rgba(229, 226, 218, 0.6);
  border-bottom: 1px solid rgba(229, 226, 218, 0.6);
  background: rgba(242, 237, 228, 0.4);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .tech-specs {
    padding: 5rem 0;
  }
}

.tech-specs h2 {
  margin-bottom: 2.5rem;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .tech-specs h2 {
    font-size: 2.25rem;
  }
}

.tech-spec-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .tech-spec-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tech-spec-card {
  border-radius: 1rem;
  background: var(--background);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 480px) {
  .tech-spec-card {
    padding: 1.5rem;
  }
}

.tech-spec-card svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.tech-spec-value {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.tech-spec-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.model-cards {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .model-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.model-card {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  padding: 1.25rem;
  transition: box-shadow 0.3s;
}

@media (min-width: 480px) {
  .model-card {
    padding: 2rem;
  }
}

.model-card:hover {
  box-shadow: var(--shadow-elegant);
}

.model-card .model-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.model-card h3 {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
}

.model-card .model-capacity {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: var(--primary);
}

.model-card .model-best {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.model-cta {
  margin-top: 3rem;
  text-align: center;
}

/* ---------- Why Solar Drying Page ---------- */
.why-grid {
  display: grid;
  gap: 1.5rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 5rem 0;
  }
}

.why-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1.25rem;
  transition: all 0.3s;
}

@media (min-width: 480px) {
  .why-card {
    padding: 1.75rem;
  }
}

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

.why-card-icon {
  margin-bottom: 1.25rem;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(201, 148, 58, 0.2);
  color: var(--primary);
}

.why-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.why-card h3 {
  font-size: 1.125rem;
}

.why-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.why-stats-bar {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .why-stats-bar {
    padding: 5rem 0;
  }
}

.why-stats-bar .container-page {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .why-stats-bar .container-page {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
}

.why-stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(254, 252, 245, 0.7);
}

/* ---------- Footer ---------- */
.site-footer {
  width: 100%;
  margin-top: 3rem;
  border-top: 1px solid rgba(229, 226, 218, 0.7);
  background: rgba(242, 237, 228, 0.4);
}

@media (min-width: 768px) {
  .site-footer {
    margin-top: 6rem;
  }
}

.footer-main {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    padding: 4rem 0;
  }
}

.footer-brand {
  grid-column: span 1;
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 24rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-col h4 {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-contact-item a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--primary);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(229, 226, 218, 0.6);
  width: 100%;
}

.footer-bottom .container-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1.5rem 0;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .footer-bottom .container-page {
    flex-direction: row;
  }
}

/* ---------- WhatsApp Button ---------- */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: var(--shadow-elegant);
  transition: transform 0.3s;
  animation: floatY 3s ease-in-out infinite;
}

@media (min-width: 480px) {
  .whatsapp-btn {
    bottom: 1.75rem;
    right: 1.75rem;
    width: 64px;
    height: 64px;
  }
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
}

@media (min-width: 480px) {
  .whatsapp-btn svg {
    width: 36px;
    height: 36px;
  }
}

.whatsapp-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  filter: blur(0.5rem);
}

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

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ---------- 404 Page ---------- */
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1rem;
  text-align: center;
}

.error-page h1 {
  font-size: 4.5rem;
  font-weight: 700;
}

.error-page h2 {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.error-page p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.error-page .btn {
  margin-top: 1.5rem;
}

/* ---------- Success/Alert Messages ---------- */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.alert-error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* ---------- Utility: Grid for products pages ---------- */
.products-grid {
  display: grid;
  gap: 2.5rem;
}

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

/* ---------- Utility: py sections ---------- */
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

@media (max-width: 767px) {
  .py-20 { padding-top: 3rem; padding-bottom: 3rem; }
  .py-24 { padding-top: 4rem; padding-bottom: 4rem; }
}

/* ---------- Utility: text centers ---------- */
.text-center { text-align: center; }
