@charset "UTF-8";
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 3rem 0;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.btn {
  display: inline-block;
  padding: 0.5rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  border: none;
}
.btn-primary {
  background-color: #1d2a3b;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.btn-secondary {
  background-color: #fffff6;
  color: #ffffff;
}
.btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

/* ============================================
   NAVBAR BOOTSTRAP - BELLE ALLURE
   ============================================ */
/* NAVBAR PRINCIPALE */
.main-nav {
  background: #1d2a3b !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================================
   LOGO
   ============================================ */
.navbar-brand {
  padding: 0;
  margin: 0;
  margin-right: 3rem; /* Espace entre logo et menu */
}
.navbar-brand .logo-img {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
  display: block; /* Force l'affichage */
}
.navbar-brand .logo-img:hover {
  transform: scale(1.05);
}

/* S'assurer que le logo est visible sur desktop */
@media (min-width: 992px) {
  .navbar-brand {
    display: block !important;
    margin-right: 4rem;
  }
}
/* ============================================
   BOUTON BURGER
   ============================================ */
.navbar-toggler {
  border: 2px solid #f4c735;
  padding: 0.5rem;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(244, 199, 53, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4af37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 30px;
  height: 30px;
}

/* ============================================
   MENU DESKTOP
   ============================================ */
.navbar-nav {
  gap: 2.5rem; /* Plus d'espace entre les liens */
  align-items: center;
}

@media (min-width: 992px) {
  .navbar-nav {
    gap: 3rem; /* Encore plus d'espace sur grand écran */
  }
}
.nav-link {
  color: #fffff6 !important;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 500;
  padding: 0.5rem 1rem !important; /* Ajout padding horizontal */
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.nav-link:hover {
  color: #f4c735 !important;
  transform: translateY(-2px);
}
.nav-link.active {
  font-weight: 600;
}

/* ============================================
   BOUTON RÉSERVER
   ============================================ */
.btn-reservation {
  background-color: #f4c735 !important;
  color: #000000 !important;
  padding: 1rem 2rem !important;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-left: 2rem;
}
.btn-reservation:hover {
  background-color: #E2B31E !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 199, 53, 0.3);
  color: #000000 !important;
}
.btn-reservation.active {
  background-color: #E2B31E !important;
  color: #000000;
}

/* ============================================
   RESPONSIVE - TABLETTE & MOBILE
   ============================================ */
@media (max-width: 991px) {
  /* Menu collapse */
  .navbar-collapse {
    background: #1d2a3b;
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(244, 199, 53, 0.2);
  }
  /* Reset gap sur mobile */
  .navbar-nav {
    gap: 0;
  }
  /* Items du menu */
  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(244, 199, 53, 0.1);
    padding: 0.5rem 0;
  }
  .nav-item:last-child {
    border-bottom: none;
  }
  /* Liens */
  .nav-link {
    padding: 0.75rem 0 !important;
    font-size: 1.1rem;
    display: block;
  }
  .nav-link:hover {
    transform: translateX(5px);
  }
  /* Bouton réserver sur mobile */
  .btn-reservation {
    margin: 1rem 0 0 0 !important;
    display: block;
    text-align: center;
    width: 100%;
  }
  /* Logo plus petit */
  .navbar-brand .logo-img {
    height: 60px;
  }
}
/* ============================================
   PETITS MOBILES
   ============================================ */
@media (max-width: 480px) {
  .navbar-brand .logo-img {
    height: 55px;
  }
  .nav-link {
    font-size: 1rem !important;
    padding: 0.6rem 0 !important;
  }
  .navbar-collapse {
    padding: 1rem;
  }
}
/* ============================================
   GRANDS ÉCRANS - OPTIMISATION
   ============================================ */
@media (min-width: 1281px) {
  .nav-container {
    padding: 0 2rem;
  }
  .navbar-nav {
    gap: clamp(40px, 4vw, 70px); /* Plus d'espace sur grands écrans */
  }
  .nav-link {
    font-size: clamp(14px, 1vw, 16px);
  }
  .navbar-brand .logo-img {
    height: 80px; /* Logo plus grand sur desktop */
  }
}
.hero {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 6rem 1rem;
  text-align: center;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero > * {
  position: relative;
  z-index: 2;
}
.hero h1 {
  margin-bottom: 1rem;
  color: #fffff6;
  font-family: "Castoro Titling", serif;
  font-size: 36px;
}
.hero .hero-subtitle {
  font-size: 30px;
  font-family: "Bona Nova SC", serif;
  color: #fffff6;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.why-choose {
  background: #fffff6;
  padding: 6rem 1rem;
  text-align: center;
}
.why-choose h2 {
  font-size: 36px;
  font-family: "Castoro Titling", serif;
  color: #000000;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}

.avantages {
  padding: 60px 0 80px;
}

.avantages .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 0 40px;
}

.avantages .avantage-card {
  text-align: center;
  padding: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.avantages .avantage-card img {
  width: 125px;
  height: 125px;
  margin-bottom: 30px;
  filter: brightness(0) saturate(100%) invert(62%) sepia(85%) saturate(458%) hue-rotate(358deg) brightness(98%) contrast(95%);
}

.avantages .avantage-card h3 {
  font-family: "Bona Nova SC", serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.avantages .avantage-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  max-width: 280px;
  margin: 0 auto;
}

.avantages .avantage-card:hover {
  transform: translateY(-5px);
}

/* ============================================
   HR-OR RESPONSIVE FIX
   ============================================ */
.hr-or-content {
  background: #fffff6;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden;
}
.hr-or-content img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Tablette */
@media (max-width: 900px) {
  .avantages .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hr-or-content {
    padding: 30px 15px;
  }
  .hr-or-content img {
    max-width: 90%;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .hr-or-content {
    padding: 25px 15px;
  }
  .hr-or-content img {
    max-width: 85%;
  }
}
/* Petits mobiles */
@media (max-width: 480px) {
  .hr-or-content {
    padding: 20px 10px;
  }
  .hr-or-content img {
    max-width: 80%;
  }
}
.care-rituals {
  background: #fffff6;
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
}
.care-rituals h2 {
  font-size: 36px;
  font-family: "Castoro Titling", serif;
  color: #000000;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}
.care-rituals .rituals-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.care-rituals .ritual-card {
  width: 410px;
  background: #1d2a3b;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  color: #ffffff;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.care-rituals .ritual-card.ritual-card-star {
  padding-top: 20px;
}
.care-rituals .ritual-card:hover {
  border: 3px solid #f4c735;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
.care-rituals .ritual-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.1);
  border-radius: 10px;
  margin-bottom: 20px;
}
.care-rituals .ritual-card h4 {
  font-size: 1.4rem;
  font-family: "Bona Nova SC", serif;
  color: #ffffff;
  margin: 0 0 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  padding: 0;
}
.care-rituals .ritual-card .price {
  font-size: 1.2rem;
  font-family: "Playfair Display", serif;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 20px;
  padding: 0;
}
.care-rituals .ritual-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 30px;
  padding: 0;
  font-style: italic;
}
.care-rituals .ritual-card .btn-outline {
  display: inline-block;
  padding: 20px 70px;
  border: none;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 25px;
  transition: 0.3s ease;
  font-family: "Playfair Display", serif;
  font-size: 0.85rem;
  margin-bottom: 30px;
}
.care-rituals .ritual-card .btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}
.care-rituals .ritual-header {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  width: fit-content;
  padding: 10px 100px;
  border-radius: 25px;
  z-index: 2;
}
.care-rituals .ritual-header h3 {
  font-size: 1.1rem;
  font-family: "Castoro Titling", serif;
  color: #000000;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1.5px;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .care-rituals .rituals-container {
    flex-wrap: wrap;
    gap: 30px;
  }
  .care-rituals .ritual-card {
    width: calc(50% - 15px);
    min-width: 280px;
  }
}
@media (max-width: 700px) {
  .care-rituals .rituals-container {
    flex-direction: column;
    align-items: center;
  }
  .care-rituals .ritual-card {
    width: 100%;
    max-width: 350px;
  }
}

.clients-trust {
  background: #1d2a3b;
  padding: 6rem 1rem;
  text-align: center;
}
.clients-trust h2 {
  font-family: "Castoro Titling", serif;
  font-size: 36px;
  color: #f4c735;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}
.clients-grid .client-photo {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 1/1;
}
.clients-grid .client-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.clients-grid .client-photo:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.logo-instagram-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}
.logo-instagram-container .logo-blanc {
  justify-self: start;
}
.logo-instagram-container .logo-blanc img {
  height: 80px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.logo-instagram-container .logo-blanc img:hover {
  opacity: 1;
}
.logo-instagram-container .logo-spacer {
  width: 80px;
}
.logo-instagram-container .instagram-cta {
  display: flex;
  justify-content: center;
  transform: translateX(-40px);
}
.logo-instagram-container .instagram-cta .btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  background: #f4c735;
  color: #000000;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .btn-instagram {
    padding: 0.5rem 2rem !important;
    font-size: 0.9rem !important;
  }
}
@media (max-width: 768px) {
  .logo-instagram-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  .logo-blanc {
    display: flex;
    justify-content: center;
  }
}
.before-after {
  background: #fffff6;
  padding: 6rem 1rem;
  text-align: center;
}
.before-after h2 {
  font-family: "Castoro Titling", serif;
  font-size: 36px;
  margin-bottom: 3rem;
  letter-spacing: 2px;
  font-weight: 400;
  color: #000000;
}

/* Le wrapper du slider */
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 16/9;
}

/* Les deux images */
.ba-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

/* Image "après" avec clip-path contrôlé par le range input */
.ba-after {
  clip-path: inset(0 0 0 50%);
}

/* L'input range invisible mais fonctionnel */
.ba-slider input[type=range] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: ew-resize;
  opacity: 0;
  z-index: 10;
}

/* La ligne de séparation dorée */
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 6px;
  background: linear-gradient(180deg, #f4c735 0%, #f4d03f 100%);
  pointer-events: none;
  z-index: 5;
  transition: none !important;
}

/* Triangles haut et bas */
.ba-divider::before,
.ba-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
}

.ba-divider::before {
  top: -1px;
  border-width: 0 12px 20px 12px;
  border-color: transparent transparent;
}

.ba-divider::after {
  bottom: -1px;
  border-width: 20px 12px 0 12px;
  border-color: transparent transparent;
}

/* Le handle rond doré */
.ba-handle {
  position: absolute !important;
  top: 50% !important;
  left: 50%;
  width: 60px !important;
  height: 60px !important;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%) !important;
  border-radius: 50% !important;
  margin-left: -30px !important;
  margin-top: -30px !important;
  cursor: grab !important;
  z-index: 999 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
  transition: none !important;
}

.ba-handle:active {
  cursor: grabbing !important;
}

.ba-handle::before,
.ba-handle::after {
  content: "";
  position: absolute;
  border-style: solid;
}

.ba-handle::before {
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 8px 10px 8px 0;
  border-color: transparent #000 transparent transparent;
}

.ba-handle::after {
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #000;
}

/* Labels optionnels */
.ba-labels {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .ba-handle {
    width: 50px;
    height: 50px;
  }
  .ba-handle::before {
    left: 12px;
    border-width: 8px 10px 8px 0;
  }
  .ba-handle::after {
    right: 12px;
    border-width: 8px 0 8px 10px;
  }
  .ba-labels {
    padding: 15px 20px;
    font-size: 1rem;
  }
}
/* FAQ & ZONE D'INTERVENTION */
.faq-zone {
  background: #fffff6;
  padding: 6rem 1rem;
}
.faq-zone .container {
  max-width: 1400px;
  margin: 0 auto;
}
.faq-zone h2 {
  font-family: "Castoro Titling", serif;
  font-size: 36px;
  color: #000000;
  text-align: center;
  margin-bottom: 6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}

.faq-zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

/* Questions FAQ */
.faq-questions {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 0 2rem;
}

.faq-item h3 {
  font-family: "Bona Nova SC", serif;
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}
.faq-item p {
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
  margin: 0;
  padding-left: 1rem;
}

/* Carte avec cercle */
.zone-map {
  text-align: center;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  aspect-ratio: 4/3;
  border-radius: 15px;
  overflow: hidden;
}
.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.zone-circle {
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: rgba(231, 182, 67, 0.65);
  border: 3px solid #000000;
}

.map-caption {
  margin-top: 2rem;
  font-size: 16px;
  color: #000000;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-zone-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .faq-questions {
    padding: 0;
  }
  .map-container {
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .faq-zone h2 {
    font-size: 1.8rem;
  }
  .faq-item h3 {
    font-size: 1.2rem;
  }
  .map-container {
    max-width: 300px;
  }
}
/* SECTION À PROPOS / BREF */
.about-section {
  background: #fffff6;
  padding: 6rem 1rem;
  position: relative;
}
.about-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Layout principal - Superposition */
.about-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 600px;
}

/* Image à gauche */
.about-image {
  position: relative;
  width: 45%;
  z-index: 1;
}
.about-image .image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.about-image .image-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
}
.about-image .image-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%);
  transition: transform 0.5s ease;
}
.about-image .image-frame img:hover {
  transform: scale(1.02);
}

/* Texte qui déborde sur l'image */
.about-text {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 65%;
  background: #1d2a3b;
  padding: 7.5rem;
  padding-left: 9rem;
  border-radius: 15px;
  color: #fffff6;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.about-text h2 {
  font-family: "Castoro Titling", serif;
  font-size: 2.5rem;
  color: #f4c735;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
}
.about-text .about-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #fffff6;
  margin-bottom: 2rem;
  font-style: italic;
}
.about-text .about-signature {
  font-size: 1rem;
  color: #f4c735;
  font-weight: 600;
  margin: 0;
  text-align: right;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-content {
    flex-direction: column;
    min-height: auto;
  }
  .about-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .about-text {
    position: relative;
    transform: none;
    width: 100%;
    margin-top: -50px;
    padding: 3rem;
  }
}
@media (max-width: 768px) {
  .about-text {
    padding: 2rem;
    margin-top: -30px;
  }
  .about-text h2 {
    font-size: 2rem;
  }
  .about-text .about-description {
    font-size: 0.95rem;
  }
  .about-image {
    max-width: 400px;
  }
}
.blog-hero {
  position: relative;
  height: 400px;
  overflow: visible;
  margin-bottom: calc(3rem + 50px);
}
.blog-hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.blog-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
.blog-hero .hero-content {
  position: absolute;
  z-index: 2;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
}
.blog-hero .hero-content h1 {
  font-family: "Castoro Titling", serif;
  font-size: 36px;
  color: #f4c735;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 2rem 3rem;
  background: #1d2a3b;
  border-radius: 5px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}
.blog-grid .blog-card-featured {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
}
.blog-grid .blog-card-small {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
}

.blog-card .card-image {
  overflow: hidden;
}
.blog-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.blog-card .card-image:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.blog-card .card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-card .card-content .category {
  display: inline-block;
  background: #1d2a3b;
  color: #f4c735;
  font-family: "Playfair Display", serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  width: fit-content;
}
.blog-card .card-content .date {
  font-family: "Playfair Display", serif;
  font-size: 24px;
}
.blog-card .card-content h2 {
  font-family: "Bona Nova SC", serif;
  font-size: 22px;
  color: #1d2a3b;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.blog-card .card-content p {
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  color: #1d2a3b;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.blog-card .card-content .read-more {
  display: inline-block;
  background: #f4c735;
  color: #1d2a3b;
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 0;
  transition: background 0.3s ease;
  width: fit-content;
}
.blog-card .card-content .read-more:hover {
  background: #E2B31E;
}

.blog-card-featured .card-image {
  height: 100%;
  min-height: 400px;
}
.blog-card-featured .card-content h2 {
  font-size: 28px;
}
.blog-card-featured .card-content p {
  font-size: 18px;
}

.blog-card-small .card-image {
  height: 250px;
}
.blog-card-small .card-content {
  flex-grow: 1;
}
.blog-card-small .card-content h2 {
  font-size: 18px;
}
.blog-card-small .card-content p {
  font-size: 14px;
}

@media (max-width: 1024px) {
  .blog-hero {
    height: 300px;
  }
  .blog-hero .hero-content h1 {
    font-size: 36px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .blog-grid .blog-card-featured {
    grid-template-columns: 1fr;
  }
  .blog-card-featured .card-image {
    min-height: 300px;
  }
}
@media (max-width: 768px) {
  .blog-hero {
    height: 250px;
  }
  .blog-hero .hero-content h1 {
    font-size: 24px;
  }
  .blog-card .card-content {
    padding: 1rem;
  }
  .blog-card .card-content h2 {
    font-size: 18px;
  }
  .blog-card .card-content p {
    font-size: 14px;
  }
}
.reservation-hero {
  position: relative;
  height: 400px;
  overflow: visible;
  margin-bottom: calc(3rem + 50px);
}
.reservation-hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.reservation-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
.reservation-hero .hero-content {
  position: absolute;
  z-index: 2;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
}
.reservation-hero .hero-content h1 {
  font-family: "Castoro Titling", serif;
  font-size: 36px;
  color: #f4c735;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 2rem 3rem;
  background: #1d2a3b;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.reservation-intro {
  max-width: 1000px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
  text-align: center;
}
.reservation-intro h2 {
  font-family: "Bona Nova SC", serif;
  font-size: 36px;
  color: #1d2a3b;
  margin-bottom: 2rem;
}
.reservation-intro p {
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  color: #1d2a3b;
  line-height: 1.8;
}

.features-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
  max-width: 1400px;
  margin: 0 auto 6rem;
  padding: 0 1rem;
}
.features-grid .feature-row-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 6rem;
  width: 100%;
}
.features-grid .feature-column-left {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  flex: 0 0 auto;
  max-width: 300px;
}
.features-grid .feature-center {
  flex: 0 0 auto;
  position: relative;
  align-self: center;
}
.features-grid .feature-center .feature-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 400px;
  height: 550px;
}
.features-grid .feature-center .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}
.features-grid .feature-center .feature-image .badge {
  position: absolute;
  top: 7%;
  left: 70%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-family: "Castoro Titling", serif;
  font-size: 16px;
  padding: 1rem 3rem;
  border-radius: 5px;
  letter-spacing: 2px;
  white-space: nowrap;
}
.features-grid .feature-column-right {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  flex: 0 0 auto;
  max-width: 300px;
}
.features-grid .feature-row-bottom {
  display: flex;
  justify-content: center;
  gap: 15rem;
  width: 100%;
  max-width: 1100px;
}
.features-grid .feature-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
}
.features-grid .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}
.features-grid .feature-item .feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(77%) sepia(86%) saturate(426%) hue-rotate(358deg) brightness(98%) contrast(93%);
}
.features-grid .feature-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 12px;
  color: #1d2a3b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  font-weight: 600;
}
.features-grid .feature-item p {
  font-family: "League Spartan", sans-serif;
  font-size: 13px;
  color: #1d2a3b;
  line-height: 1.7;
}

.reservation-cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}
.reservation-cta h2 {
  font-family: "Bona Nova SC", serif;
  font-size: 30px;
  color: #1d2a3b;
  margin-bottom: 0.5rem;
}
.reservation-cta p {
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  color: #1d2a3b;
  margin-bottom: 2rem;
}

.hr-or-reservation {
  text-align: center;
  padding: 40px 20px;
  overflow: hidden;
}
.hr-or-reservation img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.reservation-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.form-step {
  margin-bottom: 6rem;
}
.form-step .step-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.form-step .step-header .step-number {
  font-family: "Castoro Titling", serif;
  font-size: 48px;
  color: #1d2a3b;
  line-height: 1;
}
.form-step .step-header h3 {
  font-family: "Bona Nova SC", serif;
  font-size: 24px;
  color: #1d2a3b;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.form-step .step-header p {
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  color: #1d2a3b;
}

.vehicle-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.vehicle-types .vehicle-card {
  background: #1d2a3b;
  padding: 3rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.vehicle-types .vehicle-card:hover {
  background: #2f4d77;
  transform: translateY(-5px);
}
.vehicle-types .vehicle-card input[type=radio] {
  display: none;
}
.vehicle-types .vehicle-card input[type=radio]:checked + .vehicle-icon {
  filter: brightness(0) saturate(100%) invert(77%) sepia(86%) saturate(426%) hue-rotate(358deg) brightness(98%) contrast(93%);
}
.vehicle-types .vehicle-card .vehicle-icon {
  width: 100px;
  height: 60px;
}
.vehicle-types .vehicle-card .vehicle-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.vehicle-types .vehicle-card span {
  font-family: "League Spartan", sans-serif;
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.services-grid .service-card {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-height: 400px;
}
.services-grid .service-card .service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.services-grid .service-card .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
.services-grid .service-card .service-info {
  position: absolute;
  top: 0.5rem;
  left: 2rem;
  width: 45%;
  background: rgba(29, 47, 68, 0.95);
  padding: 2rem;
  color: #ffffff;
  border-radius: 5px;
  z-index: 2;
}
.services-grid .service-card .service-info h4 {
  font-family: "Bona Nova SC", serif;
  font-size: 18px;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.services-grid .service-card .service-info .service-price {
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.services-grid .service-card .service-info .service-duration {
  font-family: "League Spartan", sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 0;
}
.services-grid .service-card .service-info .service-duration + .service-duration {
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.services-grid .service-card .service-info .service-description {
  font-family: "League Spartan", sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.services-grid .service-card .service-info p {
  font-family: "League Spartan", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.services-grid .service-card .service-info .btn-select {
  background: #f4c735;
  color: #1d2a3b;
  font-family: "League Spartan", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}
.services-grid .service-card .service-info .btn-select:hover {
  background: #E2B31E;
}
.services-grid .service-card .service-steps {
  position: absolute;
  top: 0.5rem;
  right: 2rem;
  width: 40%;
  height: 95%;
  background: rgba(244, 199, 53, 0.95);
  padding: 2rem;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 2;
}
.services-grid .service-card .service-steps .step-badge {
  font-family: "League Spartan", sans-serif;
  font-size: 14px;
  color: #1d2a3b;
  line-height: 1.6;
}
.services-grid .service-card .service-steps p {
  font-size: 14px;
}

.options-table {
  width: 100%;
  border-collapse: collapse;
}
.options-table thead {
  color: #1d2a3b;
}
.options-table thead th {
  font-family: "League Spartan", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 1rem;
  text-align: left;
}
.options-table thead th {
  border-bottom: 1px solid #000000;
}
.options-table tbody tr {
  border-bottom: 1px solid #000000;
}
.options-table tbody tr:hover {
  background: #f2f7fa;
}
.options-table tbody tr td {
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  color: #1d2a3b;
  padding: 1rem;
}
.options-table tbody tr td input[type=checkbox] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.calendar {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.calendar .calendar-header {
  background: #1d2a3b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.calendar .calendar-header h4 {
  font-family: "Castoro Titling", serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.calendar .calendar-header .calendar-nav {
  background: transparent;
  border: none;
  color: #f4c735;
  font-size: 24px;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}
.calendar .calendar-header .calendar-nav:hover {
  color: #E2B31E;
}
.calendar .calendar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.calendar .calendar-grid .calendar-day {
  border-right: 1px solid #f2f7fa;
}
.calendar .calendar-grid .calendar-day:last-child {
  border-right: none;
}
.calendar .calendar-grid .calendar-day .day-header {
  background: #f4c735;
  color: #1d2a3b;
  font-family: "League Spartan", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.calendar .calendar-grid .calendar-day .day-header span {
  font-size: 18px;
}
.calendar .calendar-grid .calendar-day .time-slots {
  background: #1d2a3b;
  padding: 1rem 0.5rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.calendar .calendar-grid .calendar-day .time-slots .time-slot {
  background: #f4c735;
  color: #1d2a3b;
  font-family: "League Spartan", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.calendar .calendar-grid .calendar-day .time-slots .time-slot:hover {
  background: #E2B31E;
  transform: scale(1.05);
}
.calendar .calendar-grid .calendar-day .time-slots .time-slot.selected {
  background: #24c05f;
  color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}
.contact-grid .summary-box {
  background: #1d2a3b;
  color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  height: fit-content;
}
.contact-grid .summary-box h4 {
  font-family: "Castoro Titling", serif;
  font-size: 18px;
  color: #f4c735;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}
.contact-grid .summary-box p {
  font-family: "League Spartan", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.contact-grid .summary-box p strong {
  display: block;
  margin-bottom: 0.5rem;
}
.contact-grid .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-grid .contact-form .form-note {
  font-family: "League Spartan", sans-serif;
  font-size: 14px;
  color: #1d2a3b;
  margin-bottom: -0.5rem;
}
.contact-grid .contact-form input,
.contact-grid .contact-form textarea {
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  color: #ffffff;
  background: #1d2a3b;
  border: none;
  border-radius: 5px;
  padding: 1rem;
  width: 100%;
}
.contact-grid .contact-form input::placeholder,
.contact-grid .contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-grid .contact-form input:focus,
.contact-grid .contact-form textarea:focus {
  outline: 2px solid #f4c735;
}
.contact-grid .contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-grid .contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-grid .contact-form .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "League Spartan", sans-serif;
  font-size: 14px;
  color: #1d2a3b;
}
.contact-grid .contact-form .checkbox-label input[type=checkbox] {
  width: auto;
  height: 20px;
  cursor: pointer;
}
.contact-grid .contact-form .contact-note {
  font-family: "League Spartan", sans-serif;
  font-size: 14px;
  color: #1d2a3b;
  text-align: center;
  line-height: 1.6;
}
.contact-grid .contact-form .btn-submit {
  background: #f4c735;
  color: #1d2a3b;
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 5px;
  padding: 1rem 3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.contact-grid .contact-form .btn-submit:hover {
  background: #E2B31E;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 199, 53, 0.3);
}

@media (max-width: 1024px) {
  .reservation-hero {
    height: 300px;
  }
  .reservation-hero .hero-content h1 {
    font-size: 28px;
    padding: 1rem 2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .features-grid .feature-item:nth-child(1),
  .features-grid .feature-item:nth-child(2),
  .features-grid .feature-item:nth-child(3),
  .features-grid .feature-item:nth-child(4),
  .features-grid .feature-item:nth-child(5),
  .features-grid .feature-item:nth-child(6) {
    grid-column: 1;
    grid-row: auto;
    text-align: center;
  }
  .features-grid .feature-item:nth-child(1) .feature-icon,
  .features-grid .feature-item:nth-child(2) .feature-icon,
  .features-grid .feature-item:nth-child(3) .feature-icon,
  .features-grid .feature-item:nth-child(4) .feature-icon,
  .features-grid .feature-item:nth-child(5) .feature-icon,
  .features-grid .feature-item:nth-child(6) .feature-icon {
    margin-left: auto;
    margin-right: auto;
  }
  .features-grid .feature-center {
    grid-column: 1;
    grid-row: auto;
    margin: 2rem 0;
  }
  .features-grid .feature-center .feature-image {
    min-height: 300px;
    width: 100%;
  }
  .vehicle-types {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .calendar .calendar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .reservation-hero {
    height: 250px;
  }
  .reservation-hero .hero-content h1 {
    font-size: 20px;
    padding: 1rem;
  }
  .features-grid .feature-center .feature-image {
    min-height: 250px;
  }
  .features-grid .feature-center .feature-image .badge {
    font-size: 16px;
    padding: 0.5rem 1rem;
  }
  .vehicle-types {
    grid-template-columns: 1fr;
  }
  .calendar .calendar-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    grid-template-columns: 1fr !important;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
.confirmation-page {
  background-color: #ffffff;
}

.confirmation-hero {
  position: relative;
  height: 500px;
  overflow: visible;
}
.confirmation-hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.confirmation-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.confirmation-hero .hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.confirmation-hero .hero-content {
  position: absolute;
  z-index: 2;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
}
.confirmation-hero .hero-content h1 {
  font-family: "Castoro Titling", serif;
  font-size: 36px;
  color: #f4c735;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 2rem 3rem;
  background: #1d2a3b;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.confirmation-message {
  text-align: center;
  padding: 80px 20px 60px;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.confirmation-message h2 {
  color: #000000;
  font-family: "Castoro Titling", serif;
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
}
.confirmation-message p {
  color: #000000;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 15px;
}
.confirmation-message .signature {
  color: #000000;
  font-size: 1.1rem;
  margin-top: 40px !important;
  font-weight: 500;
}

.cta-return-top {
  text-align: center;
  margin: 40px 0 80px;
  animation: fadeIn 1s ease-out 0.6s both;
}

.btn-return {
  display: inline-block;
  background-color: #f4c735;
  color: #000000;
  padding: 18px 60px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-family: "Playfair Display", serif;
}
.btn-return a {
  font-family: "Playfair Display", serif;
}
.btn-return:active {
  transform: translateY(-1px);
}

@media (max-width: 992px) {
  .confirmation-hero {
    height: 400px;
  }
  .confirmation-hero .confirmation-badge {
    padding: 35px 60px;
  }
  .confirmation-hero .confirmation-badge h1 {
    font-size: 2.8rem;
    letter-spacing: 4px;
  }
  .confirmation-message {
    padding: 60px 20px 40px;
  }
  .confirmation-message h2 {
    font-size: 1.7rem;
  }
}
@media (max-width: 768px) {
  .confirmation-hero {
    height: 350px;
  }
  .confirmation-hero .confirmation-badge {
    padding: 25px 40px;
  }
  .confirmation-hero .confirmation-badge h1 {
    font-size: 2.2rem;
    letter-spacing: 3px;
  }
  .confirmation-message {
    padding: 50px 20px 30px;
  }
  .confirmation-message h2 {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
  .confirmation-message p {
    font-size: 1rem;
  }
  .confirmation-message .signature {
    font-size: 1rem;
    margin-top: 30px !important;
  }
  .btn-return {
    padding: 15px 40px;
    font-size: 1rem;
    letter-spacing: 1.5px;
  }
  .cta-return-top {
    margin: 30px 0 60px;
  }
}
@media (max-width: 576px) {
  .confirmation-hero {
    height: 300px;
  }
  .confirmation-hero .confirmation-badge {
    padding: 20px 30px;
  }
  .confirmation-hero .confirmation-badge h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  .confirmation-message {
    padding: 40px 15px 25px;
  }
  .confirmation-message h2 {
    font-size: 1.2rem;
  }
  .confirmation-message p {
    font-size: 0.95rem;
  }
  .btn-return {
    padding: 12px 35px;
    font-size: 0.95rem;
  }
}
.site-footer {
  background-color: #1d2a3b;
  color: #f4c735;
  padding: 80px 0 40px;
  font-family: "League Spartan", sans-serif;
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

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

.footer-top h3,
.footer-social h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 16px;
  line-height: 1.55;
  max-width: 320px;
}

.footer-contact p {
  font-size: 16px;
  margin-bottom: 8px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

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

.footer-nav a {
  color: #f4c735;
  text-decoration: none;
  font-size: 17px;
  transition: 0.3s ease;
}

.footer-nav a:hover {
  opacity: 0.6;
}

.hr-or {
  background: #1d2a3b;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden;
}
.hr-or img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-social {
  text-align: center;
  margin-bottom: 40px;
}

.footer-social .icons {
  margin-top: 20px;
}

.footer-social a {
  font-size: 26px;
  margin: 0 12px;
  color: #f4c735;
  transition: 0.3s ease;
}

.footer-social a:hover {
  opacity: 0.6;
}

.footer-bottom {
  text-align: center;
  font-size: 15px;
  color: #f4c735;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-about p {
    margin: 0 auto;
  }
  .footer-logo img {
    margin: 0 auto;
  }
}
.admin-body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  background: #1d2a3b;
  color: #fffff6;
  font-family: "League Spartan", sans-serif;
}

/* ===========================
   SIDEBAR
=========================== */
.admin-sidebar {
  width: 250px;
  position: fixed;
  height: 100vh;
  background: #1d2a3b;
  border-right: 1px solid #f2f7fa;
  display: flex;
  flex-direction: column;
}

.admin-logo {
  padding: 2rem;
  border-bottom: 1px solid #f2f7fa;
}
.admin-logo img {
  max-width: 150px;
  width: 100%;
}

.admin-nav {
  flex: 1;
  padding: 1rem 0;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  color: #f2f7fa;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  transition: 0.3s;
}
.admin-nav-item:hover {
  background: rgba(244, 199, 53, 0.12);
  color: #f4c735;
}
.admin-nav-item.active {
  background: rgba(244, 199, 53, 0.25);
  color: #f4c735;
  border-left: 4px solid #f4c735;
}
.admin-nav-item .icon {
  font-size: 1.2rem;
}
.admin-nav-item .badge {
  margin-left: auto;
  background: #f4c735;
  color: #000000;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
}

.admin-sidebar-footer {
  padding: 2rem;
  border-top: 1px solid #f2f7fa;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn-return-site,
.btn-logout {
  text-align: center;
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: 0.3s;
  text-decoration: none;
}

.btn-return-site {
  color: #f4c735;
  background: rgba(244, 199, 53, 0.15);
}
.btn-return-site:hover {
  background: rgba(244, 199, 53, 0.3);
}

.btn-logout {
  color: #eb4642;
  background: rgba(235, 70, 66, 0.15);
}
.btn-logout:hover {
  background: rgba(235, 70, 66, 0.3);
}

/* ===========================
   MAIN
=========================== */
.admin-main {
  margin-left: 250px;
  width: calc(100% - 250px);
  padding: 3rem;
}

/* Header */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f2f7fa;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.admin-header h1 {
  font-family: "Castoro Titling", serif;
  font-size: 30px;
  letter-spacing: 2px;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  background: #f4c735;
  color: #1d2a3b;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn-primary:hover {
  background: #E2B31E;
}

.btn-secondary {
  background: transparent;
  color: #fffff6;
  border: 1px solid #f2f7fa;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  transition: 0.3s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===========================
   CALENDAR
=========================== */
.planning-calendar {
  background: #1d2a3b;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #f2f7fa;
}

.calendar-header {
  display: grid;
  grid-template-columns: 80px repeat(7, 1fr);
  background: rgb(20.5965909091, 29.8295454545, 41.9034090909);
}

.calendar-day-header {
  text-align: center;
  padding: 1rem;
  font-family: "Bona Nova SC", serif;
  font-size: 0.85rem;
  border-right: 1px solid #f2f7fa;
}

.calendar-body {
  display: grid;
  grid-template-columns: 80px 1fr;
  min-height: 720px;
}

.time-slot {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f2f7fa;
  font-size: 0.8rem;
  border-bottom: 1px solid #f2f7fa;
}

/* ===========================
   APPOINTMENTS
=========================== */
.appointment {
  position: absolute;
  background: #2f4d77;
  border: 2px solid #f4c735;
  border-radius: 6px;
  padding: 0.5rem;
  transition: 0.3s;
  cursor: pointer;
}
.appointment:hover {
  box-shadow: 0 6px 16px rgba(244, 199, 53, 0.4);
  transform: translateY(-2px);
}
.appointment.appointment-cancelled {
  border-color: #d7d7d7;
  background: rgba(242, 247, 250, 0.2);
}
.appointment.appointment-waiting {
  border-color: #E2B31E;
  background: rgba(244, 199, 53, 0.2);
}

.appointment-time {
  color: #f4c735;
  font-size: 0.7rem;
  font-weight: 700;
}

.appointment-client {
  font-weight: 600;
  font-size: 0.9rem;
}

.appointment-service,
.appointment-location {
  font-size: 0.75rem;
  color: #f2f7fa;
}

/* ===========================
   QUICK STATS
=========================== */
.quick-stats {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  background: #1d2a3b;
  border: 1px solid #f2f7fa;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: 0.3s;
}
.stat-card:hover {
  border-color: #f4c735;
  transform: translateY(-4px);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #f4c735;
}

.stat-label {
  font-size: 0.85rem;
  color: #f2f7fa;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
  .admin-sidebar {
    width: 80px;
  }
  .admin-sidebar .admin-nav-item span {
    display: none;
  }
  .admin-main {
    margin-left: 80px;
    width: calc(100% - 80px);
  }
  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body:not(.admin-body) {
  font-family: "League Spartan", sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
}

main {
  min-height: calc(100vh - 180px);
}

footer {
  background: #1d2a3b;
  color: #f4c735;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
}

/*# sourceMappingURL=app.css.map */
