/* Echo Intérieur - Main Stylesheet */

:root {
  /* Clair-Obscur Color Palette */
  --pure-light: #ffffff;
  --pure-dark: #0a0a0a;
  --charcoal-deep: #1a1a1a;
  --charcoal-medium: #2d2d2d;
  --charcoal-light: #404040;
  --pearl-white: #fafafa;
  --ivory: #f8f6f0;
  --warm-gold: #d4af37;
  --copper-accent: #b87333;
  --shadow-blue: #1e2a3a;
  --mist-gray: #e8e8e8;
  --zen-green: #2d5016;
  --primary-color: #d4af37;
  --accent-color:#797362;
  --warm-white: #fafafa;
  --silver-gold: #968e78;
  --bronze-gold: #8f7a66;
  --silver-gold-accent: #8b846e;
  --bronze-gold-accent: #86725e;

  
  /* Typography */
  --font-main: 'Inter', 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-zen: 'Noto Serif', serif;
  
  /* Shadows & Effects */
  --shadow-dramatic: 0 25px 50px rgba(0, 0, 0, 0.8);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-inner: inset 0 2px 8px rgba(0, 0, 0, 0.3);
  --glow-light: 0 0 30px rgba(255, 255, 255, 0.3);
  --glow-gold: 0 0 20px rgba(212, 175, 55, 0.4);
}

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

body {
  font-family: var(--font-main);
  color: var(--charcoal-deep);
  line-height: 1.7;
  background: linear-gradient(180deg, var(--pure-light) 0%, var(--pearl-white) 100%);
  overflow-x: hidden;
}

/* Typography - Clair-Obscur Style */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 200;
  text-shadow: var(--shadow-soft);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

p {
  margin-bottom: 1.8rem;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 300;
}

/* Layout */

/* Appointment Booking Styles */
.appointment-section {
  background: var(--pure-light);
  padding: 3rem;
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--mist-gray);
  position: relative;
}

.appointment-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--silver-gold), var(--bronze-gold));
}

.contact-method {
  background: var(--pure-light);
  padding: 3rem;
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--mist-gray);
  position: relative;
}

.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--silver-gold), var(--bronze-gold));
}

.appointment-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.slot-item {
  background: var(--light-bg);
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.slot-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slot-item.selected {
  border-color: var(--silver-gold);
  background: var(--silver-gold);
  color: white;
}

.slot-date {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal-deep);
}

.slot-item.selected .slot-date {
  color: white;
}

.slot-time {
  font-size: 0.9rem;
  opacity: 0.8;
}

.no-slots {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-style: italic;
}

.loading-slots {
  padding: 2rem;
}

.appointment-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 1rem;
  border-radius: 5px;
  margin: 1rem 0;
}

.appointment-error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 1rem;
  border-radius: 5px;
  margin: 1rem 0;
}

/* Modal Fullscreen Styles */
.modal {
  z-index: 1050;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  overflow-y: auto;
}

.modal.show {
  display: block !important;
}
.modal-content {
  background: white;
  width: 100%;
  height: 100%;
  position: relative;
  overflow-y: auto;
  padding-right: 5px; /* Add padding to prevent content from touching scrollbar */
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
  width: 10px;
}

.modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border-radius: 5px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}

.modal-header {
  background: var(--silver-gold);
  color: white;
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1051;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h5 {
  margin: 0;
  font-size: 1.5rem;
}

.modal-header .btn-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.modal-header .btn-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.modal-body {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.selected-slot {
  background: var(--light-bg);
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.selected-slot h6 {
  color: var(--charcoal-deep);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.selected-slot p {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.modal-dialog {
  margin: 0;
  max-width: none;
  width: 100%;
  height: 100%;
}

/* Form styles in fullscreen modal */
.form-group {
  margin-bottom: 1.5rem;
}

/* Specific styling for the project description textarea */
#appointmentMessage {
  margin-bottom: 2rem;
  min-height: 120px;
}

/* Add extra margin for the last form group in the modal */
.form-group:last-of-type {
  margin-bottom: 3rem;
}

/* Ensure the textarea is fully visible */
.modal-body .form-group:last-of-type textarea {
  margin-bottom: 4rem;
}

.form-label {
  font-weight: 600;
  color: var(--silver-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

/* Validation Error Styles */
.form-control.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-control.error:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

.field-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.field-error::before {
  content: "⚠";
  font-size: 1rem;
}

/* Success state for valid fields */
.form-control.valid {
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-control.valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.modal-footer {
  padding: 1.5rem 2rem;
  background: var(--light-bg);
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: sticky;
  bottom: 0;
  width: 100%;
}

.btn-primary {
  background: var(--accent-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background: var(--charcoal-light);
}

.btn-secondary {
  background: #6c757d;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background: #5a6268;
}

/* Responsive design for fullscreen modal */
@media (max-width: 768px) {
  .modal-header {
    padding: 1rem;
  }
  
  .modal-body {
    padding: 1rem;
    padding-bottom: 180px; /* Increased padding to prevent textarea from being hidden behind fixed footer */
  }
  
  .modal-footer {
    padding: 1rem;
    flex-direction: column-reverse;
    gap: 0.75rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--light-bg);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    width: calc(100% - 15px); /* Leave space for scrollbar */
  }
  
  .modal-footer button {
    width: 100%;
    margin: 0;
    padding: 0.7rem 0.8rem;
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
  }
  
  .modal-footer button i {
    margin-right: 0.5rem;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* Specific fixes for small mobile screens */
@media (max-width: 480px) {
  .modal-footer {
    padding: 0.7rem 0.8rem;
    gap: 0.5rem;
  }
  
  .modal-footer button {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
  
  .modal-body {
    padding-bottom: 160px; /* Maintain increased padding for smaller screens */
  }
}

/* Modal messages styles */
.modal-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-success i,
.modal-error i {
  font-size: 1.2rem;
}

/* Ensure body can always scroll */
body {
  overflow: auto !important;
}

/* Grid system for modal */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

@media (max-width: 992px) {
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }
  
  .col-lg-6:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .appointment-slots {
    grid-template-columns: 1fr;
  }
  
  .appointment-section,
  .contact-method {
    margin-top: 1rem;
    padding: 1.5rem;
  }
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
  flex: 1;
}

/* Header - Dramatic Contrast */
header {
  background-color: #242425;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  /*box-shadow: var(--shadow-dramatic);*/
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #777469;
}

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

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

.logo img {
  height: 100px;
  margin-right: 10px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--pure-light);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-shadow: var(--glow-gold);
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--pearl-white);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: all 0.4s ease;
  position: relative;
  padding: 0.5rem 0;
}

nav ul li a:hover {
  color: var(--silver-gold);
  text-shadow: var(--glow-gold);
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(90deg, transparent, var(--silver-gold), transparent);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

nav ul li a:hover::after {
  width: 100%;
  box-shadow: var(--silver-gold);
}

/* Hero Section - Dramatic Clair-Obscur */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgb(83 83 83 / 90%) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(255, 255, 255, 0.1) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--pure-light);
  max-width: 700px;
  padding-left: 2rem;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-family: var(--font-main);
  margin-bottom: 2rem;
  line-height: 1.1;
  font-weight: 200;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  background: linear-gradient(135deg, var(--pure-light) 0%, var(--silver-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--silver-gold) 0%, var(--bronze-gold) 100%);
  text-decoration: none;
  border-radius: 0;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-dramatic);
  background: linear-gradient(135deg, var(--silver-gold-accent) 0%, var(--bronze-gold-accent) 100%)
}

.btn:hover::before {
  left: 100%;
}

/* Services Section - Light Contrast */
.services {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--pure-light) 0%, var(--pearl-white) 50%, var(--ivory) 100%);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--silver-gold), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 2rem;
  color: var(--charcoal-deep);
  font-weight: 200;
}

.section-header h2::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze-gold), transparent);
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.section-header h2::after {
  content: '◆';
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--silver-gold);
  font-size: 0.8rem;
}

.service-card {
  background: var(--pure-light);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 40px;
  height: 100%;
  position: relative;
  border: 1px solid var(--mist-gray);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--silver-gold), var(--bronze-gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 2.5rem;
}

.service-content h3 {
  margin-bottom: 1.5rem;
  color: var(--charcoal-deep);
  font-weight: 300;
}

.service-content p {
  color: var(--charcoal-light);
  font-weight: 300;
  line-height: 1.7;
}

/* Projects Section - Dark Contrast */
.projects {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--charcoal-deep) 0%, var(--charcoal-medium) 50%, var(--shadow-blue) 100%);
  position: relative;
  color: var(--pure-light);
}

.projects::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.projects .section-header h2 {
  color: var(--pure-light);
}

.projects .section-header p {
  color: var(--pearl-white);
  opacity: 0.9;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 300px;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(212, 175, 55, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.project-item:hover .project-img {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.2);
}

.project-overlay h3 {
  color: var(--pure-light);
  margin-bottom: 0.5rem;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.project-overlay p {
  color: var(--pearl-white);
  margin-bottom: 0;
  font-weight: 400;
}

/* Mobile: Always show project overlay since there's no hover */
@media (max-width: 768px) {
  .project-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 35%, transparent 100%);
    backdrop-filter: blur(0px);
  }
  
  .project-overlay h3 {
    font-size: 1.2rem;
  }
  
  .project-overlay p {
    font-size: 0.9rem;
  }
}

/* Project Sections */
.project-section {
  margin-bottom: 80px;
}

.project-section:last-child {
  margin-bottom: 0;
}

.project-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--bronze-gold);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.project-section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--silver-gold), transparent);
}

/* Project Content Container - Image Sizing */
.content-container {
  max-width: 100%;
  overflow: hidden;
}

.content-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-container img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-dramatic);
}

.content-container p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--charcoal-medium);
}

.content-container h2,
.content-container h3 {
  margin: 2rem 0 1rem 0;
  color: var(--charcoal-deep);
}

.content-container ul,
.content-container ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.content-container li {
  margin-bottom: 0.5rem;
  color: var(--charcoal-medium);
}

/* Team Section - Light Contrast */
.team {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--pure-light) 50%, var(--pearl-white) 100%);
  position: relative;
}

.team::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--silver-gold), transparent);
}

.team-member {
  text-align: center;
  margin-bottom: 40px;
}

.team-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 2rem;
  border: 3px solid var(--silver-gold);
  box-shadow: var(--shadow-soft), var(--glow-gold);
  transition: all 0.4s ease;
  filter: grayscale(20%);
}

.team-member:hover .team-img {
  transform: scale(1.05);
  filter: grayscale(0%);
  box-shadow: var(--shadow-dramatic), var(--glow-gold);
}

.team-member h3 {
  margin-bottom: 0.5rem;
  color: var(--charcoal-deep);
  font-weight: 300;
}

.team-member p {
  color: var(--charcoal-light);
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-style: italic;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  color: var(--charcoal-medium);
  font-size: 1.3rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
}

.social-links a:hover {
  color: var(--silver-gold);
  text-shadow: var(--glow-gold);
  transform: translateY(-2px);
}

/* Founder Profile - Enhanced Layout */
.founder-profile {
  background: var(--pure-light);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: var(--shadow-dramatic);
  position: relative;
  overflow: hidden;
}

.founder-profile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(164, 154, 131, 0.05) 50%, transparent 100%);
  pointer-events: none;
}

.founder-image-container {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.founder-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--silver-gold);
  /*box-shadow: var(--shadow-dramatic);*/
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.founder-img:hover {
  transform: scale(1.05);
  border-color: var(--bronze-gold);
  box-shadow: var(--shadow-dramatic), 0 0 30px rgba(164, 154, 131, 0.4);
}

.founder-accent {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--silver-gold), var(--bronze-gold));
  border-radius: 50%;
  opacity: 0.8;
  z-index: 1;
}

.founder-content {
  padding-left: 40px;
}

.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--charcoal-deep);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--charcoal-deep) 0%, var(--silver-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.founder-title {
  font-size: 1.1rem;
  color: var(--bronze-gold);
  font-weight: 500;
  margin-bottom: 2rem;
  font-style: italic;
}

.founder-description {
  margin-bottom: 2rem;
}

.founder-description p {
  color: var(--charcoal-medium);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.founder-description strong {
  color: var(--charcoal-deep);
  font-weight: 600;
}

.founder-mission {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--charcoal-deep);
  border-left: 3px solid var(--silver-gold);
  padding-left: 20px;
  margin-top: 1.5rem;
}

.founder-mission em {
  color: var(--bronze-gold);
  font-weight: 500;
}

.founder-content .social-links {
  justify-content: flex-start;
  margin-top: 2rem;
}

.founder-content .social-links a {
  color: var(--silver-gold);
  background: rgba(164, 154, 131, 0.1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.founder-content .social-links a:hover {
  background: var(--bronze-gold);
  color: var(--pure-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(143, 122, 102, 0.3);
}

/* Responsive adjustments for founder profile */
@media (max-width: 768px) {
  .founder-profile {
    padding: 40px 20px;
  }
  
  .founder-content {
    padding-left: 0;
    text-align: center;
    margin-top: 30px;
  }
  
  .founder-img {
    width: 220px;
    height: 220px;
  }
  
  .founder-content .social-links {
    justify-content: center;
  }
}

/* Partners Section - Light Carousel */
.partners {
  padding: 120px 0;
  background: var(--pure-light);
  position: relative;
  overflow: hidden;
}

.partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--silver-gold), transparent);
}

.partners .section-header h2 {
  color: var(--charcoal-deep);
}

.partners .section-header p {
  color: var(--charcoal-medium);
}

.partners-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.partners-carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 30px;
  padding: 0 20px;
}

.partner-slide {
  min-width: calc(25% - 22.5px);
  flex-shrink: 0;
}

.partner-card {
  background: var(--pure-light);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(164, 154, 131, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(164, 154, 131, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--silver-gold);
}

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

.partner-logo {
  width: 120px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pure-light);
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(164, 154, 131, 0.2);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.partner-card:hover .partner-logo img {
  filter: grayscale(0%);
}

.partner-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal-deep);
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--charcoal-deep) 0%, var(--silver-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partner-info p {
  color: var(--bronze-gold);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  font-style: italic;
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 -20px;
  pointer-events: none;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--pure-light);
  color: var(--silver-gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--silver-gold);
  color: var(--pure-light);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(164, 154, 131, 0.3);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.prev-btn {
  left: -25px;
}

.next-btn {
  right: -25px;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(164, 154, 131, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: var(--silver-gold);
  transform: scale(1.2);
}

/* Responsive Design for Services Grid */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Responsive Design for Partners */
@media (max-width: 1200px) {
  .partner-slide {
    min-width: calc(33.333% - 20px);
  }
}

@media (max-width: 768px) {
  .partners {
    padding: 80px 0;
  }
  
  .partner-slide {
    min-width: calc(50% - 15px);
  }
  
  .partners-carousel {
    gap: 20px;
    padding: 0 15px;
  }
  
  .partner-card {
    padding: 30px 20px;
  }
  
  .carousel-controls {
    padding: 0 -15px;
  }
  
  .prev-btn {
    left: -15px;
  }
  
  .next-btn {
    right: -15px;
  }
}

@media (max-width: 480px) {
  .partner-slide {
    min-width: calc(100% - 10px);
  }
  
  .partners-carousel {
    gap: 15px;
    padding: 0 10px;
  }
}

/* Pricing Section - Dark Contrast */
.pricing {
  padding: 120px 0;
  /*background: linear-gradient(180deg, var(--charcoal-deep) 0%, var(--charcoal-medium) 100%);*/
  position: relative;
  color: var(--pure-light);
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}





/* Process Steps */
.pricing-process {
  margin-bottom: 60px;
  text-align: center;
}

.pricing-process h3 {
  margin-bottom: 40px;
  color: var(--charcoal-deep);
  text-align: center;
  font-weight: 200;
  position: relative;
}

.pricing-process h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--silver-gold), transparent);
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 25px;
  background: linear-gradient(135deg, var(--pure-light) 0%, var(--pearl-white) 100%);
  padding: 2rem;
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-width: 350px;
  border: 1px solid var(--mist-gray);
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--silver-gold), var(--bronze-gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dramatic);
}

.process-step:hover::before {
  transform: scaleX(1);
}

.process-step:hover .step-number {
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--bronze-gold), var(--silver-gold));
}

.step-number {
  background: linear-gradient(135deg, var(--silver-gold), var(--bronze-gold));
  color: var(--charcoal-deep);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft), var(--glow-gold);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-number::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--silver-gold), var(--bronze-gold));
  z-index: -1;
  opacity: 0.3;
}

.step-content h4 {
  margin-bottom: 8px;
  color: var(--silver-gold);
  font-size: 1.1rem;
}

.step-content p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.pricing-card {
  background: linear-gradient(135deg, var(--pure-light) 0%, var(--pearl-white) 100%);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-dramatic);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border: 1px solid var(--silver-gold);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--silver-gold), var(--bronze-gold), var(--silver-gold));
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-dramatic), var(--glow-gold);
}

.pricing-header {
  background: linear-gradient(135deg, var(--charcoal-deep) 0%, var(--shadow-blue) 100%);
  color: var(--pure-light);
  padding: 2.5rem;
  text-align: center;
  position: relative;
}

.pricing-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver-gold), transparent);
}

.pricing-header h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.pricing-subtitle {
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.pricing-tiers {
  padding: 30px;
}

.pricing-explanation {
  padding: 40px 30px;
  text-align: center;
}

.pricing-explanation p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--charcoal-medium);
  margin-bottom: 25px;
  font-weight: 400;
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(164, 154, 131, 0.08);
  border-radius: 12px;
  border-left: 4px solid var(--silver-gold);
}

.pricing-note i {
  color: var(--silver-gold);
  font-size: 1.1rem;
}

.pricing-note span {
  color: var(--charcoal-deep);
  font-size: 0.95rem;
  font-weight: 500;
  font-style: italic;
}

.pricing-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.3s ease;
}

.pricing-tier:last-child {
  border-bottom: none;
}

.pricing-tier:hover {
  background-color: #f8f9fa;
  border-radius: 10px;
  margin: 0 -10px;
  padding: 20px 10px;
}

.tier-surface {
  font-weight: 600;
  color: var(--silver-gold);
  font-size: 1rem;
}

.tier-price {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--silver-gold);
  text-shadow: var(--glow-gold);
}

.tier-price span {
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: normal;
}

.tier-type {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

/* Additional Services */
.additional-services {
  margin-bottom: 60px;
}

.additional-services h3 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--silver-gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.additional-services .service-card {
  background: linear-gradient(135deg, var(--pure-light) 0%, var(--ivory) 100%);
  border-radius: 0;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid var(--mist-gray);
  position: relative;
}

.additional-services .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--silver-gold), var(--bronze-gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.additional-services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dramatic);
}

.additional-services .service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h4 {
  margin-bottom: 15px;
  color: var(--silver-gold);
}

.service-price {
  font-size: 2rem;
  font-weight: 600;
  color: var(--silver-gold);
  margin-bottom: 1.5rem;
  text-shadow: var(--glow-gold);
}

.service-price span {
  font-size: 1rem;
  opacity: 0.8;
}

.service-pricing-mini {
  margin-bottom: 15px;
  text-align: left;
}

.mini-tier {
  padding: 12px 0;
  border-bottom: 1px solid var(--mist-gray);
  font-size: 0.95rem;
  color: var(--charcoal-deep);
  font-weight: 400;
}

.mini-tier:last-child {
  border-bottom: none;
}

.mini-tier strong {
  color: var(--silver-gold);
  font-weight: 600;
}

.service-card p {
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Price Calculator */
.pricing-calculator-section {
  display: flex;
  justify-content: center;
}

.pricing-calculator {
  background: linear-gradient(135deg, var(--pure-light) 0%, var(--pearl-white) 100%);
  border-radius: 0;
  padding: 3rem;
  box-shadow: var(--shadow-dramatic);
  max-width: 600px;
  width: 100%;
  text-align: center;
  border: 2px solid var(--silver-gold);
  position: relative;
}

.pricing-calculator::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--silver-gold), var(--bronze-gold), var(--silver-gold));
  z-index: -1;
}

.pricing-calculator h3 {
  margin-bottom: 10px;
  color: var(--silver-gold);
}

.pricing-calculator p {
  margin-bottom: 30px;
  color: #666;
}

.calculator-form {
  text-align: left;
}

.btn-calculator {
  background: linear-gradient(135deg, var(--silver-gold) 0%, var(--bronze-gold) 100%);
  border: 2px solid var(--silver-gold);
  padding: 1rem 2rem;
  border-radius: 0;
  color: var(--charcoal-deep);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.btn-calculator::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-calculator:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-dramatic);
  background: linear-gradient(135deg, var(--bronze-gold) 0%, var(--silver-gold) 100%);
}

.btn-calculator:hover::before {
  left: 100%;
}

.btn-calculator:focus {
  outline: 3px solid var(--silver-gold);
  outline-offset: 3px;
}

.calculator-result {
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #e8f5e8, #d4edda);
  border-radius: 10px;
  border-left: 4px solid #28a745;
  font-weight: 600;
  color: #155724;
  display: none;
}

.calculator-result.show {
  display: block;
}

/* Legacy table styles for compatibility */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.pricing-table th, .pricing-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.pricing-table th {
  background-color: var(--silver-gold);
  color: white;
}

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

.pricing-table tr:hover td {
  background-color: #f5f5f5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .process-step {
    width: 100%;
    max-width: 350px;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }
  
  .step-content {
    text-align: center;
    flex: 1;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-calculator {
    margin: 0 20px;
    padding: 30px 20px;
  }
}

/* Contact Section - Light Contrast */
.contact {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--pure-light) 0%, var(--ivory) 50%, var(--pearl-white) 100%);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--silver-gold), transparent);
}

.contact .row {
  align-items: flex-start;
}

.contact .col-lg-6 {
  display: flex;
  flex-direction: column;
}

.contact .contact-method,
.contact .appointment-section {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact .contact-method h3,
.contact .appointment-section h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--charcoal-deep);
  display: flex;
  align-items: center;
  min-height: 2.5rem;
}

.contact .contact-method h3 i,
.contact .appointment-section h3 i {
  margin-right: 0.75rem;
  color: var(--silver-gold);
  width: 24px;
  text-align: center;
}

.contact .contact-form {
  flex: 1;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 1rem;
}

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

/* Footer - Ultimate Dark Contrast */
footer {
  background: linear-gradient(180deg, var(--charcoal-deep) 0%, var(--pure-dark) 100%);
  color: var(--pearl-white);
  padding: 80px 0 40px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--silver-gold), var(--bronze-gold), var(--silver-gold));
}

footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-column h3 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--silver-gold), var(--bronze-gold));
  bottom: 0;
  left: 0;
  box-shadow: var(--glow-gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--pearl-white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--silver-gold);
  text-shadow: var(--glow-gold);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--charcoal-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--mist-gray);
  font-weight: 300;
}

.legal-links {
  font-size: 0.9rem;
}

.legal-links a {
  color: var(--mist-gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: var(--bronze-gold);
  text-shadow: var(--silver-gold);
}

/* Blog Section */
.blog {
  padding: 100px 0;
  background: var(--pure-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--pure-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--mist-gray);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dramatic);
  border-color: var(--silver-gold);
}

.blog-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 30px;
}

.blog-date, .post-date {
  color: var(--charcoal-medium);
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.blog-content h3, .post-title {
  margin-bottom: 15px;
  color: var(--charcoal-deep);
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

.blog-content h3 a, .post-title a {
  color: var(--charcoal-deep);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-content h3 a:hover, .post-title a:hover {
  color: var(--silver-gold);
}

.blog-content p, .post-excerpt {
  margin-bottom: 20px;
  color: var(--charcoal-medium);
  line-height: 1.6;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--charcoal-medium);
}

.post-meta i {
  color: var(--silver-gold);
}

/* Blog Article Page */
.blog-main {
  flex: 2;
  /*margin-right: 40px;*/
}

.blog-sidebar {
  flex: 1;
  background: var(--ivory);
  padding: 30px;
  border-radius: 8px;
  height: fit-content;
  box-shadow: var(--shadow-soft);
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--charcoal-deep);
  margin-bottom: 20px;
  line-height: 1.2;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--mist-gray);
  font-size: 0.9rem;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--charcoal-medium);
}

.article-meta i {
  color: var(--silver-gold);
}

.article-body {
  color: var(--charcoal-medium);
  line-height: 1.8;
  font-size: 1.1rem;
}

.article-body h3 {
  color: var(--charcoal-deep);
  font-family: 'Playfair Display', serif;
  margin: 30px 0 20px 0;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--mist-gray);
}

/* Sidebar Widgets */
.sidebar-widget {
  margin-bottom: 40px;
}

.sidebar-widget:last-child {
  margin-bottom: 0;
}

.widget-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--charcoal-deep);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--silver-gold), var(--bronze-gold));
}

.recent-posts {
  list-style: none;
  padding: 0;
}

.recent-posts li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(164, 154, 131, 0.2);
}

.recent-posts li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.recent-posts a {
  color: var(--charcoal-deep);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.recent-posts a:hover {
  color: var(--silver-gold);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--charcoal-medium);
}

.contact-info i {
  color: var(--silver-gold);
  width: 16px;
}

/* Enhanced Responsive Design for Clair-Obscur */
@media (max-width: 1200px) {
  .container {
    padding: 0 25px;
  }
  
  .hero-content {
    padding-left: 1rem;
  }
}

@media (max-width: 992px) {
  .col {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }
  
  .services, .projects, .team, .pricing, .contact {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 60px;
  }

  .project-header {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  .col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .header-content {
    flex-direction: column;
    text-align: center;
    padding: 15px 0;
  }
  
  nav ul {
    margin-top: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  nav ul li {
    margin: 5px 10px;
  }
  
  .hero {
    background-attachment: scroll;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .project-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .content-container img {
    max-width: 100%;
  }
  
  .service-content, .contact-method, .appointment-section {
    padding: 2rem;
  }
  
  .contact .contact-method,
  .contact .appointment-section {
    margin-bottom: 2rem;
    height: auto;
  }
  
  .contact .appointment-section {
    margin-top: 0;
  }
  
  .contact .contact-method h3,
  .contact .appointment-section h3 {
    min-height: auto;
  }
  
  .team-img {
    width: 180px;
    height: 180px;
  }
  
  .services, .projects, .team, .pricing, .contact {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .pricing-calculator {
    padding: 2rem;
    margin: 0 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  
  .btn {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }
  
  .service-content, .contact-method, .appointment-section {
    padding: 1.5rem;
  }
  
  .pricing-card {
    margin-bottom: 20px;
  }
  
  .team-img {
    width: 150px;
    height: 150px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
}

/* Feng Shui & Clair-Obscur Animations */
@keyframes fadeInLight {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: brightness(0.5);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: brightness(1);
  }
}

@keyframes fadeInDark {
  from {
    opacity: 0;
    transform: translateY(-30px);
    filter: contrast(0.5);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: contrast(1);
  }
}

@keyframes zenGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
  }
}

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

.animate {
  animation: fadeInLight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ===================================
   Zones d'Intervention Section
   =================================== */
.zones-intervention {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--pure-light) 0%, var(--pearl-white) 50%, var(--ivory) 100%);
  position: relative;
  color: var(--charcoal-deep);
}

.zones-intervention::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver-gold), transparent);
}

.zones-intervention .section-header h2 {
  color: var(--charcoal-deep);
  text-shadow: 0 2px 20px rgba(212, 175, 55, 0.2);
}

.zones-intervention .section-header p {
  color: var(--charcoal-medium);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.zones-content {
  max-width: 1400px;
  margin: 0 auto;
}

.zones-intro {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.zones-intro .lead-text {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: var(--charcoal-medium);
  max-width: 900px;
  margin: 0 auto;
  font-weight: 300;
}

.zones-intro .lead-text strong {
  color: var(--silver-gold);
  font-weight: 500;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.zone-card {
  background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
  border: 1px solid var(--silver-gold);
  border-radius: 12px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px var(--bronze-gold);
}

.zone-card:hover {
  transform: translateY(-8px);
  border-color: var(--silver-gold);
  box-shadow: 0 20px 60px var(--bronze-gold), 0 4px 20px var(--silver-gold);
  background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
}

.zone-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--silver-gold) 0%, var(--bronze-gold) 100%);
  border-radius: 50%;
  box-shadow: 0 10px 30px var(--silver-gold);
}

.zone-icon i {
  font-size: 2rem;
  color: var(--charcoal-deep);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.zone-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  color: var(--silver-gold);
  margin-bottom: 20px;
  text-align: center;
}

.zone-card p {
  color: var(--charcoal-medium);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1rem;
}

.zone-services {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zone-services li {
  padding: 10px 0;
  color: var(--charcoal-medium);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.zone-services li:last-child {
  border-bottom: none;
}

.zone-services li i {
  color: var(--silver-gold);
  font-size: 0.85rem;
}

.zones-extension {
  /*background: linear-gradient(135deg, var(--silver-gold) 0%, var(--bronze-gold) 100%);*/
  border: 1px solid var(--silver-gold);
  border-radius: 16px;
  padding: 50px 40px;
  margin-bottom: 50px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.zones-extension h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  color: var(--silver-gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.zones-extension h3 i {
  font-size: 1.5rem;
}

.zones-extension p {
  color: var(--charcoal-medium);
  line-height: 1.8;
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 30px;
}

.extension-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.region-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 30px;
  color: var(--charcoal-medium);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.region-tag:hover {
  background: linear-gradient(135deg, var(--silver-gold) 0%, var(--copper-warm) 100%);
  border-color: var(--silver-gold);
  transform: translateY(-2px);
  color: var(--charcoal-deep);
  box-shadow: 0 4px 12px var(--silver-gold);
}

.region-tag i {
  color: var(--silver-gold);
  font-size: 0.85rem;
}

.zones-cta {
  text-align: center;
  padding: 50px 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.zones-cta h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--silver-gold);
  margin-bottom: 15px;
}

.zones-cta p {
  color: var(--charcoal-medium);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.zones-cta .btn-primary {
  background: linear-gradient(135deg, var(--silver-gold) 0%, var(--copper-warm) 100%);
  color: var(--charcoal-deep);
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.zones-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Responsive Design for Zones d'Intervention */
@media (max-width: 992px) {
  .zones-intervention {
    padding: 80px 0;
  }
  
  .zones-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .zones-extension {
    padding: 40px 30px;
  }
  
  .extension-regions {
    gap: 10px;
  }
  
  .region-tag {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .zones-intervention {
    padding: 60px 0;
  }
  
  .zones-intro {
    margin-bottom: 40px;
  }
  
  .zone-card {
    padding: 30px 20px;
  }
  
  .zones-extension {
    padding: 30px 20px;
  }
  
  .zones-cta {
    padding: 40px 20px;
  }
}

/* Feng Shui Elements */
.feng-shui-element {
  position: relative;
}

.feng-shui-element::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 2px;
  background: var(--silver-gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: zenGlow 3s ease-in-out infinite;
}

.balance-element {
  animation: floatBalance 4s ease-in-out infinite;
}

/* Enhanced Chiaroscuro Effects */
.chiaroscuro {
  position: relative;
  overflow: hidden;
}

.chiaroscuro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.chiaroscuro-content {
  position: relative;
  z-index: 2;
}

/* Light-Dark Transition Effects */
.light-to-dark-transition {
  background: linear-gradient(180deg, 
    var(--pure-light) 0%, 
    var(--pearl-white) 25%, 
    var(--charcoal-light) 75%, 
    var(--charcoal-deep) 100%);
  min-height: 200px;
  position: relative;
}

.dark-to-light-transition {
  background: linear-gradient(180deg, 
    var(--charcoal-deep) 0%, 
    var(--charcoal-light) 25%, 
    var(--pearl-white) 75%, 
    var(--pure-light) 100%);
  min-height: 200px;
  position: relative;
}

/* Enhanced Bloom & Zen Effects */
.bloom {
  position: relative;
  overflow: hidden;
}

.bloom::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.bloom:hover::after {
  opacity: 1;
}

/* Zen Garden Elements */
.zen-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--silver-gold) 20%, 
    var(--bronze-gold) 50%, 
    var(--silver-gold) 80%, 
    transparent 100%);
  margin: 3rem 0;
  position: relative;
}

.zen-separator::before {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--pure-light);
  color: var(--silver-gold);
  padding: 0.5rem;
  font-size: 0.8rem;
}

.zen-circle {
  width: 60px;
  height: 60px;
  border: 2px solid var(--silver-gold);
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  background: transparent;
}

.zen-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--silver-gold);
  border-radius: 30px 0 0 30px;
  transform: translateY(-50%);
}

.zen-circle::after {
  content: '';
  position: absolute;
  top: 25%;
  right: 25%;
  width: 8px;
  height: 8px;
  background: var(--pure-light);
  border-radius: 50%;
}

/* Yin-Yang inspired section dividers */
.section-divider {
  height: 100px;
  background: linear-gradient(45deg, 
    var(--charcoal-deep) 0%, 
    var(--charcoal-deep) 49%, 
    var(--pure-light) 51%, 
    var(--pure-light) 100%);
  position: relative;
  overflow: hidden;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--silver-gold);
  transform: translate(-50%, -50%);
  box-shadow: var(--glow-gold);
}

/* Clair-Obscur Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: black;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--silver-gold), var(--bronze-gold));
  border-radius: 6px;
  /*border: 2px solid var(--pearl-white);*/
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--bronze-gold), var(--silver-gold));
  box-shadow: var(--glow-gold);
}

/* Selection styling */
::selection {
  background: var(--silver-gold);
  color: var(--charcoal-deep);
}

::-moz-selection {
  background: var(--silver-gold);
  color: var(--charcoal-deep);
}

/* Focus states for accessibility */
*:focus {
  outline: 2px solid var(--silver-gold);
  outline-offset: 2px;
}

/* Smooth scrolling with offset for fixed header */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0px;
}

/* Section scroll offset for fixed navbar */
section {
  scroll-margin-top: 100px;
}


/* Other Projects Section */
.other-projects {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--mist-gray);
}

.other-projects h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--charcoal-deep);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.other-projects h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--silver-gold), transparent);
}

/* Reuse the same grid and item styles from index.php */
.other-projects .project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.other-projects .project-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 300px;
}

.other-projects .project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.other-projects .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg, 
    rgba(45, 45, 45, 0.8) 0%, 
    rgba(45, 45, 45, 0.6) 50%, 
    rgba(45, 45, 45, 0.9) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(10px);
}

.other-projects .project-item:hover .project-overlay {
  opacity: 1;
}

.other-projects .project-item:hover .project-img {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.2);
}

.other-projects .project-overlay h3 {
  color: var(--pure-light);
  margin-bottom: 0.5rem;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.other-projects .project-overlay p {
  color: var(--pearl-white);
  margin-bottom: 0;
  font-weight: 400;
}

/* Responsive adjustments for other projects */
@media (max-width: 768px) {
  /* Mobile: Always show project overlay since there's no hover */
  .other-projects .project-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    backdrop-filter: blur(5px);
  }
  
  .other-projects .project-overlay h3 {
    font-size: 1.2rem;
  }
  
  .other-projects .project-overlay p {
    font-size: 0.9rem;
  }
  
  .other-projects .project-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .other-projects {
    margin-top: 60px;
    padding-top: 40px;
  }
}

/* Share Links Styling */
.project-share, .article-share {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.project-share span, .article-share span {
  color: var(--charcoal-medium);
  font-weight: 500;
  font-size: 0.9rem;
}

.share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(164, 154, 131, 0.1);
  color: var(--silver-gold);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.share-link:hover {
  background: var(--silver-gold);
  color: var(--pure-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(164, 154, 131, 0.3);
  border-color: var(--bronze-gold);
}

/* Prefers reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Contact Form Messages */
.contact-form-message {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  animation: slideInDown 0.5s ease-out;
}

.contact-success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border: 1px solid #c3e6cb;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.contact-form-error {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  border: 1px solid #f5c6cb;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.contact-error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 5px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.contact-error-message::before {
  content: "⚠";
  margin-right: 5px;
}

.contact-error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* Animation for messages */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form loading state */
.contact-form button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  background: var(--mist-gray) !important;
}

.contact-form button[disabled]:hover {
  background: var(--mist-gray) !important;
  transform: none !important;
}

/* WhatsApp CTA - Clair-Obscur Design */
.whatsapp-cta-container {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-cta-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--silver-gold) 50%, 
    transparent 100%);
  position: relative;
}

.whatsapp-divider::after {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--silver-gold);
  font-size: 0.5rem;
  background: var(--ivory);
  padding: 0 0.5rem;
}

.whatsapp-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem;
  background: linear-gradient(135deg, 
    var(--pure-light) 0%, 
    var(--ivory) 50%, 
    var(--pure-light) 100%);
  border-radius: 20px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid var(--mist-gray);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgb(168 159 146 / 34%), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-cta:hover::before {
  left: 100%;
}

.whatsapp-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 8px 25px rgba(37, 211, 102, 0.3),
    0 0 0 8px rgba(37, 211, 102, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-cta:hover .whatsapp-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 12px 35px rgba(37, 211, 102, 0.4),
    0 0 0 12px rgba(37, 211, 102, 0.15);
}

.whatsapp-icon-wrapper i {
  font-size: 2.5rem;
  color: var(--pure-light);
  animation: whatsappIconBounce 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 
      0 8px 25px rgba(37, 211, 102, 0.3),
      0 0 0 8px rgba(37, 211, 102, 0.1);
  }
  50% {
    box-shadow: 
      0 8px 25px rgba(37, 211, 102, 0.4),
      0 0 0 12px rgba(37, 211, 102, 0.15);
  }
}

@keyframes whatsappIconBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

.whatsapp-content h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal-deep);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.whatsapp-content p {
  font-size: 1rem;
  color: var(--charcoal-light);
  margin-bottom: 0;
  font-weight: 300;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--pure-light);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.1rem;
  box-shadow: 
    0 8px 20px rgba(37, 211, 102, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.whatsapp-btn:hover::before {
  width: 300px;
  height: 300px;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 30px rgba(37, 211, 102, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: var(--pure-light);
}

.whatsapp-btn:active {
  transform: translateY(-1px);
  box-shadow: 
    0 6px 15px rgba(37, 211, 102, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.whatsapp-btn i {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
}

/* Responsive WhatsApp CTA */
@media (max-width: 768px) {
  .whatsapp-cta-container {
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
  }
  
  .whatsapp-divider {
    width: 100%;
    height: 1px;
  }
  
  .whatsapp-divider::after {
    left: 50%;
  }
  
  .whatsapp-cta {
    padding: 2rem 1.5rem;
    width: 100%;
  }
  
  .whatsapp-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .whatsapp-icon-wrapper i {
    font-size: 2rem;
  }
  
  .whatsapp-content h4 {
    font-size: 1.3rem;
  }
  
  .whatsapp-content p {
    font-size: 0.95rem;
  }
  
  .whatsapp-btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    width: 100%;
  }
}

/* Client Type Radio Buttons */
.client-type-radio {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.client-type-radio .radio-option {
  flex: 1;
}

.client-type-radio .radio-option input[type="radio"] {
  display: none;
}

.client-type-radio .radio-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1rem;
  background: var(--pure-light);
  border: 2px solid var(--mist-gray);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  gap: 0.5rem;
}

.client-type-radio .radio-option label i {
  font-size: 1.8rem;
  color: var(--charcoal-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-type-radio .radio-option label span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal-medium);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-type-radio .radio-option input[type="radio"]:checked + label {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--pearl-white) 100%);
  border-color: var(--silver-gold);
  box-shadow: 0 4px 15px rgba(143, 122, 102, 0.2);
}

.client-type-radio .radio-option input[type="radio"]:checked + label i {
  color: var(--silver-gold);
  transform: scale(1.1);
}

.client-type-radio .radio-option input[type="radio"]:checked + label span {
  color: var(--charcoal-deep);
  font-weight: 600;
}

.client-type-radio .radio-option label:hover {
  border-color: var(--bronze-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
  .client-type-radio {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .client-type-radio .radio-option label {
    flex-direction: row;
    justify-content: flex-start;
    padding: 1rem;
    gap: 1rem;
  }
  
  .client-type-radio .radio-option label i {
    font-size: 1.5rem;
  }
}

/* Google Reviews Section - Light Background */
.reviews {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--pure-light) 0%, var(--ivory) 50%, var(--pearl-white) 100%);
  position: relative;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver-gold), transparent);
}

.reviews-summary {
  text-align: center;
  margin-bottom: 4rem;
}

.rating-overview {
  display: inline-block;
  padding: 2rem 3rem;
  background: linear-gradient(135deg, var(--pure-light) 0%, var(--ivory) 100%);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--mist-gray);
}

.rating-score .score {
  font-size: 4rem;
  font-weight: 200;
  font-family: var(--font-display);
  color: var(--charcoal-deep);
  display: block;
  line-height: 1;
}

.rating-score .stars {
  margin: 1rem 0;
  font-size: 1.5rem;
  color: #fbbf24;
}

.rating-score .stars i {
  margin: 0 0.2rem;
}

.rating-count {
  font-size: 1rem;
  color: var(--charcoal-light);
  margin: 0.5rem 0 0 0;
}

/* Reviews Carousel */
.reviews-carousel-container {
  position: relative;
  margin: 0 auto 3rem;
  max-width: 1200px;
}

.reviews-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 2rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc(33.333% - 1.5rem);
  min-width: 320px;
  background: var(--pure-light);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--mist-gray);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--silver-gold);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.reviewer-info {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex: 1;
}

.reviewer-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--mist-gray);
}

.reviewer-photo-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--silver-gold), var(--bronze-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-light);
  font-size: 1.5rem;
}

.reviewer-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal-deep);
  margin: 0;
  font-family: var(--font-main);
}

.review-time {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  margin: 0.25rem 0 0 0;
}

.review-rating {
  color: #fbbf24;
  font-size: 1rem;
  white-space: nowrap;
}

.review-body {
  flex: 1;
}

.review-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal-medium);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 1rem;
  border-top: 1px solid var(--mist-gray);
}

.google-logo {
  height: 20px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.review-card:hover .google-logo {
  opacity: 1;
}

/* Carousel Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--pure-light);
  border: 2px solid var(--silver-gold);
  color: var(--silver-gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: linear-gradient(135deg, var(--silver-gold), var(--bronze-gold));
  color: var(--pure-light);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(143, 122, 102, 0.3);
}

.carousel-btn.prev-btn {
  left: -25px;
}

.carousel-btn.next-btn {
  right: -25px;
}

/* Reviews CTA */
.reviews-cta {
  text-align: center;
}

.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--pure-light) 0%, var(--ivory) 100%);
  color: var(--charcoal-deep);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.1rem;
  border: 2px solid var(--silver-gold);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-review:hover {
  background: linear-gradient(135deg, var(--silver-gold), var(--bronze-gold));
  color: var(--pure-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(143, 122, 102, 0.3);
}

.btn-review i {
  font-size: 1.3rem;
}

.reviews-placeholder {
  text-align: center;
  padding: 3rem;
  color: var(--charcoal-light);
}

/* Responsive Reviews */
@media (max-width: 992px) {
  .review-card {
    flex: 0 0 calc(50% - 1rem);
    min-width: 280px;
  }
  
  .carousel-btn.prev-btn {
    left: 10px;
  }
  
  .carousel-btn.next-btn {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .reviews {
    padding: 80px 0;
  }
  
  .review-card {
    flex: 0 0 100%;
    min-width: 260px;
  }
  
  .rating-overview {
    padding: 1.5rem 2rem;
  }
  
  .rating-score .score {
    font-size: 3rem;
  }
  
  .reviews-carousel {
    gap: 1rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
