/* ==========================================================================
   DESIGN TOKENS & CSS VARIABLES
   ========================================================================== */
:root {
  /* Color Palette (HSL Tailored) */
  --clr-bg-primary: hsl(35, 30%, 97%);        /* Cozy warm cream background */
  --clr-bg-secondary: hsl(35, 20%, 99.5%);    /* Bright warm cream/white for cards */
  --clr-bg-dark: hsl(140, 15%, 12%);          /* Rich deep forest dark green for dark elements */
  
  --clr-text-primary: hsl(24, 25%, 12%);      /* Dark warm chocolate-charcoal for headings */
  --clr-text-secondary: hsl(24, 15%, 32%);    /* Softer charcoal-brown for body text */
  --clr-text-muted: hsl(24, 10%, 48%);        /* Grey-brown for captions and specs */
  --clr-text-light: hsl(35, 30%, 96%);        /* Off-white for dark background content */
  --clr-text-light-muted: hsl(35, 15%, 75%);  /* Muted text on dark background */

  --clr-primary: hsl(28, 65%, 45%);           /* Oak amber/gold accent for main buttons/badges */
  --clr-primary-hover: hsl(28, 70%, 38%);     /* Deeper oak for hover states */
  --clr-primary-light: hsl(28, 65%, 93%);     /* Soft amber wash for card highlights */
  
  --clr-secondary: hsl(142, 35%, 28%);        /* Deep pine green for headers/accents */
  --clr-secondary-hover: hsl(142, 40%, 20%);  /* Darker pine green */
  --clr-secondary-light: hsl(142, 35%, 94%);  /* Soft green wash */

  --clr-accent-gold: hsl(38, 60%, 50%);       /* Rich abachi/birch gold */
  
  --clr-border: hsl(35, 15%, 86%);            /* Soft warm grey-beige border */
  --clr-border-light: hsl(35, 15%, 92%);      /* Very soft border */

  /* Shadows */
  --shadow-sm: 0 2px 8px -2px rgba(24, 15, 12, 0.06);
  --shadow-md: 0 8px 24px -6px rgba(24, 15, 12, 0.08);
  --shadow-lg: 0 16px 40px -12px rgba(24, 15, 12, 0.12);
  --shadow-inner: inset 0 2px 4px 0 rgba(24, 15, 12, 0.04);

  /* Fonts */
  --font-family-title: 'Montserrat', 'Segoe UI', Helvetica, sans-serif;
  --font-family-body: 'Manrope', 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --container-max-width: 1240px;

  /* Borders */
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-round: 50%;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & GENERAL STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-family-body);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--clr-bg-primary);
  color: var(--clr-text-secondary);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--clr-bg-primary);
}
::-webkit-scrollbar-thumb {
  background: hsl(35, 15%, 78%);
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--clr-bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--clr-text-muted);
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-title);
  color: var(--clr-text-primary);
  font-weight: 700;
  line-height: 1.25;
}

/* Sections Global Structure */
section {
  padding: 90px 0;
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 60px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-primary);
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  background-color: var(--clr-primary-light);
  border-radius: var(--border-radius-sm);
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.title-divider {
  width: 80px;
  height: 4px;
  background-color: var(--clr-primary);
  margin: 0 auto 20px;
  border-radius: var(--border-radius-sm);
}

.section-desc {
  font-size: 17px;
  color: var(--clr-text-secondary);
}

/* Dynamic Animation Fade In */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 15px;
}

.btn-primary {
  background-color: var(--clr-primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--clr-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px hsla(28, 65%, 45%, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: hsla(35, 30%, 97%, 0.85); /* Glassmorphic cream */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border-light);
  z-index: 1000;
  transition: height var(--transition-fast), background-color var(--transition-fast);
}

.header.scrolled {
  height: 75px;
  background-color: hsla(35, 30%, 97%, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Design */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background-color: var(--clr-secondary);
  color: #fff;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.logo-icon.dark-bg {
  background-color: var(--clr-primary);
}

.logo:hover .logo-icon {
  transform: rotate(5deg) scale(1.05);
}

.logo-icon i {
  width: 24px;
  height: 24px;
}

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

.logo-title {
  font-family: var(--font-family-title);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--clr-secondary);
  line-height: 1.1;
}

.logo-title.text-light {
  color: #fff;
}

.logo-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--clr-text-secondary);
  letter-spacing: -0.01em;
}

.logo-sub.text-light-muted {
  color: var(--clr-text-light-muted);
}

/* Nav Menu */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-family-title);
  font-weight: 600;
  font-size: 14px;
  color: var(--clr-text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--clr-primary);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--clr-primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* Contacts in Header */
.header-contacts {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background-color: var(--clr-secondary-light);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--clr-border-light);
  transition: all var(--transition-normal);
}

.phone-link:hover {
  background-color: var(--clr-secondary);
  color: #fff;
  border-color: var(--clr-secondary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.phone-icon-box {
  width: 32px;
  height: 32px;
  background-color: var(--clr-secondary);
  color: #fff;
  border-radius: var(--border-radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
}

.phone-link:hover .phone-icon-box {
  background-color: rgba(255, 255, 255, 0.2);
}

.phone-icon-box i {
  width: 16px;
  height: 16px;
}

.phone-text-box {
  display: flex;
  flex-direction: column;
}

.phone-num {
  font-family: var(--font-family-title);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}

.phone-loc {
  font-size: 10px;
  color: var(--clr-text-muted);
}

.phone-link:hover .phone-loc {
  color: var(--clr-text-light-muted);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-bg-secondary);
  border: 1px solid var(--clr-border);
  border-radius: var(--border-radius-md);
  color: var(--clr-text-primary);
}

/* Mobile Nav Menu Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background-color: var(--clr-bg-secondary);
  z-index: 1100;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: -10px 0 40px -10px rgba(0, 0, 0, 0.15);
  transition: right var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-round);
  background-color: var(--clr-bg-primary);
  color: var(--clr-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border);
}

.mobile-link {
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 18px;
  color: var(--clr-text-primary);
  padding: 8px 0;
  border-bottom: 1px solid var(--clr-border-light);
}

.mobile-link:hover {
  color: var(--clr-primary);
}

.mobile-nav-footer {
  margin-top: auto;
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
}

.mobile-sub {
  font-size: 12px;
  color: var(--clr-text-muted);
}

.mobile-address {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-text-primary);
  margin-bottom: 10px;
}

.mobile-phone {
  font-family: var(--font-family-title);
  font-weight: 800;
  font-size: 18px;
  color: var(--clr-primary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background-color: var(--clr-bg-dark);
  background-image: linear-gradient(135deg, hsla(140, 15%, 10%, 0.96) 0%, hsla(24, 25%, 8%, 0.94) 100%);
  color: var(--clr-text-light);
  overflow: hidden;
}

/* Forest Silhouette Decoration */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--clr-bg-primary) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 70% 30%, hsla(38, 60%, 50%, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  z-index: 3;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  font-family: var(--font-family-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent-gold);
  background-color: rgba(230, 160, 40, 0.12);
  border: 1px solid rgba(230, 160, 40, 0.3);
  padding: 6px 16px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--clr-accent-gold);
  background: linear-gradient(135deg, var(--clr-accent-gold) 0%, var(--clr-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--clr-text-light-muted);
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
}

.h-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 18px;
  border-radius: var(--border-radius-md);
  font-size: 14px;
  font-weight: 600;
}

.h-feat-item i {
  color: var(--clr-accent-gold);
  width: 18px;
  height: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Hero Visual Box */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.visual-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: rotate(1deg);
  transition: transform var(--transition-slow);
}

.visual-card:hover {
  transform: rotate(0) scale(1.02);
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: brightness(0.9);
}

.visual-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: hsla(28, 65%, 45%, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 15px 25px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.badge-num {
  font-family: var(--font-family-title);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.badge-txt {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

/* ==========================================================================
   WOOD SPECIES SECTION
   ========================================================================== */
.species {
  background-color: var(--clr-bg-primary);
  position: relative;
}

.species-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.species-card {
  background-color: var(--clr-bg-secondary);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--border-radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.species-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-border);
}

/* Top corner highlight bar */
.species-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--clr-border-light);
  transition: background-color var(--transition-fast);
}

.species-card:hover::before {
  background-color: var(--clr-primary);
}

.species-icon {
  width: 60px;
  height: 60px;
  background-color: var(--clr-primary-light);
  color: var(--clr-primary);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.species-icon i {
  width: 28px;
  height: 28px;
}

.species-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.species-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--clr-text-secondary);
  margin-bottom: 25px;
  flex-grow: 1;
}

.species-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.s-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  background-color: var(--clr-bg-primary);
  border: 1px solid var(--clr-border-light);
  color: var(--clr-text-secondary);
  border-radius: var(--border-radius-sm);
}

/* Specialty Cards Style override */
.species-card.accent-card {
  border-color: var(--clr-secondary-light);
  background-color: var(--clr-bg-secondary);
}

.species-card.accent-card::before {
  background-color: var(--clr-secondary);
}

.species-card.accent-card .species-icon {
  background-color: var(--clr-secondary-light);
  color: var(--clr-secondary);
}

.species-card.gold-card {
  border-color: hsla(38, 60%, 50%, 0.2);
}

.species-card.gold-card::before {
  background-color: var(--clr-accent-gold);
}

.species-card.gold-card .species-icon {
  background-color: rgba(230, 160, 40, 0.1);
  color: var(--clr-accent-gold);
}

/* ==========================================================================
   PRODUCT CATALOG SECTION
   ========================================================================== */
.catalog {
  background-color: var(--clr-bg-secondary);
  border-top: 1px solid var(--clr-border-light);
  border-bottom: 1px solid var(--clr-border-light);
}

/* Filter Navigation */
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.filter-btn {
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 22px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-secondary);
  background-color: var(--clr-bg-primary);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.filter-btn.active {
  background-color: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
  box-shadow: 0 4px 12px -3px hsla(28, 65%, 45%, 0.3);
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: var(--clr-bg-primary);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-border);
}

/* Image Container */
.p-img-container {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: var(--clr-bg-dark);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

/* Badges for Product Cards */
.p-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: var(--font-family-title);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: var(--border-radius-sm);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.p-badge.premium { background-color: var(--clr-accent-gold); }
.p-badge.success { background-color: var(--clr-secondary); }
.p-badge.info { background-color: hsl(200, 70%, 40%); }
.p-badge.warning { background-color: hsl(28, 65%, 45%); }

/* Content of card */
.p-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.p-title {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.35;
}

.p-desc {
  font-size: 13.5px;
  color: var(--clr-text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Detailed specifications table-like look */
.p-specs {
  border-top: 1px solid var(--clr-border-light);
  border-bottom: 1px solid var(--clr-border-light);
  padding: 12px 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
}

.spec-label {
  color: var(--clr-text-muted);
  font-weight: 500;
}

.spec-val {
  color: var(--clr-text-primary);
  font-weight: 700;
}

/* Product Application usage notes */
.p-use {
  font-size: 12px;
  line-height: 1.5;
  color: var(--clr-text-muted);
  background-color: var(--clr-bg-secondary);
  padding: 12px;
  border-radius: var(--border-radius-md);
  border-left: 3px solid var(--clr-primary);
  margin-bottom: 25px;
}

/* Footer card */
.p-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid var(--clr-border-light);
  padding-top: 20px;
}

.p-price {
  font-family: var(--font-family-title);
  font-size: 18px;
  font-weight: 800;
  color: var(--clr-secondary);
}

.p-price span {
  font-size: 12px;
  color: var(--clr-text-muted);
  font-weight: 500;
}

.p-call-btn {
  width: 44px;
  height: 44px;
  background-color: var(--clr-primary-light);
  color: var(--clr-primary);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.p-call-btn i {
  width: 18px;
  height: 18px;
}

.p-call-btn span {
  display: none;
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  margin-left: 8px;
  white-space: nowrap;
}

.product-card:hover .p-call-btn {
  width: 110px;
  background-color: var(--clr-primary);
  color: #fff;
  border-radius: var(--border-radius-md);
}

.product-card:hover .p-call-btn span {
  display: inline;
}

/* JS Filter Animation Helper Class */
.product-card.hidden {
  display: none;
  opacity: 0;
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */
.benefits {
  background-color: var(--clr-bg-primary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: var(--clr-bg-secondary);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--border-radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-border);
}

.b-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-md);
  background-color: var(--clr-primary-light);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.b-icon i {
  width: 24px;
  height: 24px;
}

.b-title {
  font-size: 19px;
  margin-bottom: 12px;
}

.b-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--clr-text-secondary);
}

/* ==========================================================================
   ABOUT COMPANY SECTION
   ========================================================================== */
.about {
  background-color: var(--clr-bg-secondary);
  border-top: 1px solid var(--clr-border-light);
  border-bottom: 1px solid var(--clr-border-light);
}

.about-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* Visual Box */
.about-visual {
  position: relative;
}

.about-visual-box {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: saturate(0.85);
}

/* Stat Tags Overlap */
.about-stat {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: hsla(140, 15%, 12%, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 15px 25px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.about-stat:nth-child(2) {
  top: auto;
  left: auto;
  bottom: 30px;
  right: 30px;
  background-color: hsla(28, 65%, 45%, 0.95);
}

.stat-num {
  font-family: var(--font-family-title);
  font-weight: 900;
  font-size: 22px;
  color: var(--clr-accent-gold);
}

.about-stat:nth-child(2) .stat-num {
  color: #fff;
}

.stat-txt {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

/* Content Panel */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-content .section-title {
  margin-bottom: 20px;
}

.about-lead {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--clr-text-primary);
  margin-bottom: 20px;
}

.about-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--clr-text-secondary);
  margin-bottom: 16px;
}

/* Quote Layout */
.about-quote {
  background-color: var(--clr-bg-primary);
  border: 1px solid var(--clr-border-light);
  border-left: 4px solid var(--clr-primary);
  border-radius: var(--border-radius-md);
  padding: 25px;
  margin-top: 20px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -15px;
  right: 25px;
  width: 40px;
  height: 40px;
  background-color: var(--clr-primary);
  color: #fff;
  border-radius: var(--border-radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: var(--shadow-sm);
}

.about-quote p {
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
  color: var(--clr-text-primary);
  margin-bottom: 10px;
}

.about-quote cite {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-primary);
}

/* ==========================================================================
   CONTACTS & MAP SECTION
   ========================================================================== */
.contacts {
  background-color: var(--clr-bg-primary);
}

.contacts-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: stretch;
}

/* Contact Details Info Card */
.contacts-info-card {
  background-color: var(--clr-bg-secondary);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.info-card-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.info-card-subtitle {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-bottom: 35px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 44px;
  height: 44px;
  background-color: var(--clr-primary-light);
  color: var(--clr-primary);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  width: 20px;
  height: 20px;
}

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

.info-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
  margin-bottom: 4px;
}

.info-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-text-primary);
}

.info-phone {
  font-family: var(--font-family-title);
  font-size: 18px;
  font-weight: 800;
  color: var(--clr-primary);
  display: inline-block;
  transition: var(--transition-fast);
}

.info-phone:hover {
  color: var(--clr-primary-hover);
  transform: translateX(3px);
}

.contacts-cta {
  background-color: var(--clr-bg-primary);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--border-radius-md);
  padding: 20px;
  margin-top: auto;
  text-align: center;
}

.cta-txt {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--clr-text-secondary);
}

/* Map Card */
.map-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  min-height: 450px;
}

.map-container {
  width: 100%;
  height: 100%;
  background-color: hsl(35, 10%, 90%);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--clr-bg-dark);
  color: var(--clr-text-light);
  border-top: 4px solid var(--clr-primary);
  padding-top: 80px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--clr-text-light-muted);
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--clr-primary);
  border-radius: var(--border-radius-sm);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 13.5px;
  color: var(--clr-text-light-muted);
}

.footer-nav a:hover {
  color: var(--clr-accent-gold);
  transform: translateX(4px);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
}

.footer-address {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--clr-text-light);
}

.footer-phone {
  font-family: var(--font-family-title);
  font-size: 20px;
  font-weight: 900;
  color: var(--clr-accent-gold);
  margin-bottom: 12px;
  display: inline-block;
}

.footer-phone:hover {
  color: #fff;
}

.footer-hours {
  font-size: 13px;
  color: var(--clr-text-light-muted);
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 0;
  background-color: hsl(140, 15%, 8%);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 12.5px;
  color: var(--clr-text-light-muted);
}

.dev {
  font-style: italic;
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background-color: var(--clr-secondary);
  color: #fff;
  border-radius: var(--border-radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  z-index: 99;
  transition: all var(--transition-normal);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: var(--clr-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -6px hsla(28, 65%, 45%, 0.4);
}

.scroll-top-btn i {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet & Smaller Desktop (Max: 1024px) */
@media (max-width: 1024px) {
  section {
    padding: 70px 0;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-img {
    height: 380px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .about-img {
    height: 380px;
  }

  .contacts-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-card {
    min-height: 350px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

/* Mobile Devices (Max: 768px) */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .phone-link .phone-text-box {
    display: none;
  }

  .phone-link {
    padding: 8px;
    border-radius: var(--border-radius-round);
  }

  .section-title {
    font-size: 28px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-img {
    height: 280px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

/* Tiny Screens (Max: 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .species-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .contacts-info-card {
    padding: 25px 20px;
  }
}
