/* === Font Import for Vintage Logo === */
@font-face {
  font-family: "Veneer";
  src: url("./Veneer.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* === CSS Variables: Global Colors === */
:root {
  --sienna: #ff6a00;        /* Vibrant orange (main brand color) */
  --sienna-2: #e65500;      /* Darker orange (accents, hover states) */
  --white: #ffffff;         /* Pure white (unchanged) */
  --black: #1a1a1a;         /* Soft black (slightly warmer than pure black) */
  --tan: #ffb366;           /* Light orange/peach (borders, highlights) */
  --papaya-whip: #fff5e6;   /* Cream/off-white with warm orange tint (backgrounds) */
}

/* === Global Reset === */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* === Body Styling === */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: var(--papaya-whip);
  color: var(--black);
}

/* === Header Bar === */
header {
  position: sticky; /* sticks to top on scroll */
  top: 0;
  z-index: 999;
  background-color: var(--papaya-whip);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Bottom border animation (controlled via JS) */
header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: var(--border-width);
  background-color: var(--tan);
}

/* Header content layout */
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Text */
.logo {
  font-family: "Veneer", serif;
  font-weight: 100;
  font-size: 2.5rem;
  color: var(--sienna);
  letter-spacing: 1px;
}

/* Logo with Image */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;            /* Space between image and text */
  font-family: "Veneer", serif;
  font-weight: 100;
  font-size: 2.5rem;
  color: var(--sienna);
  letter-spacing: 1px;
}

.logo-image {
  height: 5rem;          /* Adjust this to match your text size */
  width: auto;             /* Maintains aspect ratio */
  object-fit: contain;
}

/* Responsive: smaller logo on mobile */
@media (max-width: 768px) {
  .logo {
    font-size: 2rem;
  }
  
  .logo-image {
    height: 5rem;
  }
}
/* Desktop Nav Menu */
nav {
  display: flex;
  gap: 2.5rem;
}

/* Nav Link Styling */
nav a {
  font-weight: bold;
  color: var(--sienna);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--black);
}

/* Hamburger Icon (hidden by default) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 26px;
  height: 3px;
  background: var(--black);
}

/* Mobile Nav Menu */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--sienna);
  padding: 1rem 2rem;
  border-top: 1px solid var(--tan);
}

.mobile-nav a {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--papaya-whip);
  text-decoration: none;
}

.mobile-nav a:hover {
  color: var(--sienna);
}

/* === Main Content Wrapper === */
main {
  padding-left: 103px; /* space for fixed social sidebar */
  position: relative;
}

/* === Vertical Social Media Sidebar === */
.social-sidebar {
  position: absolute;
  width: 103px;
  top: 0;
  left: 0;
  z-index: 900;
  margin: 0 auto;
  padding: 2rem;
  height: 100%;
  background-color: var(--papaya-whip);
}

/* Sidebar right border animation */
.social-sidebar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: var(--border-height);
  width: 1px;
  background-color: var(--tan);
}

/* Sticky icon stack */
.social-sidebar nav {
  position: sticky;
  top: 8rem;
  display: flex;
  flex-direction: column;
}

/* Individual Social Icons */
.social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--sienna);
  border-radius: 50%;
  background-color: var(--papaya-whip);
  color: var(--sienna);
  transition: background 0.3s ease, color 0.3s ease;
}

.social-sidebar a:hover {
  background-color: var(--sienna);
  color: var(--papaya-whip);
}

.social-sidebar svg {
  width: 18px;
  height: 18px;
}

/* === Responsive Sidebar Behavior for Mobile === */
@media (max-width: 768px) {
  main {
    padding-left: 0;
  }

  .social-sidebar {
    position: sticky;
    top: unset;
    padding: 1rem;
    bottom: 0;
    width: 100%;
    height: 80px;
  }

  .social-sidebar nav {
    position: relative;
    top: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .social-sidebar::after {
    width: 100%;
    height: 1px;
  }
}

/* === Footer Section === */
footer {
  background: linear-gradient(135deg, var(--sienna-2) 0%, #c54500 100%);
  color: var(--white);
  padding: 4rem 2rem 0;
  position: relative;
  overflow: hidden;
}

/* Decorative background pattern */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--tan) 50%, 
    transparent 100%
  );
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* === Footer Columns === */
.footer-column {
  display: flex;
  flex-direction: column;
}

/* === Brand Column === */
.footer-brand {
  padding-right: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Veneer", serif;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-logo-image {
  height: 2rem;
  width: auto;
  filter: brightness(0) invert(1); /* Makes logo white */
}

.footer-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tan);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* === Footer Headings === */
.footer-heading {
  font-family: "Veneer", serif;
  font-size: 1.3rem;
  font-weight: normal;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--tan);
}

/* === Footer Links === */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li {
  transition: transform 0.2s ease;
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--tan);
}

/* === Contact Column === */
.footer-contact {
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--tan);
}

.contact-item span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--tan);
}

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Working Hours */
.working-hours {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.working-hours h5 {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--tan);
  margin-bottom: 0.5rem;
}

.working-hours p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0.25rem 0;
}

/* === Footer Bottom Bar === */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 2rem;
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--tan);
  color: var(--sienna-2);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* Footer Partner Link */
.footer-partner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-partner a {
  color: var(--tan);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-partner a:hover {
  color: var(--white);
}

/* === Responsive Footer === */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-heading::after {
    left: 0;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 1.5rem 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-column {
    text-align: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links {
    align-items: center;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .working-hours {
    border-top: none;
    margin-top: 1rem;
    padding-top: 0;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-social {
    order: -1;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    font-size: 1.75rem;
  }

  .footer-logo-image {
    height: 1.75rem;
  }

  .footer-heading {
    font-size: 1.15rem;
  }
}

/* === Responsive Header Behavior === */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav.show {
    display: flex;
  }
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: calc(50rem - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--papaya-whip);
  background-size: cover;
  padding: 2rem;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Big Heading Animation Target */
.hero-content h1 {
  font-family: "Veneer", serif;
  font-weight: 100;
  font-size: clamp(8rem, 16vw, 12rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0.5rem 0;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px var(--sienna);
  opacity: 0;
}

.hero-content .line {
  display: block;
}

/* Bottle wrapper for scroll animation */
.hero-bottle-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  height: 45rem;
  width: 100%;
  z-index: 4;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Actual bottle image */
.hero-bottle {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: auto;
  height: 100%;
  margin: 0 auto;
  filter: drop-shadow(8px 8px 12px rgba(0, 0, 0, 0.15));
  transform: rotate(20deg);
  transition: filter 0.3s ease;
}

/* Hero stamp image animation target */
.hero-stamp {
  position: absolute;
  left: 35%;
  top: 0;
  right: 0;
  z-index: 5;
  transform: translate(-50%, -50%) rotate(-20deg) scale(100);
  opacity: 0;
  max-width: 150px;
  filter: brightness(0.5);
}

/* === Responsive Hero Section === */
@media (max-width: 768px) {
  .hero {
    min-height: calc(30rem - 80px);
  }

  .hero-bottle-wrapper {
    height: 25rem;
  }

  .hero-stamp {
    max-width: 100px;
  }

  .hero-content h1 {
    font-size: 15vw;
  }
}

/* === Intro Section (below hero) === */
.section-service,
.section-contact,
.section-team,
.section-product,
.section-intro{
  background-color: var(--papaya-whip);
  border-top: 1px solid var(--tan);
  padding: 1rem 2rem;
  position: relative;
  z-index: 1;
}

/* === Intro Section Grid Layout === */
.intro-grid {
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: space-between;
}

/* Left and Right Columns in Intro Section */
.intro-left,
.intro-right {
  max-width: 30%;
}

/* Section Label Above Main Heading */
.small-title {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sienna-2);
  margin-bottom: 1rem;
}

/* Main Heading: Heritage Line */
.main-heading {
  font-family: "Veneer", serif;
  font-weight: 100;
  font-size: 4.5rem;
  line-height: 1.2;
  color: var(--sienna);
  margin-bottom: 1.5rem;
}

/* Intro Paragraph Description */
.description {
  font-size: 1.05rem;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Call-to-Action Button */
.cta-box {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--sienna);
  background-color: var(--sienna);
  color: var(--papaya-whip);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-box:hover {
  background-color: var(--papaya-whip);
  color: var(--sienna);
}

/* === Responsive Intro Section === */
@media (max-width: 768px) {
  .intro-grid {
    text-align: center;
    flex-direction: column;
    gap: 5rem;
  }

  
  .intro-left,
  .intro-right {
    max-width: 100%;
    width: 100%;
  }

  .intro-left {
    padding-right: 0;
  }

  .intro-centre,
  .intro-img {
    min-height: 50%;
    width: 50%;
    margin: 0 auto;
  }
  
  .intro-centre{
  display: flex;
    justify-content: center;
  }

  .main-heading {
    font-size: 2.5rem;
  }
}

/* === Ingredients Log Container === */
.ingredients-log {
  background: transparent;
  padding: 1rem 0;
}

/* Ingredients Section Title */
.ingredients-title {
  font-family: "Veneer", serif;
  font-size: 1.75rem;
  color: var(--sienna);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 1px;
}

/* Single Ingredient Entry Layout */
.ingredient-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Quantity Value (e.g. 500ml) */
.ingredient-qty {
  font-family: "Veneer", serif;
  font-size: 2.5rem;
  color: var(--sienna-2);
  min-width: 90px;
  text-align: left;
  line-height: 1;
}

/* Textual Description of Ingredient */
.ingredient-text {
  max-width: 400px;
}

.ingredient-text strong {
  font-family: "Veneer", serif;
  font-size: 1.2rem;
  color: var(--sienna);
  display: block;
  margin-bottom: 0.2rem;
}

.ingredient-text p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--black);
  margin: 0;
}

/* === Responsive Ingredients Layout === */
@media (max-width: 768px) {
  .ingredient-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .ingredient-qty {
    font-size: 2rem;
    text-align: center;
  }

  .ingredient-text {
    max-width: 100%;
  }

  .ingredients-title {
    text-align: center;
    font-size: 2.5rem;
  }
}

/* === Timeline Section === */
.timeline-section {
  padding: 6rem 0rem 3rem;
  border-top: 1px solid var(--tan);
  display: flex;
  flex-direction: column;
}

/* Each Timeline Entry Block */
.timeline-entry {
  margin: 0;
  padding: 0 2rem 0;
  display: flex;
  gap: 3rem;
  align-items: center;
  min-height: 600px;
  max-width: 70%;
}

/* Alternate Entry Layout (odd/even) */
.timeline-entry:nth-child(odd) {
  margin-left: auto;
}

.timeline-entry:nth-child(odd) .timeline-left {
  order: 2;
}

.timeline-entry:nth-child(odd) .timeline-right {
  order: 1;
}

.timeline-entry:nth-child(even) {
  margin-right: auto;
}

.timeline-entry:last-child {
  margin-bottom: 0rem;
}

/* Main Section Title (Big Year Heading) */
.timeline-main-title {
  padding: 0 2rem 0rem;
  font-weight: 100;
  font-family: "Veneer", serif;
  font-size: 10rem;
  line-height: 1.2;
  color: var(--sienna);
  margin-bottom: 2.5rem;
}

/* Left Side of Timeline: Year + Image */
.timeline-left {
  flex: 0 0 300px;
  text-align: center;
}

.timeline-date {
  font-family: "Veneer", serif;
  font-size: 4rem;
  color: var(--sienna);
  line-height: 1;
  transform: translateY(30px); /* initial offset for animation */
}

.timeline-img {
  width: 100%;
  max-width: 240px;
  border: 3px solid var(--sienna-2);
  padding: 0.5rem;
  background-color: var(--papaya-whip);
  box-shadow: 4px 4px 0 var(--sienna);
}

/* Right Side of Timeline: Text Content */
.timeline-right {
  flex: 1;
  max-width: 400px;
}

.timeline-title {
  font-family: "Veneer", serif;
  font-size: 2rem;
  color: var(--sienna-2);
  margin-bottom: 1rem;
}

.timeline-description {
  font-size: 1.05rem;
  color: var(--black);
  line-height: 1.6;
}

/* === Responsive Timeline Section === */
@media (max-width: 768px) {
  .timeline-section {
    padding: 3rem 0rem 3rem;
  }

  .timeline-main-title {
    font-size: 4rem;
    text-align: center;
  }

  .timeline-entry {
    flex-direction: column;
    text-align: center;
    margin: 0 auto 2rem;
    gap: 1rem;
    max-width: 100%;
    min-height: unset;
  }

  .timeline-left {
    margin-bottom: 2rem;
  }

  .timeline-title {
    font-size: 1.5rem;
  }

  .timeline-date {
    font-size: 3rem;
  }

  .timeline-entry:nth-child(odd) .timeline-right {
    order: 2;
  }
}

/* === Contact Section === */
.contact-section {
  background-color: var(--papaya-whip);
  padding: 0;
}

/* === Contact Hero === */
.contact-hero {
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="white" opacity="0.1"/></svg>');
  background-size: 60px 60px;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-hero .small-title {
  color: var(--tan);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.contact-main-heading {
  font-family: "Veneer", serif;
  font-weight: 100;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.contact-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* === Contact Content Grid === */
.contact-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

/* === Contact Info Cards === */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border: 2px solid var(--tan);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.15);
  border-color: var(--sienna);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card-content h3 {
  font-family: "Veneer", serif;
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--sienna);
  margin: 0 0 0.75rem 0;
}

.contact-card-content p {
  font-size: 0.95rem;
  color: var(--black);
  margin: 0.25rem 0;
  line-height: 1.6;
}

.contact-phone,
.contact-email {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sienna-2);
  text-decoration: none;
  margin: 0.5rem 0;
  transition: color 0.3s ease;
}

.contact-phone:hover,
.contact-email:hover {
  color: var(--sienna);
}

.contact-hours,
.contact-response {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.75rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sienna);
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
}

.contact-link:hover {
  gap: 0.75rem;
}

/* === Quick Facts === */
.contact-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.fact-item {
  background: var(--white);
  border: 2px solid var(--tan);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.fact-item:hover {
  border-color: var(--sienna);
  transform: scale(1.05);
}

.fact-number {
  display: block;
  font-family: "Veneer", serif;
  font-size: 2rem;
  color: var(--sienna);
  font-weight: normal;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.fact-label {
  display: block;
  font-size: 0.85rem;
  color: var(--black);
  font-weight: 600;
}

/* === Contact Form === */
.contact-form-container {
  background: var(--white);
  border: 2px solid var(--tan);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
  margin-bottom: 2.5rem;
}

.contact-form-header h2 {
  font-family: "Veneer", serif;
  font-size: 2.5rem;
  font-weight: normal;
  color: var(--sienna);
  margin: 0 0 0.75rem 0;
}

.contact-form-header p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  color: var(--black);
  background: var(--papaya-whip);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sienna);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%23ff6a00" d="M1 1l5 5 5-5"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

/* Submit Button */
.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
  margin-top: 1rem;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
}

.form-submit-btn:active {
  transform: translateY(0);
}

.form-submit-btn svg {
  width: 20px;
  height: 20px;
}

/* Form Status Message */
.form-status {
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-status.success {
  background: #d4edda;
  color: #155724;
  border: 2px solid #c3e6cb;
  display: block;
}

.form-status.error {
  background: #f8d7da;
  color: #721c24;
  border: 2px solid #f5c6cb;
  display: block;
}

/* === Map Section === */
.contact-map {
  position: relative;
  height: 450px;
  margin-top: 4rem;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(30%) brightness(0.95);
  transition: filter 0.3s ease;
}

.contact-map:hover iframe {
  filter: grayscale(0%) brightness(1);
}

.map-overlay {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--tan);
  max-width: 350px;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.map-overlay h3 {
  font-family: "Veneer", serif;
  font-size: 1.75rem;
  font-weight: normal;
  color: var(--sienna);
  margin: 0 0 0.5rem 0;
}

.map-overlay p {
  font-size: 1rem;
  color: var(--black);
  margin: 0 0 1.5rem 0;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--sienna);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.map-btn:hover {
  background: var(--sienna-2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-facts {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 4rem 1.5rem 3rem;
  }

  .contact-content {
    padding: 3rem 1.5rem;
  }

  .contact-form-container {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-facts {
    grid-template-columns: 1fr;
  }

  .map-overlay {
    position: static;
    max-width: 100%;
    margin: 1rem;
  }

  .contact-map {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .contact-main-heading {
    font-size: 2rem;
  }

  .contact-card {
    flex-direction: column;
    padding: 1.5rem;
  }

  .contact-form-container {
    padding: 1.5rem 1rem;
  }

  .form-submit-btn {
    width: 100%;
  }
}

/* === Services Section === */
.services-section {
  background-color: var(--papaya-whip);
  padding: 0 0 4rem 0;
}

/* Services Hero */
.services-hero {
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/></svg>');
  background-size: 40px 40px;
}

.services-hero .small-title {
  color: var(--tan);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.section-main-heading {
  font-family: "Veneer", serif;
  font-weight: 100;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Services Container */
.services-container {
  max-width: 1280px;
  margin: -3rem auto 0;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 10;
}

/* Service Card */
.service-card {
  background: var(--white);
  border: 2px solid var(--tan);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--sienna);
  box-shadow: 0 12px 28px rgba(255, 106, 0, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.service-card h3 {
  font-family: "Veneer", serif;
  font-size: 1.75rem;
  font-weight: normal;
  color: var(--sienna);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.service-card > p {
  font-size: 1rem;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.service-features li {
  font-size: 0.9rem;
  color: var(--black);
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sienna);
  font-weight: bold;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sienna);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: gap 0.3s ease;
  margin-top: auto;
}

.service-link:hover {
  gap: 0.75rem;
  color: var(--sienna-2);
}

/* Why Choose Us Section */
.why-choose-us {
  max-width: 1280px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}

.why-choose-content {
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  border-radius: 24px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.why-choose-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.why-choose-content h2 {
  font-family: "Veneer", serif;
  font-size: 3rem;
  font-weight: normal;
  color: var(--white);
  text-align: center;
  margin: 0 0 3rem 0;
  position: relative;
  z-index: 2;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.why-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.why-number {
  display: block;
  font-family: "Veneer", serif;
  font-size: 3rem;
  color: var(--tan);
  font-weight: normal;
  line-height: 1;
  margin-bottom: 1rem;
}

.why-item h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  color: var(--white);
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.why-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 4rem 1.5rem 3rem;
  }

  .services-container {
    grid-template-columns: 1fr;
    margin-top: -2rem;
    padding: 0 1.5rem;
  }

  .service-card {
    padding: 2rem;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .why-choose-content {
    padding: 3rem 2rem;
  }

  .why-choose-content h2 {
    font-size: 2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-main-heading {
    font-size: 2.5rem;
  }

  .service-card h3 {
    font-size: 1.5rem;
  }

  .why-number {
    font-size: 2.5rem;
  }
}

/* === About Section === */
.about-section {
  background-color: var(--papaya-whip);
  padding: 0 0 4rem 0;
}

/* About Hero - Same as Services */
.about-hero {
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/></svg>');
  background-size: 40px 40px;
}

.about-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Story Section */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.about-heading {
  font-family: "Veneer", serif;
  font-size: 3rem;
  font-weight: normal;
  color: var(--sienna);
  margin: 0 0 2rem 0;
  line-height: 1.2;
}

.about-heading.centered {
  text-align: center;
  margin-bottom: 3rem;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.story-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
}

.story-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.3);
}

.badge-number {
  display: block;
  font-family: "Veneer", serif;
  font-size: 2.5rem;
  color: var(--white);
  font-weight: normal;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.badge-text {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mission & Vision */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 6rem;
}

.mv-card {
  background: var(--white);
  border: 2px solid var(--tan);
  border-radius: 16px;
  padding: 3rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(255, 106, 0, 0.2);
  border-color: var(--sienna);
}

.mv-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.mv-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.mv-card h3 {
  font-family: "Veneer", serif;
  font-size: 2rem;
  font-weight: normal;
  color: var(--sienna);
  margin: 0 0 1rem 0;
}

.mv-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--black);
  margin: 0;
}

/* Values Section */
.values-section {
  margin-bottom: 6rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--white);
  border: 2px solid var(--tan);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--sienna);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.15);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto 1rem;
}

.value-icon svg {
  width: 28px;
  height: 28px;
}

.value-card h4 {
  font-family: "Veneer", serif;
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--sienna);
  margin: 0 0 0.75rem 0;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--black);
  margin: 0;
}

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 6rem;
  padding: 4rem 3rem;
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-number {
  display: block;
  font-family: "Veneer", serif;
  font-size: 3.5rem;
  color: var(--white);
  font-weight: normal;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* Process Section */
.process-section {
  margin-bottom: 6rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 2px solid var(--tan);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.process-step:hover {
  border-color: var(--sienna);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Veneer", serif;
  font-size: 1.75rem;
  color: var(--white);
  margin: 0 auto 1.5rem;
}

.process-step h4 {
  font-family: "Veneer", serif;
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--sienna);
  margin: 0 0 1rem 0;
}

.process-step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--black);
  margin: 0;
}

/* CTA Section */
.about-cta {
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  padding: 4rem 3rem;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.about-cta h2 {
  font-family: "Veneer", serif;
  font-size: 3rem;
  font-weight: normal;
  color: var(--white);
  margin: 0 0 1rem 0;
  position: relative;
  z-index: 2;
}

.about-cta > p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2.5rem 0;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: var(--white);
  color: var(--sienna);
  border: 2px solid var(--white);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--sienna);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 4rem 1.5rem 3rem;
  }

  .about-content {
    padding: 3rem 1.5rem;
  }

  .about-heading {
    font-size: 2.5rem;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .stats-section {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .about-cta h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* === Products Section === */
.products-section {
  background-color: var(--papaya-whip);
  padding: 0 0 4rem 0;
}

/* Products Hero */
.products-hero {
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.products-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="1" height="1" fill="white" opacity="0.1"/></svg>');
  background-size: 40px 40px;
}

/* Products Filter */
.products-filter-container {
  max-width: 1280px;
  margin: -2rem auto 3rem;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.products-filter {
  background: var(--white);
  border: 2px solid var(--tan);
  border-radius: 50px;
  padding: 0.75rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.filter-btn {
  padding: 0.75rem 1.75rem;
  border: none;
  background: transparent;
  color: var(--black);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: var(--papaya-whip);
  color: var(--sienna);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  color: var(--white);
}

/* Products Container */
.products-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Product Card */
.product-card {
  background: var(--white);
  border: 2px solid var(--tan);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.product-card.hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--sienna);
  box-shadow: 0 12px 32px rgba(255, 106, 0, 0.2);
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--papaya-whip);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

.product-badge.popular {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
}

.product-badge.eco {
  background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
}

.product-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-content h3 {
  font-family: "Veneer", serif;
  font-size: 1.75rem;
  font-weight: normal;
  color: var(--sienna);
  margin: 0 0 1rem 0;
}

.product-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 1.5rem;
}

/* Product Specs */
.product-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--papaya-whip);
  border-radius: 8px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.spec-label {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.spec-value {
  font-size: 1rem;
  color: var(--sienna);
  font-weight: 600;
}

/* Product Features */
.product-features {
  margin-bottom: 1.5rem;
}

.product-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.product-features li {
  font-size: 0.9rem;
  color: var(--black);
  padding-left: 1.5rem;
  position: relative;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sienna);
  font-weight: bold;
}

/* Product Footer */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--tan);
  margin-top: auto;
}

.product-price {
  font-size: 1rem;
  color: var(--sienna-2);
  font-weight: 600;
}

.product-btn {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

.product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 106, 0, 0.4);
}

/* Products CTA */
.products-cta {
  max-width: 1280px;
  margin: 4rem auto 0;
  padding: 4rem 3rem;
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.products-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.products-cta h2 {
  font-family: "Veneer", serif;
  font-size: 2.5rem;
  font-weight: normal;
  color: var(--white);
  margin: 0 0 1rem 0;
  position: relative;
  z-index: 2;
}

.products-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem 0;
  position: relative;
  z-index: 2;
}

.cta-large-btn {
  display: inline-block;
  padding: 1.25rem 3rem;
  background: var(--white);
  color: var(--sienna);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  border: 2px solid var(--white);
}

.cta-large-btn:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .products-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-specs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .products-hero {
    padding: 4rem 1.5rem 3rem;
  }

  .products-filter-container {
    padding: 0 1.5rem;
    margin-bottom: 2rem;
  }

  .products-filter {
    padding: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .products-container {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }

  .product-features ul {
    grid-template-columns: 1fr;
  }

  .product-footer {
    flex-direction: column;
    gap: 1rem;
  }

  .product-btn {
    width: 100%;
    text-align: center;
  }

  .products-cta {
    padding: 3rem 2rem;
    margin: 3rem 1.5rem 0;
  }

  .products-cta h2 {
    font-size: 2rem;
  }
}

/* === Blog Section === */
.blog-section {
  background-color: var(--papaya-whip);
  padding: 0 0 4rem 0;
}

/* Blog Hero */
.blog-hero {
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/></svg>');
  background-size: 40px 40px;
}

/* Featured Post */
.featured-post-container {
  max-width: 1280px;
  margin: -3rem auto 4rem;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.featured-post {
  background: var(--white);
  border: 2px solid var(--tan);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.featured-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 106, 0, 0.2);
  border-color: var(--sienna);
}

.featured-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-post:hover .featured-image img {
  transform: scale(1.1);
}

.featured-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
}

.featured-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.post-category {
  color: var(--sienna);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-date {
  color: #666;
  font-size: 0.9rem;
}

.featured-content h2 {
  font-family: "Veneer", serif;
  font-size: 2.25rem;
  font-weight: normal;
  color: var(--sienna);
  line-height: 1.3;
  margin: 0 0 1.5rem 0;
}

.featured-content > p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 2rem;
}

.read-more-featured {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sienna);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: gap 0.3s ease;
}

.read-more-featured:hover {
  gap: 0.75rem;
  color: var(--sienna-2);
}

/* Blog Grid */
.blog-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Blog Card */
.blog-card {
  background: var(--white);
  border: 2px solid var(--tan);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--sienna);
  box-shadow: 0 12px 28px rgba(255, 106, 0, 0.2);
}

.blog-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--papaya-whip);
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

.blog-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #666;
  font-size: 0.85rem;
}

.blog-date svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}

.blog-read-time {
  color: var(--sienna);
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-content h3 {
  font-family: "Veneer", serif;
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--sienna);
  line-height: 1.4;
  margin: 0 0 1rem 0;
}

.blog-content > p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sienna);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
  margin-top: auto;
}

.blog-link:hover {
  gap: 0.75rem;
  color: var(--sienna-2);
}

/* Blog CTA / Newsletter */
.blog-cta {
  max-width: 1280px;
  margin: 4rem auto 0;
  padding: 4rem 3rem;
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.blog-cta h2 {
  font-family: "Veneer", serif;
  font-size: 3rem;
  font-weight: normal;
  color: var(--white);
  margin: 0 0 1rem 0;
  position: relative;
  z-index: 2;
}

.blog-cta > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2.5rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid var(--white);
  border-radius: 50px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  background: rgba(255, 255, 255, 0.95);
  color: var(--black);
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form button {
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--sienna);
  border: 2px solid var(--white);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blog-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 4rem 1.5rem 3rem;
  }

  .featured-post-container {
    padding: 0 1.5rem;
    margin-bottom: 3rem;
  }

  .featured-post {
    grid-template-columns: 1fr;
  }

  .featured-image {
    min-height: 300px;
  }

  .featured-content {
    padding: 2rem;
  }

  .featured-content h2 {
    font-size: 1.75rem;
  }

  .blog-container {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }

  .blog-cta {
    padding: 3rem 2rem;
    margin: 3rem 1.5rem 0;
  }

  .blog-cta h2 {
    font-size: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

/* === Partners Section === */
.partners-section {
  background-color: var(--papaya-whip);
  padding: 5rem 0;
  border-top: 1px solid var(--tan);
  overflow: hidden;
}

.partners-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Partners Header */
.partners-header {
  text-align: center;
  margin-bottom: 4rem;
}

.partners-header .small-title {
  color: var(--sienna-2);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.partners-heading {
  font-family: "Veneer", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: normal;
  color: var(--sienna);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.partners-subtitle {
  font-size: 1.1rem;
  color: var(--black);
  max-width: 600px;
  margin: 0 auto;
}

/* Carousel Wrapper */
.partners-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
  margin-bottom: 3rem;
}

/* Gradient fade edges */
.partners-carousel-wrapper::before,
.partners-carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--papaya-whip) 0%, transparent 100%);
}

.partners-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--papaya-whip) 0%, transparent 100%);
}

/* Carousel Container */
.partners-carousel {
  display: flex;
  gap: 3rem;
  animation: scroll-carousel 40s linear infinite;
  width: max-content;
}

/* Pause animation on hover */
.partners-carousel:hover {
  animation-play-state: paused;
}

/* Keyframe for infinite scroll */
@keyframes scroll-carousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 1.5rem));
  }
}

/* Individual Logo Container */
.partner-logo {
  flex-shrink: 0;
  width: 180px;
  height: 100px;
  background: var(--white);
  border: 2px solid var(--tan);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.partner-logo:hover {
  border-color: var(--sienna);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.15);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* Partner Stats */
.partners-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.partners-stats::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.partner-stat {
  text-align: center;
  position: relative;
  z-index: 2;
}

.partner-stat .stat-number {
  display: block;
  font-family: "Veneer", serif;
  font-size: 3rem;
  color: var(--white);
  font-weight: normal;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.partner-stat .stat-label {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .partners-section {
    padding: 3rem 0;
  }

  .partners-container {
    padding: 0 1.5rem;
  }

  .partners-header {
    margin-bottom: 3rem;
  }

  .partners-heading {
    font-size: 2rem;
  }

  .partners-carousel {
    gap: 2rem;
    animation-duration: 30s; /* Faster on mobile */
  }

  @keyframes scroll-carousel {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50% - 1rem));
    }
  }

  .partner-logo {
    width: 140px;
    height: 80px;
    padding: 1rem;
  }

  .partners-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }

  .partner-stat .stat-number {
    font-size: 2.5rem;
  }

  .partners-carousel-wrapper::before,
  .partners-carousel-wrapper::after {
    width: 80px;
  }
}

@media (max-width: 480px) {
  .partner-logo {
    width: 120px;
    height: 70px;
  }

  .partners-carousel {
    gap: 1.5rem;
  }
}

/* Alternative: Grid Layout (if you prefer static instead of carousel) */
.partners-grid {
  display: none; /* Hidden by default, use if you want grid instead */
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* === Team Section === */
.team-section {
  background-color: var(--papaya-whip);
  padding: 0 0 4rem 0;
}

/* Team Hero */
.team-hero {
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/></svg>');
  background-size: 40px 40px;
}

/* Team Container */
.team-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* Team Card */
.team-card {
  background: var(--white);
  border: 2px solid var(--tan);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--sienna);
  box-shadow: 0 12px 32px rgba(255, 106, 0, 0.2);
}

/* Team Image Container */
.team-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--papaya-whip);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

/* Overlay with Social Icons */
.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(177, 86, 14, 0.95) 0%, rgba(146, 99, 58, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 1.5rem;
}

.team-social a {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sienna);
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.team-card:hover .team-social a {
  transform: translateY(0);
  opacity: 1;
}

.team-card:hover .team-social a:nth-child(1) {
  transition-delay: 0.1s;
}

.team-card:hover .team-social a:nth-child(2) {
  transition-delay: 0.2s;
}

.team-social a:hover {
  background: var(--sienna);
  color: var(--white);
  transform: translateY(-5px) scale(1.1);
}

.team-social svg {
  width: 22px;
  height: 22px;
}

/* Team Content */
.team-content {
  padding: 2rem;
  text-align: center;
}

.team-content h3 {
  font-family: "Veneer", serif;
  font-size: 1.75rem;
  font-weight: normal;
  color: var(--sienna);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.team-role {
  font-size: 1rem;
  color: var(--sienna-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 1rem 0;
}

.team-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--black);
  margin: 0;
}

/* Team CTA */
.team-cta {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 3rem;
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.team-cta h2 {
  font-family: "Veneer", serif;
  font-size: 3rem;
  font-weight: normal;
  color: var(--white);
  margin: 0 0 1rem 0;
  position: relative;
  z-index: 2;
}

.team-cta > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem 0;
  position: relative;
  z-index: 2;
}

.team-cta .cta-large-btn {
  display: inline-block;
  padding: 1.25rem 3rem;
  background: var(--white);
  color: var(--sienna);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  border: 2px solid var(--white);
}

.team-cta .cta-large-btn:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .team-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-hero {
    padding: 4rem 1.5rem 3rem;
  }

  .team-container {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }

  .team-content {
    padding: 1.5rem;
  }

  .team-content h3 {
    font-size: 1.5rem;
  }

  .team-cta {
    padding: 3rem 2rem;
    margin: 0 1.5rem;
  }

  .team-cta h2 {
    font-size: 2rem;
  }

  .team-cta .cta-large-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .team-social {
    gap: 1rem;
  }

  .team-social a {
    width: 45px;
    height: 45px;
  }

  .team-social svg {
    width: 20px;
    height: 20px;
  }
}

/* Alternative: Card with side-by-side layout (uncomment to use) */

.team-card-horizontal {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 300px 1fr;
}

.team-card-horizontal .team-image {
  aspect-ratio: 3/4;
}

@media (max-width: 1024px) {
  .team-card-horizontal {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
}

/* === Testimonials Section === */
.testimonials-section {
  background-color: var(--papaya-whip);
  padding: 0 0 4rem 0;
}

/* Testimonials Hero */
.testimonials-hero {
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/></svg>');
  background-size: 40px 40px;
}

/* Testimonials Container */
.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Testimonial Card */
.testimonial-card {
  background: var(--white);
  border: 2px solid var(--tan);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--sienna);
  box-shadow: 0 12px 32px rgba(255, 106, 0, 0.2);
}

/* Rating Stars */
.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-rating svg {
  width: 20px;
  height: 20px;
  color: #ffd700;
}

/* Quote Icon */
.testimonial-quote {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
}

.testimonial-quote svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

/* Testimonial Text */
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 2rem;
  flex-grow: 1;
  font-style: italic;
}

/* Author Section */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--tan);
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sienna);
}

.author-info h4 {
  font-family: "Veneer", serif;
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--sienna);
  margin: 0 0 0.25rem 0;
}

.author-info p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Testimonials Stats */
.testimonials-stats {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.testimonials-stats .stat-item {
  background: linear-gradient(135deg, var(--sienna) 0%, var(--sienna-2) 100%);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.2);
}

.testimonials-stats .stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.3);
}

.stat-icon {
  display: block;
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.testimonials-stats .stat-number {
  display: block;
  font-family: "Veneer", serif;
  font-size: 2.5rem;
  color: var(--white);
  font-weight: normal;
  line-height: 1;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.testimonials-stats .stat-label {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  position: relative;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-hero {
    padding: 4rem 1.5rem 3rem;
  }

  .testimonials-container {
    padding: 3rem 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-quote {
    width: 40px;
    height: 40px;
  }

  .testimonial-quote svg {
    width: 22px;
    height: 22px;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .testimonials-stats {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    gap: 1.5rem;
  }

  .testimonials-stats .stat-item {
    padding: 2rem 1.5rem;
  }

  .testimonials-stats .stat-number {
    font-size: 2rem;
  }

  .stat-icon {
    font-size: 2.5rem;
  }
}

/* Alternative: Carousel/Slider Layout (uncomment to use) */

@media (min-width: 769px) {
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 1rem;
  }

  .testimonial-card {
    min-width: 400px;
    scroll-snap-align: start;
  }

  .testimonials-grid::-webkit-scrollbar {
    height: 8px;
  }

  .testimonials-grid::-webkit-scrollbar-track {
    background: var(--papaya-whip);
    border-radius: 10px;
  }

  .testimonials-grid::-webkit-scrollbar-thumb {
    background: var(--sienna);
    border-radius: 10px;
  }
}

/* Video Testimonial Option (if you want to add video testimonials) */
.testimonial-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--papaya-whip);
}

.testimonial-video video,
.testimonial-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Featured Testimonial (larger card) */
.testimonial-card.featured {
  grid-column: span 2;
  padding: 3rem;
}

.testimonial-card.featured .testimonial-text {
  font-size: 1.2rem;
}

.testimonial-card.featured .testimonial-author img {
  width: 80px;
  height: 80px;
}

@media (max-width: 1024px) {
  .testimonial-card.featured {
    grid-column: span 1;
  }
}

/* === Global Hero Styles (for all sections) */
.services-hero,
.about-hero,
.products-hero,
.blog-hero,
.contact-hero,
.team-hero,
.testimonials-hero {
  /* Almost no tint - 80% image visible */
background: linear-gradient(rgba(255, 160, 80, 0.2), rgba(255, 140, 60, 0.2)), 
              url('./img/hero-facility.png') center center no-repeat !important;
  background-size: cover !important;
  background-attachment: fixed !important;
}

@media (max-width: 768px) {
  .services-hero,
  .about-hero,
  .products-hero,
  .blog-hero,
  .contact-hero,
  .team-hero,
  .testimonials-hero {
    background-attachment: scroll !important;
  }
}