:root {
  --primary: #C4D300;
  --primary-hover: #b0bd00;
  --bg-dark: #0A0D08;
  --bg-black: #050505;
  --text-light: #F9F9F9;
  --text-muted: #A0A0A0;
  --card-bg: rgba(255, 255, 255, 0.03);
  --glass-bg: rgba(10, 13, 8, 0.7);
  --border-color: rgba(255, 255, 255, 0.08);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-black);
  /* Dark Global with Green-Tinted Texture */
  background-image:
    radial-gradient(circle at 20% 30%, rgba(14, 31, 2, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(14, 31, 2, 0.2) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-attachment: fixed;
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.contact-page-body {
  background-image: none !important;
  background-color: #050505 !important;
}

::selection {
  background-color: var(--primary);
  color: var(--bg-black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

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

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

.text-muted {
  color: var(--text-muted);
}

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

.section {
  padding: 8rem 0;
}

.section-title {
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  max-width: 600px;
}

.section-title.text-center p {
  margin: 0 auto;
}

.mt-4 {
  margin-top: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-black);
  box-shadow: 0 4px 15px rgba(196, 211, 0, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(196, 211, 0, 0.5);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-black);
}

.btn-outline-light {
  border-color: var(--border-color);
  color: var(--text-light);
}

.btn-outline-light:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--primary);
}

.logo-img {
  height: 40px;
  width: auto;
}

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

.nav-links a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 400;
  color: #ddd;
  position: relative;
}

.nav-links a:not(.btn):hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #ddd;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* Vision Section */
.vision {
  background-color: #0E1F02;
  position: relative;
  overflow: hidden;
}

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

.vision-headline {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.vision-subheadline {
  font-size: 1.6rem;
  color: var(--primary);
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 2rem;
}

.vision-divider {
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  margin: 2rem auto;
}

.vision-text {
  font-size: 1.6rem;
  color: #e0e0e0;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.vision-list-container {
  background: var(--card-bg);
  padding: 3rem 4rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  display: inline-block;
  text-align: left;
}

.vision-values-intro {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.vision-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.vision-list li {
  font-size: 1.15rem;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vision-list li span {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: bold;
}

/* Features */
.features {
  background-color: var(--bg-dark);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.feature-card {
  background: var(--card-bg);
  padding: 3rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(196, 211, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Features Expansion - Alternating Layout */
.features-details {
  margin-top: 10rem !important;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 6rem;
  margin-bottom: 6rem;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1.2;
}

.feature-visual {
  flex: 1;
  height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background-color: #111;
}

.maintenance-img {
  background-image: url('/Users/jimmy/.gemini/antigravity/brain/d0b52e10-65fa-486c-9cea-79ee945055be/maintenance_garden_premium_2_1772015513024.png');
}

.ecology-img {
  background-image: url('/Users/jimmy/.gemini/antigravity/brain/d0b52e10-65fa-486c-9cea-79ee945055be/eco_water_garden_2_1772015719349.png');
}

.philosophy-block {
  text-align: center;
  margin: 8rem auto;
  max-width: 1000px;
}

.philosophy-block p {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  line-height: 1.4;
  color: #fff;
  font-style: italic;
  opacity: 1;
  letter-spacing: -0.02em;
}

.bad-list {
  margin-top: 1.5rem;
}

.bad-list li {
  position: relative;
  padding-left: 2rem;
  color: #888;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.bad-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 300;
  opacity: 0.8;
}


/* Investment Sober Layout */
.investment-sober {
  background: var(--card-bg);
  padding: 5rem 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.max-600 {
  max-width: 600px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.investment-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.investment-list p {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.investment-list p:not(:last-child)::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--primary);
  margin: 1rem auto;
  opacity: 0.3;
}

@media (max-width: 991px) {

  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    gap: 3rem;
  }

  .feature-visual {
    width: 100%;
    height: 350px;
  }
}

.check-list {
  margin-bottom: 2rem;
}

/* Collections */
.collections-section {
  background-color: var(--primary);
  /* Inverted flashy background */
  position: relative;
}

.collections-section .section-title h2 {
  color: var(--bg-black);
}

.collections-section .section-title p {
  color: #333;
  font-weight: 500;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

/* Individual Card Styling */
.collection-card {
  background-color: var(--bg-black);
  padding: 4rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

/* Base overlay for readability over grass */
.collection-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(5, 5, 5, 0.45);
  /* Dark overlay, reduced to see grass */
  z-index: -1;
  transition: var(--transition-smooth);
}

.collection-card:hover::before {
  background-color: rgba(5, 5, 5, 0.3);
  /* Lighten slightly on hover */
}

/* Specific Backgrounds */
.collection-card:nth-child(1) {
  /* 32 mm KAZA MASCAREIGNE */
  background-image: url('images/grass_35mm_1771998937483.png');
  background-size: cover;
  background-position: center;
}

.collection-card:nth-child(2) {
  /* 35 mm KAZA AUSTRAL */
  background-image: url('images/grass_35mm_1771998937483.png');
  background-size: cover;
  background-position: center;
}

.collection-card:nth-child(3) {
  /* 38 mm KAZA ALIZÉE */
  background-image: url('images/grass_45mm_1771999086234.png');
  background-size: cover;
  background-position: center;
}

.collection-card:nth-child(4) {
  /* 50 mm KAZA MÉDITÉRANNÉE */
  background-image: url('images/grass_50mm_1771999189395.png');
  background-size: cover;
  background-position: center;
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.collection-card.highlighted {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
  border: 2px solid var(--primary);
}

.collection-card.highlighted:hover {
  transform: scale(1.05) translateY(-5px);
}

.card-badge {
  position: absolute;
  top: 1.5rem;
  right: -2rem;
  background: #333;
  color: #fff;
  padding: 0.3rem 3rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.card-badge.premium {
  background: var(--primary);
  color: var(--bg-black);
  font-weight: 700;
}

.card-badge.luxury {
  background: linear-gradient(135deg, #d4af37, #ffd700);
  color: var(--bg-black);
  font-weight: 700;
}

.collection-card h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.collection-desc {
  color: #ddd;
  margin-bottom: 2.5rem;
  min-height: 80px;
  font-size: 1.05rem;
}

/* Portfolio */
.portfolio {
  background-color: var(--bg-black);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background-color: #050505;
  transition: var(--transition-smooth);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  display: block;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}


/* Overlay for hover effect */
.portfolio-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: var(--transition-smooth);
}

.portfolio-item:hover::after {
  opacity: 1;
}

.portfolio-item:hover {
  transform: scale(1.02);
  z-index: 10;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* About (Qui sommes nous) */
.about {
  background-color: #0E1F02;
  position: relative;
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text h2 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

.about-intro {
  font-size: 1.4rem;
  color: #fff;
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 2rem;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-text .check-list {
  margin-top: 2rem;
}

.about-text .check-list li {
  font-size: 1rem;
  color: #ccc;
  font-weight: 300;
}

.about-image {
  position: relative;
  height: 500px;
}

.about-image-inner {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: left center;
  box-shadow: -20px 20px 0 rgba(196, 211, 0, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--primary);
  color: var(--bg-black);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  z-index: 2;
  border: 4px solid var(--bg-dark);
}

.experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

/* Footer */
.footer {
  background-color: #030303;
  padding: 6rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 300px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links li {
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}

.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }

  .lifestyle-layout,
  .about-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .collection-card.highlighted {
    transform: scale(1);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .vision-headline {
    font-size: 2.5rem;
  }

  .vision-subheadline {
    font-size: 1.3rem;
  }

  .vision-text {
    font-size: 1.3rem;
  }

  .vision-list-container {
    padding: 2rem;
  }

  .about-text h2 {
    font-size: 2.8rem;
  }

  .about-intro {
    font-size: 1.2rem;
  }

  .experience-badge {
    width: 120px;
    height: 120px;
    bottom: -15px;
    right: -15px;
  }

  .experience-badge .number {
    font-size: 1.8rem;
  }

  .experience-badge .text {
    font-size: 0.7rem;
  }

  .section {
    padding: 5rem 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* =========================================
   CONTACT PAGE & FORM 
   ========================================= */
.contact-page-body {
  background-color: var(--bg-black);
}

.navbar-solid {
  background: rgba(10, 13, 8, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-main {
  padding-top: 120px;
  min-height: 80vh;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .check-list li {
  font-size: 1.1rem;
}

.contact-direct {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-direct h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact-form-container {
  background-color: var(--card-bg);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-row .form-group {
  flex: 1;
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(196, 211, 0, 0.2);
}

.w-100 {
  width: 100%;
}

/* =========================================
   CHATBOT WIDGET
   ========================================= */
#chatbot-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chatbot-toggle {
  background-color: var(--primary);
  color: var(--bg-black);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.chatbot-toggle:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(196, 211, 0, 0.3);
}

#chatbot-window {
  width: 350px;
  height: 480px;
  background-color: #111;
  border: 1px solid var(--primary);
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chatbot-header {
  background-color: var(--primary);
  color: var(--bg-black);
  padding: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#chatbot-close {
  background: none;
  border: none;
  color: var(--bg-black);
  font-size: 1.5rem;
  cursor: pointer;
}

.chat-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-bubble {
  max-width: 85%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.chat-bubble.bot {
  background-color: #222;
  color: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-bubble.user {
  background-color: var(--primary);
  color: var(--bg-black);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-options {
  padding: 1rem;
  background-color: #1a1a1a;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chat-option-btn {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.6rem;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
  text-align: left;
}

.chat-option-btn:hover {
  background-color: var(--primary);
  color: var(--bg-black);
}

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

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  #chatbot-window {
    width: 300px;
    height: 400px;
  }

  #chatbot-widget {
    bottom: 20px;
    right: 20px;
  }
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(5px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2001;
}

.lightbox-close:hover {
  color: var(--primary);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  z-index: 2001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 10px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .lightbox-next {
    right: 10px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .lightbox-close {
    top: 15px;
    right: 20px;
  }
}