/* 
  Lucy Plywood - Premium Export Landing Page CSS
  Palette: Forest Green, Luxury Amber/Gold, Warm Off-White, Dark Charcoal
*/

:root {
  --primary-color: #0c2b1c; /* Deep Forest Green */
  --primary-light: #16402b;
  --secondary-color: #cda26b; /* Luxury Amber Gold */
  --secondary-hover: #b88f5a;
  --text-dark: #1f2937; /* Slate 800 */
  --text-light: #4b5563; /* Slate 600 */
  --text-white: #ffffff;
  --bg-warm: #fcfbf7; /* Premium off-white */
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-warm);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-warm);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Custom Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

.section-padding {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }
}

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

.section-subtitle {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  transition: var(--transition);
}

header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition);
}

header.scrolled .nav-wrapper {
  height: 64px;
}

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

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.02em;
}

.logo-tagline {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: -4px;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary-color);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-color);
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  .nav-actions .btn-quote {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
}

/* Mobile Sidebar Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background-color: var(--bg-warm);
  z-index: 2000;
  box-shadow: var(--shadow-xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

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

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-color);
  margin-bottom: 2.5rem;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

.mobile-nav-link:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(22, 64, 43, 0.08) 0%, transparent 60%),
              linear-gradient(135deg, rgba(253, 251, 247, 0.95) 40%, rgba(253, 251, 247, 0.8) 100%);
  z-index: 1;
}

.hero-bg-wood {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  z-index: 0;
}

@media (max-width: 992px) {
  .hero-bg-wood {
    width: 100%;
    opacity: 0.15;
  }
  .hero-overlay {
    background: linear-gradient(135deg, rgba(253, 251, 247, 0.98) 0%, rgba(253, 251, 247, 0.92) 100%);
  }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
}

@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-content {
  max-width: 680px;
}

.badge-export {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(12, 43, 28, 0.06);
  border: 1px solid rgba(12, 43, 28, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.badge-export span {
  width: 8px;
  height: 8px;
  background-color: var(--success-color);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--success-color);
}

.hero-title {
  font-size: 3.75rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
  }
}

.hero-title span {
  color: var(--secondary-color);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

@media (max-width: 992px) {
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 992px) {
  .hero-cta {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid rgba(12, 43, 28, 0.1);
  padding-top: 2rem;
}

@media (max-width: 992px) {
  .hero-stats {
    justify-content: center;
  }
}

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

.stat-item h4 {
  font-size: 2.25rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-showcase {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--bg-white);
  transform: rotate(1deg);
  transition: var(--transition);
}

.hero-image-showcase:hover {
  transform: rotate(0) scale(1.02);
}

/* Certificates bar */
.certificates-bar {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 1.5rem 0;
  border-bottom: 2px solid var(--secondary-color);
}

.certs-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.cert-item i {
  color: var(--secondary-color);
  font-size: 1.25rem;
}

/* Core Strengths Section */
.strengths {
  background-color: var(--bg-white);
}

.section-header {
  max-width: 700px;
  margin: 0 auto 4.5rem;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

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

.strength-card {
  background-color: var(--bg-warm);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.strength-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.strength-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.strength-card:hover::before {
  transform: scaleX(1);
  background-color: var(--secondary-color);
}

.strength-icon {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background-color: rgba(12, 43, 28, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.strength-card:hover .strength-icon {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.strength-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.strength-card p {
  color: var(--text-light);
  font-size: 0.925rem;
}

/* Products Gallery Section */
.products-section {
  background-color: var(--bg-warm);
}

.product-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

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

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

.product-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.product-img-wrapper {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background-color: #eee;
}

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

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(12, 43, 28, 0.9);
  backdrop-filter: blur(4px);
  color: var(--secondary-color);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-specs {
  border-top: 1px dashed var(--border-color);
  padding-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.775rem;
  margin-bottom: 0.25rem;
}

.spec-lbl {
  color: var(--text-light);
  font-weight: 500;
}

.spec-val {
  color: var(--text-dark);
  font-weight: 600;
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-btn-quote {
  width: 100%;
  text-align: center;
  padding: 0.65rem;
  font-size: 0.875rem;
  border-radius: 4px;
  background-color: var(--bg-warm);
  color: var(--primary-color);
  font-weight: 600;
  border: 1px solid var(--border-color);
}

.product-btn-quote:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
  border-color: var(--primary-color);
}

/* Process Section */
.process {
  background-color: var(--bg-white);
}

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 4rem auto 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--border-color);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .process-timeline::before {
    left: 20px;
  }
}

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

.process-step:nth-child(even) {
  direction: rtl;
}

.process-step:nth-child(even) .process-card {
  direction: ltr;
}

@media (max-width: 768px) {
  .process-step {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-left: 50px;
  }
  .process-step:nth-child(even) {
    direction: ltr;
  }
}

.process-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  border: 4px solid var(--bg-white);
  box-shadow: var(--shadow-md);
  z-index: 5;
}

@media (max-width: 768px) {
  .process-number {
    left: 20px;
    top: 24px;
    transform: translate(-50%, 0);
  }
}

.process-media {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/2;
}

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

.process-card {
  background-color: var(--bg-warm);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 8px;
}

.process-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.process-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Specifications/QC Section */
.specifications {
  background-color: var(--bg-warm);
}

.table-wrapper {
  overflow-x: auto;
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 800px;
}

th {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

tr:last-child td {
  border-bottom: none;
}

tr:nth-child(even) td {
  background-color: rgba(252, 251, 247, 0.5);
}

.tech-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.725rem;
  font-weight: 600;
  background-color: rgba(205, 162, 107, 0.15);
  color: var(--primary-color);
  border: 1px solid rgba(205, 162, 107, 0.3);
}

/* Testimonials / Quote Form Section */
.quote-section {
  background-color: var(--bg-white);
}

.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .quote-wrapper {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.quote-info-side {
  max-width: 500px;
}

.quote-info-side h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.quote-info-side p {
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.contact-direct-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(12, 43, 28, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.contact-direct-info span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.contact-direct-info a, .contact-direct-info p {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.quote-form-side {
  background-color: var(--bg-warm);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .quote-form-side {
    padding: 2rem 1.5rem;
  }
}

.quote-form-side h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

input, select, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(12, 43, 28, 0.08);
}

.submit-btn {
  width: 100%;
  margin-top: 1rem;
  border: none;
}

/* Footer */
footer {
  background-color: #0c1a12; /* Darker green */
  color: #a3b8ad;
  padding: 5rem 0 2rem;
  border-top: 4px solid var(--secondary-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

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

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-col h3 {
  color: var(--text-white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--text-white);
  padding-left: 0.25rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-info i {
  color: var(--secondary-color);
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
}

@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-bottom a:hover {
  color: var(--text-white);
}

/* Icons styling using simple class names for fontawesome/lucide icons */
.lucide {
  width: 1.25em;
  height: 1.25em;
  display: inline-block;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}
