/* Flores a Dias - Main Stylesheet */

:root {
  --sage-green: #6B8E71;
  --cream: #F5F3F0;
  --charcoal: #2B2B2B;
  --light-green: #8BA887;
  --dark-cream: #EBE8E3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--charcoal);
  line-height: 1.6;
  background-color: var(--cream);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 700;
}

/* Header & Navigation */
header {
  background-color: var(--cream);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--dark-cream);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(245, 243, 240, 0.85);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sage-green);
  letter-spacing: 1px;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
}

nav a:hover {
  color: var(--sage-green);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: 2.5px solid #4A5F41;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  margin-top: -12px;
}

.hamburger.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger:hover {
  border-color: #3D4933;
  transform: scale(1.05);
}

.hamburger span {
  display: none;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--cream);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid var(--dark-cream);
    visibility: hidden;
  }

  nav.active {
    max-height: 500px;
    visibility: visible;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 2rem;
  }

  nav li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--dark-cream);
  }

  nav li:last-child {
    border-bottom: none;
  }

  nav a {
    display: block;
  }

  .header-content {
    padding: 0 1.5rem;
  }

  .logo {
    font-size: 1.5rem;
  }
}

/* Hero Section with Dynamic Flowers & Parallax */
.hero {
  position: relative;
  color: var(--cream);
  padding: 8rem 2rem;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(107, 142, 113, 0.85) 0%, rgba(139, 168, 135, 0.85) 100%), 
              url('/images/hero-bg.jpg') center/cover no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

/* Floating Flowers Animation */
.flowers-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.flower {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.6;
  animation: float 8s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transform: translateZ(0);
  will-change: transform;
}

.flower-1 {
  top: 15%;
  left: 10%;
  animation: float 8s ease-in-out infinite, sway 4s ease-in-out infinite;
  font-size: 2.8rem;
}

.flower-2 {
  top: 20%;
  right: 15%;
  animation: float 10s ease-in-out infinite 1s, sway 5s ease-in-out infinite 0.5s;
  font-size: 2.2rem;
}

.flower-3 {
  top: 40%;
  left: 8%;
  animation: float 9s ease-in-out infinite 0.5s, sway 6s ease-in-out infinite 1s;
  font-size: 2.6rem;
}

.flower-4 {
  top: 35%;
  right: 10%;
  animation: float 11s ease-in-out infinite 2s, sway 5.5s ease-in-out infinite 1.5s;
  font-size: 2.4rem;
}

.flower-5 {
  top: 60%;
  left: 15%;
  animation: float 8.5s ease-in-out infinite 1.5s, sway 4.5s ease-in-out infinite 0.8s;
  font-size: 2.3rem;
}

.flower-6 {
  top: 55%;
  right: 12%;
  animation: float 10.5s ease-in-out infinite 0.8s, sway 5.5s ease-in-out infinite 1.2s;
  font-size: 2.7rem;
}

.flower-7 {
  top: 25%;
  left: 50%;
  animation: float 9.5s ease-in-out infinite 1.2s, sway 6s ease-in-out infinite 0.3s;
  font-size: 2.5rem;
}

.flower-8 {
  top: 70%;
  left: 40%;
  animation: float 8s ease-in-out infinite 2.5s, sway 4.5s ease-in-out infinite 1.8s;
  font-size: 2.1rem;
}

.flower-9 {
  top: 30%;
  right: 25%;
  animation: float 10s ease-in-out infinite 1.8s, sway 5s ease-in-out infinite 0.6s;
  font-size: 2.4rem;
}

.flower-10 {
  top: 50%;
  right: 20%;
  animation: float 9s ease-in-out infinite 2.2s, sway 6s ease-in-out infinite 1.3s;
  font-size: 2.5rem;
}

.flower-11 {
  top: 45%;
  left: 30%;
  animation: float 8.5s ease-in-out infinite 0.3s, sway 5.5s ease-in-out infinite 2s;
  font-size: 2.2rem;
}

.flower-12 {
  top: 65%;
  right: 35%;
  animation: float 11s ease-in-out infinite 1.1s, sway 4.5s ease-in-out infinite 0.9s;
  font-size: 2.6rem;
}

.flower-13 {
  top: 20%;
  left: 20%;
  animation: float 9.5s ease-in-out infinite 0.7s, sway 5s ease-in-out infinite 1.5s;
  font-size: 2.3rem;
}

.flower-14 {
  top: 42%;
  right: 5%;
  animation: float 8.5s ease-in-out infinite 2.1s, sway 6s ease-in-out infinite 0.4s;
  font-size: 2.5rem;
}

.flower-15 {
  top: 58%;
  left: 5%;
  animation: float 10.5s ease-in-out infinite 1.4s, sway 5.5s ease-in-out infinite 1.7s;
  font-size: 2.2rem;
}

.flower-16 {
  top: 28%;
  left: 45%;
  animation: float 9s ease-in-out infinite 0.9s, sway 4.5s ease-in-out infinite 2.2s;
  font-size: 2.4rem;
}

.flower-17 {
  top: 52%;
  left: 50%;
  animation: float 11s ease-in-out infinite 1.6s, sway 6s ease-in-out infinite 0.5s;
  font-size: 2.7rem;
}

.flower-18 {
  top: 38%;
  right: 30%;
  animation: float 8s ease-in-out infinite 2.3s, sway 5s ease-in-out infinite 1.1s;
  font-size: 2.3rem;
}

.flower-19 {
  top: 68%;
  right: 8%;
  animation: float 10s ease-in-out infinite 0.6s, sway 5.5s ease-in-out infinite 1.8s;
  font-size: 2.5rem;
}

.flower-20 {
  top: 32%;
  right: 40%;
  animation: float 9.5s ease-in-out infinite 1.9s, sway 4.5s ease-in-out infinite 0.7s;
  font-size: 2.4rem;
}

.flower-21 {
  top: 55%;
  left: 31%;
  animation: float 10s ease-in-out infinite 1.3s, sway 5s ease-in-out infinite 1.6s;
  font-size: 2.5rem;
}

.flower-22 {
  top: 72%;
  left: 31%;
  animation: float 9s ease-in-out infinite 0.4s, sway 6s ease-in-out infinite 0.8s;
  font-size: 2.3rem;
}

.flower-23 {
  top: 62%;
  left: 35%;
  animation: float 10.5s ease-in-out infinite 2s, sway 5.5s ease-in-out infinite 1.4s;
  font-size: 2.6rem;
}

.flower-24 {
  top: 78%;
  left: 33%;
  animation: float 8.5s ease-in-out infinite 1.5s, sway 4.5s ease-in-out infinite 2s;
  font-size: 2.2rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(-35px) translateX(-8px);
  }
  75% {
    transform: translateY(-15px) translateX(12px);
  }
}

@keyframes sway {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(15px);
  }
}

/* Dynamic Logo */
.logo-dynamic {
  font-size: 5.2rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: pulse-glow 3s ease-in-out infinite;
  cursor: default;
  filter: drop-shadow(0 0 15px rgba(255, 182, 193, 0.4));
}

.logo-text {
  display: inline-block;
  animation: rotate-gentle 8s linear infinite;
  transform-origin: center;
}

@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(255, 182, 193, 0.3));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(255, 182, 193, 0.6));
    transform: scale(1.05);
  }
}

@keyframes rotate-gentle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Scroll Indicator Arrow */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.scroll-indicator-inline {
  display: block;
  margin-top: 1.5rem;
  text-align: center;
  z-index: 3;
}

@media (max-width: 768px) {
  .scroll-indicator-inline {
    display: none;
  }
}

.scroll-arrow {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--cream);
  opacity: 0.7;
  animation: bounce-down 2s ease-in-out infinite;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes bounce-down {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.7;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 3;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.cta-button {
  display: inline-block;
  background-color: var(--cream);
  color: var(--sage-green);
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--cream);
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: var(--charcoal);
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(107, 142, 113, 0.3);
  border-color: var(--charcoal);
}

.submit-button {
  background: linear-gradient(135deg, #6B8E71 0%, #8BA887 100%);
  color: white;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.submit-button:hover {
  background: linear-gradient(135deg, #5a7a62 0%, #7a9776 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(107, 142, 113, 0.4);
}

.submit-button:active {
  transform: translateY(-2px) scale(0.98);
}

/* Sections */
.section-title {
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--sage-green);
  font-weight: 700;
}

/* Services Section */
.services {
  padding: 5rem 2rem;
  background-color: white;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--cream);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border-left: 5px solid var(--sage-green);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(107, 142, 113, 0.2);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

/* Shop Section */
.shop {
  padding: 5rem 2rem;
  background-color: var(--cream);
}

.shop-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(43, 43, 43, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(107, 142, 113, 0.2);
}

.product-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-green) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.product-info {
  padding: 2rem;
}

.product-info h4 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  color: var(--charcoal);
}

.product-description {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.product-price {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  color: var(--sage-green);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.add-to-cart {
  width: 100%;
  background-color: var(--sage-green);
  color: var(--cream);
  border: none;
  padding: 0.9rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.add-to-cart:hover {
  background-color: var(--light-green);
}

/* About Section */
.about {
  padding: 5rem 2rem;
  background-color: white;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 2rem;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  padding: 2rem;
  background-color: var(--cream);
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-item:hover {
  box-shadow: 0 8px 16px rgba(107, 142, 113, 0.15);
  transform: translateY(-3px);
}

.value-item h4 {
  font-family: 'Lora', serif;
  color: var(--sage-green);
  margin-bottom: 0.7rem;
}

/* Contact Section */
.contact {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #E8D4CC 0%, #8BA887 100%);
  color: var(--cream);
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-info {
  display: grid;
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.contact-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
}

.contact-item strong {
  min-width: 120px;
  text-align: right;
}

/* Footer */
footer {
  background-color: var(--charcoal);
  color: var(--cream);
  padding: 3rem 2rem;
  text-align: center;
  font-size: 0.95rem;
}

footer p {
  margin: 0.7rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .hero {
    padding: 5rem 1.5rem;
    min-height: 450px;
  }

  .logo-dynamic {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle,
  .hero-description {
    font-size: 1rem;
  }

  .flower {
    font-size: 2rem !important;
    opacity: 0.5;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid,
  .shop-grid,
  .values-list {
    grid-template-columns: 1fr;
  }

  .services,
  .shop,
  .about,
  .contact {
    padding: 3rem 1.5rem;
  }
}

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

  .cta-button {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.message {
  padding: 1.5rem 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.message-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.message-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Customers Section */
.customers {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f9f7f4 0%, #f5f3f0 100%);
  text-align: center;
}

.customers-container {
  max-width: 800px;
  margin: 3rem auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.customer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--sage-green);
  font-family: 'Lora', serif;
}

.stat-label {
  font-size: 1.2rem;
  color: var(--charcoal);
  font-weight: 500;
}

.customers-subtitle {
  font-size: 1rem;
  color: #666;
  margin-top: 2rem;
}

/* Nature Emojis */
.nature-emoji {
  font-size: 2.5rem;
  opacity: 0.5;
  animation: float-nature 4s ease-in-out infinite;
  align-self: center;
}

.nature-emoji-1 {
  animation-delay: 0s;
}

.nature-emoji-2 {
  animation-delay: 1s;
}

@keyframes float-nature {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-15px);
    opacity: 0.8;
  }
}

/* Map Section */
.map {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, #F5F3F0 0%, #E8D4CC 100%);
  text-align: center;
}

/* Loyalty Cards */
.loyalty-cards {
  max-width: 1000px;
  margin: 2rem auto 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.loyalty-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(107, 142, 113, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid var(--sage-green);
}

.loyalty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(107, 142, 113, 0.2);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.loyalty-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--sage-green);
}

.loyalty-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.map-container {
  max-width: 900px;
  margin: 2rem auto;
  box-shadow: 0 8px 24px rgba(107, 142, 113, 0.15);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(107, 142, 113, 0.1) 0%, rgba(139, 168, 135, 0.05) 100%);
  z-index: 1;
  pointer-events: none;
}

.map-info {
  font-size: 1rem;
  color: #666;
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer with Parallax */
.footer-parallax {
  position: relative;
  background: var(--charcoal);
  color: white;
  padding: 4rem 2rem 2rem;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/bg-footer.webp') center/cover;
  opacity: 0.12;
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--light-green);
}

.footer-section p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0.9;
}

.footer-section a:hover {
  color: var(--light-green);
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

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

  .stat-number {
    font-size: 2.5rem;
  }

  .customers-container {
    gap: 2rem;
  }
}
