@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-algae: #065F46;
  --color-algae-light: #0f766e;
  --color-algae-soft: rgba(6, 95, 70, 0.08);
  --color-lake: #1E3A8A;
  --color-lake-dark: #1e1b4b;
  --color-lake-soft: rgba(30, 58, 138, 0.08);
  --color-pearl: #F1F5F9;
  --color-pearl-dark: #E2E8F0;
  --color-sand: #E9DCC9;
  --color-sand-dark: #D7C4A9;
  --color-sand-soft: rgba(233, 220, 201, 0.3);
  --color-dark: #0f172a;
  --color-light: #ffffff;
  --font-display: 'Comfortaa', cursive, sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.25s ease;
  --radius-organic-1: 60% 40% 30% 70% / 60% 30% 70% 40%;
  --radius-organic-2: 40% 60% 70% 30% / 50% 60% 40% 50%;
  --radius-organic-3: 50% 50% 30% 70% / 50% 60% 40% 50%;
  --radius-organic-4: 30% 70% 70% 30% / 50% 30% 70% 50%;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

/* Custom Scrollbar with Lake Blue & Algae Green theme */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-pearl);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-algae), var(--color-lake));
  border-radius: 10px;
  border: 2px solid var(--color-pearl);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--color-algae-light), var(--color-lake-dark));
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-lake);
  line-height: 1.3;
}

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

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(241, 245, 249, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 58, 138, 0.08);
  transition: var(--transition-smooth);
}

header.scrolled {
  box-shadow: 0 10px 30px rgba(6, 95, 70, 0.05);
  background: rgba(241, 245, 249, 0.95);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-algae);
}

.logo svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: var(--color-lake);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  color: var(--color-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-algae), var(--color-lake));
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-lake);
  margin: 6px 0;
  transition: 0.4s;
}

/* Fluid Organic Background elements */
.organic-bg-shape {
  position: absolute;
  z-index: -1;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-sand) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  border-radius: var(--radius-organic-1);
}

.shape-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-algae-soft) 0%, transparent 75%);
  bottom: 10%;
  left: -10%;
  border-radius: var(--radius-organic-2);
}

.shape-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--color-lake-soft) 0%, transparent 70%);
  top: 50%;
  right: 10%;
  border-radius: var(--radius-organic-3);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--color-algae-soft);
  border: 1px solid rgba(6, 95, 70, 0.15);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--color-algae);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
}

.hero-title span {
  background: linear-gradient(135deg, var(--color-algae) 30%, var(--color-lake) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-algae) 0%, var(--color-lake) 100%);
  color: var(--color-light);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-lake);
  border: 2px solid var(--color-lake);
}

.btn-secondary:hover {
  background-color: var(--color-lake-soft);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-blob-wrapper {
  position: relative;
  width: 450px;
  height: 450px;
}

.hero-blob {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-sand);
  border-radius: var(--radius-organic-1);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
  transition: var(--transition-smooth);
  animation: blob-bounce 10s infinite alternate ease-in-out;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: var(--transition-smooth);
}

.hero-blob-wrapper:hover .hero-image {
  transform: scale(1.12);
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1.25rem 2rem;
  border-radius: 24px;
  border: 1px solid rgba(233, 220, 201, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 20;
  animation: float 6s infinite ease-in-out;
}

.hero-badge-icon {
  width: 45px;
  height: 45px;
  background-color: var(--color-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-algae);
}

.hero-badge-text h4 {
  font-size: 0.95rem;
  color: var(--color-dark);
}

.hero-badge-text p {
  font-size: 0.75rem;
  color: #64748b;
}

@keyframes blob-bounce {
  0% { border-radius: var(--radius-organic-1); }
  50% { border-radius: var(--radius-organic-2); }
  100% { border-radius: var(--radius-organic-3); }
}

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

/* Fluid Organic SVG Curves (Transitions) */
.curve-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  z-index: 5;
  margin-top: -1px;
}

.curve-divider svg {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  fill: var(--color-pearl);
}

.curve-divider.reverse svg {
  transform: rotate(180deg);
}

.bg-sand-section {
  background-color: var(--color-sand-soft);
  position: relative;
}

.bg-white-section {
  background-color: var(--color-light);
  position: relative;
}

/* Scroll Reveal animation system */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Section Common Styles */
.section {
  padding: 7rem 2rem;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-algae);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-lake);
  position: relative;
  padding-bottom: 1.25rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-algae), var(--color-lake));
  border-radius: 2px;
}

/* Features/Aesthetic Cards Grid */
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  background: var(--color-light);
  padding: 3rem 2rem;
  border-radius: 30px;
  border: 1px solid rgba(30, 58, 138, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-algae-soft) 0%, var(--color-lake-soft) 100%);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.06);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-organic-4);
  background: var(--color-pearl);
  color: var(--color-algae);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--color-light);
  color: var(--color-lake);
  transform: rotate(8deg);
}

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-desc {
  font-size: 0.95rem;
  color: #64748b;
}

/* Showcased Collection (Home) */
.showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.showcase-content {
  padding-right: 2rem;
}

.showcase-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.showcase-img-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.showcase-img-card.tall {
  grid-row: span 2;
  border-radius: 50px 20px 50px 50px / 50px 20px 50px 50px;
}

.showcase-img-card.wide {
  border-radius: 20px 50px 30px 40px / 30px 50px 20px 40px;
}

.showcase-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

/* Products/Collections Page styling */
.products-layout {
  max-width: 1200px;
  margin: 0 auto;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 2rem;
  background-color: var(--color-light);
  border: 1px solid rgba(30, 58, 138, 0.08);
  font-family: var(--font-display);
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--color-dark);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--color-algae) 0%, var(--color-lake) 100%);
  color: var(--color-light);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.15);
}

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

.product-card {
  background: var(--color-light);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(30, 58, 138, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(6, 95, 70, 0.08);
}

.product-img-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
  background-color: var(--color-sand-soft);
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.product-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-algae);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.product-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 1.25rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-lake);
}

.product-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-pearl);
  color: var(--color-algae);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-card:hover .product-btn {
  background-color: var(--color-algae);
  color: var(--color-light);
}

/* About Page Specific Styles */
.about-hero {
  padding-top: 9rem;
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-blob-frame {
  width: 400px;
  height: 400px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  background: var(--color-sand);
}

.about-blob-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-stats {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--color-light);
  padding: 2rem;
  border-radius: 30px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  border: 1px solid rgba(233, 220, 201, 0.6);
  z-index: 10;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-algae);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials / Temoignages */
.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 1rem;
}

.testimonial-card {
  background: var(--color-light);
  border-radius: 35px;
  padding: 4rem 3rem;
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.03);
  border: 1px solid rgba(30, 58, 138, 0.05);
  text-align: center;
  position: relative;
}

.testimonial-quote-icon {
  font-size: 5rem;
  color: var(--color-sand);
  line-height: 0;
  position: absolute;
  top: 2rem;
  left: 3rem;
  opacity: 0.4;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: #334155;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-organic-4);
  background-color: var(--color-sand);
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-algae);
}

.testimonial-role {
  font-size: 0.8rem;
  color: #64748b;
}

/* Contact Page Styles */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--color-algae-soft);
  color: var(--color-algae);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-text p {
  color: #64748b;
  font-size: 0.95rem;
}

/* Organic Custom Map Design */
.map-wrapper {
  margin-top: 2rem;
  border-radius: var(--radius-organic-1);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  border: 4px solid var(--color-light);
  height: 250px;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--color-sand) 0%, var(--color-pearl-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.map-pin {
  width: 30px;
  height: 30px;
  background-color: var(--color-lake);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin-bottom: 1rem;
  position: relative;
  animation: float 3s infinite ease-in-out;
}

.map-pin::after {
  content: '';
  width: 12px;
  height: 12px;
  background-color: var(--color-light);
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 9px;
}

/* Floating Label Form */
.contact-form {
  background-color: var(--color-light);
  border-radius: 35px;
  padding: 3.5rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.04);
  border: 1px solid rgba(30, 58, 138, 0.05);
}

.form-group {
  position: relative;
  margin-bottom: 2.25rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: var(--color-pearl);
  border: 1.5px solid transparent;
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  transition: var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--color-algae);
  background-color: var(--color-light);
  box-shadow: 0 5px 15px rgba(6, 95, 70, 0.05);
}

.form-label {
  position: absolute;
  left: 1.25rem;
  top: 1rem;
  color: #64748b;
  font-family: var(--font-display);
  font-size: 0.95rem;
  pointer-events: none;
  transition: var(--transition-fast);
}

/* Floating behavior when input is focused or has content */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -0.6rem;
  left: 1rem;
  font-size: 0.75rem;
  background-color: var(--color-light);
  padding: 0 0.5rem;
  color: var(--color-algae);
  font-weight: 700;
}

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

/* Footer styling */
footer {
  background-color: var(--color-lake-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 2rem 2rem;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  color: var(--color-light);
  margin-bottom: 1.5rem;
}

.footer-logo svg {
  stroke: var(--color-sand);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-title {
  color: var(--color-sand);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a:hover {
  color: var(--color-sand);
  padding-left: 5px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.06);
  color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--color-sand);
  color: var(--color-lake-dark);
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex-grow: 1;
  padding: 0.85rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  background-color: rgba(255,255,255,0.05);
  color: var(--color-light);
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--color-sand);
}

.newsletter-btn {
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  background-color: var(--color-sand);
  color: var(--color-lake-dark);
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition-fast);
}

.newsletter-btn:hover {
  background-color: var(--color-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* Cookies Consent Modal */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(233, 220, 201, 0.8);
  border-radius: 28px;
  padding: 2.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  display: none;
  animation: slide-up 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes slide-up {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-algae);
}

.cookie-content p {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 1.5rem;
}

.cookie-content a {
  color: var(--color-lake);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--color-algae) 0%, var(--color-lake) 100%);
  color: var(--color-light);
}

.cookie-btn-accept:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

.cookie-btn-deny {
  background-color: var(--color-pearl);
  color: #475569;
  border: 1px solid var(--color-pearl-dark);
}

.cookie-btn-deny:hover {
  background-color: var(--color-pearl-dark);
}

/* Policies Pages common classes */
.legal-layout {
  max-width: 800px;
  margin: 0 auto;
  padding: 10rem 2rem 6rem;
}

.legal-layout h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--color-lake);
}

.legal-layout h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-algae);
}

.legal-layout p, .legal-layout ul {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.legal-layout ul {
  padding-left: 1.5rem;
}

.legal-layout li {
  margin-bottom: 0.5rem;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-container {
    gap: 2rem;
  }
  .features-grid, .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--color-pearl);
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  }

  .nav-menu.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .cta-group {
    justify-content: center;
  }

  .hero-blob-wrapper {
    width: 320px;
    height: 320px;
  }

  .features-grid, .products-grid, .about-grid, .contact-container {
    grid-template-columns: 1fr;
  }

  .showcase-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .showcase-content {
    padding-right: 0;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
