:root{
  /* Paleta del logo */
  --bg:#181818;
  --fg:#ffffff;
  --muted:#000000;
  --brand:#ffffff;
  --accent:#F5EBDD;

  /* Superficies y efectos */
  --card:#181818;
  --ok:#16a34a;
  --warn:#f59e0b;
  --err:#ef4444;

  --shadow:0 8px 28px rgba(17,24,39,0.12);
  --shadow-strong:0 14px 40px rgba(17,24,39,0.18);
  --border:1px solid rgba(17,24,39,0.08);

  /* Barra de navegación / footer */
  --nav-bg: #f6f1f1df;
  --nav-border: 1px solid rgba(255,255,255,0.08);
  --footer-height: 72px;
}

/* Reset y tipografía base */
*{box-sizing:border-box}
html,body{margin:0;
  padding:0;
  background:var(--bg);
  color:var(--fg);
  font-family:'Inter';
  font-weight:400;
  height:100%;
   max-width: 100vw;
    overflow-x: hidden;
  }
body{display:flex;flex-direction:column;min-height:100vh;}
body.bg-grain{background:var(--bg);position:relative}
body.bg-grain::before{
  content:"";position:fixed;inset:0;pointer-events:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity:1.045;mix-blend-mode:multiply;
  z-index: -999;
}

/* Layout */
.container{padding:24px;flex:1 0 auto;display:flex;flex-direction:column;padding-bottom:calc(var(--footer-height) + 24px);}

/* NAV */
.nav-toggle{display:none;}
.nav{display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 18px;
  background:var(--nav-bg);
  color:#fff;
  box-shadow:var(--shadow-strong);
  border:var(--nav-border);
  backdrop-filter:saturate(140%) blur(6px);
  -webkit-backdrop-filter:saturate(140%) blur(6px);
  margin-bottom:24px;
  position:sticky;
  top:0;
  min-width:80vw;
  z-index:100;}
.brand{font-size:26px;font-weight:900;letter-spacing:1px;color:#000000;padding-left:12px;}
.nav a{margin-left:18px;font-size:16px;font-weight:600;color:#252323;padding:8px 16px;border-radius:12px;transition:opacity .3s ease;text-decoration:none;position:relative;z-index:1}
.nav a:hover{ opacity:1}
.nav a::after{content:'';position:absolute;bottom:0;left:0;width:100%;height:2px;background:linear-gradient(90deg,var(--brand),#6d6d6d,transparent);background-size:300% 100%;opacity:0;transition:opacity .5s}
.nav a:hover::after{opacity:0}
@keyframes shimmer111{0%{background-position:200% 0}100%{background-position:-200% 0}}

/* Footer */
footer{position:static;margin:0;width:100vw;color:var(--muted);font-size:12px;text-align:center;padding:12px 0;background:transparent}
.footer-container{position:static;bottom:0;display:flex;justify-content:center;align-items:center;height:var(--footer-height);padding:0 18px;background:var(--nav-bg);color:#fff;box-shadow:var(--shadow-strong);border:var(--nav-border);width:100vw;z-index:10;pointer-events:auto}
.footer-container footer{color:#000000;font-size:12px;text-align:center;}

/* GRIDS */
.grid{
  display:grid;
  gap:16px;
  width:100vw;
  margin-inline:auto;
  justify-items:space-between;
  grid-template-columns:1fr}
.grid-index{
  display:grid;
  gap:16px;
  width:100%;
  margin-inline:auto;
  justify-items:stretch;
  grid-template-columns:1fr 1fr;
  }
.grid-index-top{display:grid;
  gap:24px;
  width:100%;
  margin-inline:auto;
  justify-items:center;
  grid-template-columns:1fr 1fr;
  align-items:center;
  margin-bottom:24px}

/* Card específica para el top del index */
.card-index-top {
  width: 100%;
}
.card-index-top2 button{
    max-width: 70%;
    margin-top: 2em;;
  }
.card-index-top .wrapper {
  margin-left: 0;
  width: 100%;
}

.card-index-top2 {
  z-index: 10;
  width: 100%;
  text-align: left;
  justify-content: right;
  margin-left: 20em;
}
/* CARDS */
.card{width:100%;
  background:transparent;
   border-radius:20px;
   padding:28px 24px;
   box-shadow:var(--shadow);
   margin:0;
   transition:opacity .3s ease;
   position:relative;
   overflow:hidden;
   text-align:left;}

.card:hover{ opacity:1}
/* Wrapper*/
.wrapper{
  width: 100%;
  margin-left: 5%;
}

/* Card sizes */
.card-50{width:50vw;margin-inline:auto;}
.card-60{width:60vw;margin-inline:auto;margin-top:1em}
.card-10{width:20vw;margin-inline:auto;margin-top:1em}

/* Banner image */
.banner-image{background-position:center;background-size:cover;height:280px;width:80%;border-radius:14px;border:1px solid rgba(0,0,0,0.06);margin-bottom:14px}

/* Buttons (global and variants) */
.button-wrapper{margin-top:12px;display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.card button{margin-top:1em;width: 70%; display: block; font-size:25px;font-weight:600;letter-spacing:.5px;padding:12px 18px;border-radius:4px;border:none;background:linear-gradient(to right, #908D8D 0%, #F6F1F1 52%, #908D8D 100%);color:#0C0C0C;transition:opacity .3s ease; text-decoration: none;}
.card button:hover{ filter: brightness(1.1); }
.card button:active{transform:translateY(0)}
.card button.secondary{width: 20%; background:linear-gradient(to right, #908D8D 0%, #F6F1F1 52%, #908D8D 100%);color:#0C0C0C;border:1px solid rgba(17,24,39,0.12);box-shadow:0 2px 10px rgba(17,24,39,0.08);text-decoration:none}

/* Botón reservar en tablas */
.card button.btn-reservar {
  background: var(--fg);
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'Inter';
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity .3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  width: auto;
  margin: auto;
}
 a{
  text-decoration: none;
  color: inherit;

}

.btn-reservar.secondary {
  background: #6b7280;
  color: var(--accent);
   ;
  text-decoration: none;
}

.btn-reservar.secondary:disabled {
  cursor: not-allowed;
  transform: none;
}

/* Generic buttons outside cards */
button{padding:10px 14px;border-radius:12px;border:1px solid var(--accent);background:linear-gradient(to right, #d5d4d4 0%, #F6F1F1 52%, #d5d4d4 100%);color:#0C0C0C;cursor:pointer;transition:opacity .3s ease;text-decoration:none; font-weight: 550; font-size: x-large;}
.card button.secondary{background:linear-gradient(to right, #908D8D 0%, #F6F1F1 52%, #908D8D 100%);color:#0C0C0C;border:1px solid var(--accent);text-decoration:none; padding: 8px 8px; font-size: 19px;}

/* WhatsApp button (variant) */

/* Delete button */
.btn.delete{background:#ef4444;color:#fff;border:none;padding:6px 10px;border-radius:8px;font-size:12px;cursor:pointer;transition:transform .12s ease,box-shadow .12s ease,opacity .12s ease}
.btn.delete:active{transform:translateY(0)}

/* Confirm button */
.btn.confirm{background:#1c551c;color:#ffffff;border:none;padding:6px 10px;border-radius:8px;font-size:12px;cursor:pointer;transition:transform .12s ease,box-shadow .12s ease,opacity .12s ease}
.btn.confirm:active{transform:translateY(0)}

/* Confirmed button */
.badge.confirmed{background:#8d7d25;color:#ffffff}
.badge.confirmed:active{transform:translateY(0)}

/* Forms and inputs */
label{display:flex; font-family: 'Inter'; margin-bottom: 0.7em;font-size: 1em;}
input,select,textarea{width:70%;padding:10px;border-radius:10px;border:1.5px solid #e5e7eb;background:white;margin-bottom:10px}
input[type="time"]{width:auto;min-width:140px}

/* Tables */
.table{width:100%;border-collapse:collapse}
.table th,.table td{padding:12px;border-bottom:1px solid #e5e7eb;text-align:left;font-size:14px}
.table th:nth-child(4), .table td:nth-child(4){width:1%;white-space:nowrap}
/* Utilities */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-family: 'Inter';
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing:  0;
}

.badge-available {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.badge-full {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.kpi{display:flex;gap:16px;flex-wrap:wrap;margin:24px 0; z-index: 10;}
.kpi .item{flex:1 1 200px;border:1px solid rgba(255,255,255,0.2);border-radius:20px;padding:24px 20px;text-align:center;transition:opacity .3s ease, transform .3s ease;box-shadow:0 4px 12px rgba(0,0,0,0.1);}
.kpi .item h3{font-family:'Inter';font-weight:700;font-size:14px;margin:0 0 12px 0;color:var(--fg);text-transform:uppercase;letter-spacing:1px;}
.kpi .item div{font-family:'Inter';font-weight:900;font-size:32px!important;color:var(--fg);margin:0;}

/* Admin dashboard buttons */
.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.admin-card {

  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.1);
  transition: opacity .3s ease, transform .3s ease;
  z-index: 10;
  
}


.admin-card h1 {
  font-family: 'Inter';
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 20px 0;
  color: var(--fg);
  letter-spacing: 1px;
}

.admin-card button {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  background: var(--fg);
  color: #000;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: opacity .3s ease, transform .3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  letter-spacing:  0;
  text-transform: uppercase;
  margin: 8px 0;
  
}

.admin-card button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.admin-card.logout {
  background:  #6e1212;
  z-index: 10;
}

.admin-card.logout button {
  font-weight: 800;
}

/* Admin prices styles */
.admin-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.price-category-card {
  z-index: 10;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.1);
  transition: opacity .3s ease, transform .3s ease;
}

.price-category-card:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

.price-category-header {
  text-align: center;
  margin-bottom: 24px;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  padding-bottom: 16px;
}

.price-category-header h2 {
  font-family: 'Inter';
  font-weight: 800;
  font-size: 20px;
  margin: 0 0 8px 0;
  color: var(--fg);
  letter-spacing:  0;
}

.price-category-header p {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 13px;
  margin: 0;
  color: var(--accent);
  opacity: 0.9;
}

.price-inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-input-group label {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 14px;
  color: var(--fg);
  margin: 0;
  text-transform: uppercase;
  letter-spacing:  0;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.currency {
  position: absolute;
  left: 12px;
  font-family: 'Inter';
  font-weight: 700;
  font-size: 16px;
  color: #4b5563;
  z-index: 1;
  pointer-events: none;
}

.price-input {
  width: 100%;
  padding: 12px 16px 12px 32px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  background: rgba(255,255,255,0.95);
  font-family: 'Inter';
  font-weight: 600;
  font-size: 16px;
  color: #1f2937;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.price-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

.save-section {
  text-align: center;
  margin: 40px 0 20px 0;
}

.save-prices-btn {
  background: linear-gradient(135deg, #0d5126 0%, #0e4d25 50%, #0d5126 100%);
  z-index: 10;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 16px;
  font-family: 'Inter';
  font-weight: 800;
  font-size: 16px;
  letter-spacing:  0;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .3s ease, transform .3s ease;
}

.save-prices-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.flash{padding:10px;border-radius:10px;margin:8px 0}
.flash.success{background:#ecfdf5;color:#065f46}
.flash.error{background:#fef2f2;color:#991b1b}

/* Confirmation receipt styles */
.grid-confirm {
  display: block;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid rgba(144, 141, 141, 0.3);
  border-radius: 16px;
  padding: 24px;
  margin: 20px auto;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.grid-confirm::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, #908D8D 0%, #F6F1F1 52%, #908D8D 100%);
}

.detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(144, 141, 141, 0.3);
  color: #f8f9fa;
  font-family: 'Inter';
}

.detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.detail strong {
  font-weight: 600;
  color: #333333;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing:  0;
  flex: 1;
}

.detail span {
  font-weight: 500;
  color: #333333;
  text-align: right;
  flex: 1;
}

/* Receipt header in confirm page */
.receipt-header {
  text-align: center;
  padding: 16px 0;
  border-bottom: 2px solid rgba(144, 141, 141, 0.3);
  margin-bottom: 20px;
}

.receipt-header h1 {
  font-family: 'Inter';
  font-weight: 800;
  font-size: 28px;
  color: #ffffff;
  margin: 0 0 8px 0;
  letter-spacing: 1px;
}

.receipt-header p {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 16px;
  color: #f3f4f6;
  margin: 0;
  text-transform: uppercase;
  letter-spacing:  0;
}

/* Total styling */
.receipt-total {
  text-align: center;
  padding: 20px 0 16px 0;
  border-top: 2px solid rgba(144, 141, 141, 0.3);
  margin-top: 20px;
}

.receipt-total h1 {
  font-family: 'Inter';
  font-weight: 900;
  font-size: 32px;
  color: #ffffff;
  margin: 0;
  letter-spacing: 1px;
}

/* Receipt responsive styles */
@media (max-width: 768px) {
  .grid-confirm {
    max-width: 100%;
    margin: 15px auto;
    padding: 20px 16px;
    border-radius: 12px;
  }
  
  .receipt-header h1 {
    font-size: 24px;
    line-height: 1.2;
  }
  
  .receipt-header p {
    font-size: 14px;
  }
  
  .detail {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
    gap: 4px;
  }
  
  .detail strong {
    font-size: 13px;
    width: 100%;
    text-align: left;
  }
  
  .detail span {
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    text-align: left;
    padding-left: 8px;
  }
  
  .receipt-total h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .grid-confirm {
    margin: 10px auto;
    padding: 16px 12px;
    border-radius: 10px;
  }
  
  .receipt-header {
    padding: 12px 0;
    margin-bottom: 16px;
  }
  
  .receipt-header h1 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  
  .receipt-header p {
    font-size: 13px;
  }
  
  .detail {
    padding: 8px 0;
  }
  
  .detail strong {
    font-size: 12px;
  }
  
  .detail span {
    font-size: 13px;
    padding-left: 6px;
  }
  
  .receipt-total {
    padding: 16px 0 12px 0;
    margin-top: 16px;
  }
  
  .receipt-total h1 {
    font-size: 24px;
  }
}

/* Shared slots layout */
.shared-slots-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 100%;
  margin: 0;
  padding: 0 40px;
}

.slots-table-section {
  margin-left: 0px;
  width: 50vw;
}

.card-slots {
  background: transparent;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  margin: 0;
}

.card-slots h3 {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--fg);
  text-align: center;
  line-height: 1.3;
}

/* Other services section */
.other-services-section {
  padding: 20px;
  margin-right: 40px;
}

.other-services-section h2 {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--fg);
  text-align: center;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: opacity .3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 24px;
}


.service-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.service-card h3 {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 4px 0;
  color: var(--fg);
  line-height: 1.2;
}

.service-card p {
  font-family: 'Inter';
  font-size: 12px;
  margin: 0;
  color: var(--accent);
  line-height: 1.2;
}

/* Responsive para shared slots */
@media (max-width: 1024px) {
  .shared-slots-container {
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 0 30px;
  }
  
  .slots-table-section {
    margin-left: 30px;
  }
  
  .other-services-section {
    margin-right: 30px;
  }
}

@media (max-width: 820px) {
  .shared-slots-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .slots-table-section {
    margin-left: 0;
  }
  
  .other-services-section {
    padding: 15px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .shared-slots-container {
    padding: 0 10px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 12px;
    gap: 10px;
  }
  
  .service-icon {
    font-size: 20px;
    width: 35px;
    height: 35px;
  }
  
  .card-slots {
    padding: 20px 16px;
  }
  
  .card-slots h3 {
    font-size: 20px;
  }
}

/* Typography overrides */
h2{font-family: 'Inter';font-weight: 700; font-size: 60px; margin-bottom: .5em; letter-spacing: 5px;}

/* Filtros admin */
.filters-container {
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.filters-form {
  display: flex;
  gap: 20px;
  align-items: end;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 360px;
}

.filter-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}

.filter-group select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  font-size: 14px;
  cursor: pointer;
  transition: opacity .3s ease;
}


.filter-group select:focus {
  color: var(--accent);
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(194, 155, 64, 0.2);
}
.filter-group select option {
  background: var(--card);
  color: var(--accent);
}
.btn-reset {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--accent);
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: opacity .3s ease;
}


/* Carousel minimalista - 4 slides visibles */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin: 40px 0 70px 0;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  backdrop-filter: blur(10px);
  padding: 0 60px;
  box-sizing: border-box;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.carousel-slide {
  position: relative;
  width: 25%;
  height: 100%;
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  margin: 0 10px;
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(5px);
  z-index: 99;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 20%, rgba(6, 5, 5, 0.85) 48%, rgba(11, 11, 11, 1) 71%, #0B0B0B 100%);
  padding: 15px;
  z-index: 2;
}

.slide-content h3 {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 8px 0;
  color: var(--fg);
  letter-spacing:  0;
}

.slide-content p {
  font-family: 'Inter';
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.slide-btn {
  display: inline-block;
  padding: 8px 16px;
  background: var(--brand);
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
  transition: opacity .3s ease;
  align-self: center;
  min-width: 80px;
}

/* Indicadores (dots) - Ocultos */
.carousel-dots {
  display: none;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: opacity .3s ease;
}

.dot.active {
  background: var(--brand);
  transform: scale(1.2);
}



/* Flechas de navegación */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: opacity .3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

/* Responsive para carousel */
@media (max-width: 1024px) {
  .carousel-container {
    width: 100%;
    max-width: 100vw;
    margin: 30px 0 60px 0;
    padding: 0 50px;
    box-sizing: border-box;
  }
  
  .carousel-wrapper {
    height: 45vh;
  }
  
  .carousel-slide {
    margin: 0 5px;
  }
}

@media (max-width: 820px) {
  .carousel-container {
    margin: 20px 0 50px 0;
    width: 100%;
    max-width: 100vw;
    padding: 0 40px;
    box-sizing: border-box;
  }
  
  .carousel-wrapper {
    height: 40vh;
  }
  
  .carousel-slide {
    width: 50%;
    flex: 0 0 50%;
    margin: 0 5px;
  }
}
  
  .slide-content {
    padding: 15px;
  }
  
  .slide-content h3 {
    font-size: 20px;
    letter-spacing:  0;
  }
  
  .slide-content p {
    font-size: 12px;
    margin: 0 0 12px 0;
  }
  
  .carousel-arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  
  .carousel-prev {
    left: 10px;
  }
  
  .carousel-next {
    right: 10px;
  }
  
  .carousel-dots {
    bottom: -25px;
  }

@media (max-width: 768px) {
  .carousel-container {
    margin: 15px 0 45px 0;
    padding: 0 35px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }
  
  .carousel-wrapper {
    height: 35vh;
  }
  
  .carousel-slide {
    width: 100%;
    flex: 0 0 100%;
    margin: 0;
  }
  
  .slide-image {
    height: 70%;
  }
  
  .slide-content {
    height: 30%;
    padding: 15px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 20%, rgba(6, 5, 5, 0.85) 48%, rgba(11, 11, 11, 1) 71%, #0B0B0B 100%);
  }
  
  .slide-content h3 {
    font-size: 14px;
    margin: 0 0 4px 0;
  }
  
  .slide-content p {
    font-size: 11px;
    margin: 0 0 10px 0;
  }
  
  .slide-btn {
    padding: 8px 14px;
    font-size: 12px;
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    margin: 10px 0 40px 0;
    width: 100%;
    max-width: 100vw;
    padding: 0 35px;
    box-sizing: border-box;
  }
  
  .carousel-wrapper {
    height: 40vh;
  }
  
  .slide-content {
    padding: 15px;
  }
  
  .slide-content h3 {
    font-size: 16px;
    margin: 0 0 4px 0;
  }
  
  .slide-content p {
    font-size: 10px;
    margin: 0 0 8px 0;
  }
  
  .slide-btn {
    padding: 6px 12px;
    font-size: 11px;
    min-width: 80px;
  }
  
  .carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  
  .carousel-prev {
    left: 5px;
  }
  
  .carousel-next {
    right: 5px;
  }
}
  
  .dot {
    width: 6px;
    height: 6px;
  }
  
  .carousel-dots {
    gap: 6px;
    bottom: -20px;
  }

@media (max-width: 360px) {
  .carousel-wrapper {
    height: 250px;
  }
  
  .slide-content {
    padding: 8px;
  }
  
  .slide-content h3 {
    font-size: 14px;
  }
  
  .slide-content p {
    font-size: 9px;
  }
  
  .slide-btn {
    padding: 5px 10px;
    font-size: 10px;
    min-width: 70px;
  }
}

/* Responsive breakpoints (media queries, ordenados de mayor a menor) */
@media (max-width: 1024px) {
  h2 {
    font-size: 50px;
    letter-spacing: 3px;
  }
  
  .grid-index-top {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .banner-image {
    height: 240px;
    width: 90%;
  }
}

@media (max-width: 820px){
  .brand{display:none}
  .nav{justify-content:center;padding:10px 8px;position:relative}
  .nav-toggle{display:flex;align-items:center}
  .nav-links{position:absolute;top:calc(100% + 8px);left:50%;transform:translateX(-50%);width:calc(100% - 40px);max-width:360px;background:var(--card);border-radius:14px;box-shadow:var(--shadow-strong);border:solid 10px var(--border);flex-direction:column;align-items:center;padding:12px 16px;gap:10px;text-align:center;overflow:hidden;max-height:0;opacity:0;pointer-events:none;transition:max-height .32s cubic-bezier(.2,.9,.2,1), opacity .22s;z-index:15}
  .nav-links a{display:block;width:100%;padding:10px 8px;border-radius:10px;color:var(--accent);background:transparent;font-weight:700;border-bottom:1px solid rgb(226,226,226);margin:auto;transition:opacity .3s ease}
  body.menu-open .nav-links{max-height:520px;opacity:1;pointer-events:auto}
  body.menu-open .nav-toggle .bar:nth-child(1){transform:translateY(6px) rotate(45deg)}
  body.menu-open .nav-toggle .bar:nth-child(2){opacity:0}
  body.menu-open .nav-toggle .bar:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

  /* Typography responsive */
  h2 {
    font-size: 40px;
    letter-spacing: 2px;
    margin-bottom: 0.3em;
  }
  
  /* Grid responsive */
  .grid-index-top {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .banner-image {
    height: 200px;
    width: 95%;
  }
  
  .wrapper {
    margin-left: 0;
    width: 100%;
  }

  /* Table mobile adjustments */
  .table col.col-estado{display:none}
  .table th:nth-child(3), .table td:nth-child(3){display:none}
  .table th, .table td{padding:8px 6px;font-size:10px}
  .table th:nth-child(1), .table td:nth-child(1){width:0}
  .table th:nth-child(2), .table td:nth-child(2){white-space:nowrap}

  /* Compact card sizes */
  .card-10{width:70vw;margin:0 auto}
  .card-50{width:70vw;margin:1em auto}
  .card-60{width:70vw;margin:0 auto}

  /* Buttons smaller */
  .btn-reservar{padding:6px 10px;font-size:11px;margin-left:0;min-width:70px}
  .container{padding:12px 8px}
  .card button.secondary{padding:6px;font-size:8px}
  .card button.delete{margin:0;padding:10px;font-size:10px}
  
  
  /* Forms responsive */
  label {
    margin-left: 5%;
    font-size: 0.9em;
  }
  
  input, select, textarea {
    width: 90%;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 30px;
    letter-spacing: 1px;
    margin-bottom: 0.4em;
  }
  
  .banner-image {
    height: 160px;
    width: 100%;
  }
  
  .card button {
    font-size: 18px;
    padding: 10px 15px;
    margin: auto;
  }
  
  label {
    margin-left: 0;
    font-size: 0.85em;
  }
  
  input, select, textarea {
    width: 100%;
  }
}

@media (max-width:420px){
  .btn.whatsapp{padding:6px 12px;gap:6px;font-size:11px}
  .btn.whatsapp svg{width:14px;height:14px}
}

@media (max-width:340px){
  .btn-reservar{padding:6px 8px;font-size:12px}
}

/* Admin Header Styles */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  padding: 24px 32px;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.1);
}

.admin-title-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.admin-icon {
  font-size: 48px;
  background: rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(10px);
}

.admin-title-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-main-title {
  font-family: 'Inter';
  font-weight: 800;
  font-size: 28px;
  margin: 0;
  color: var(--fg);
  letter-spacing:  0;
}

.admin-subtitle {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 14px;
  margin: 0;
  color: var(--accent);
  opacity: 0.9;
}

.admin-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-family: 'Inter';
  font-weight: 900;
  font-size: 32px;
  color: var(--fg);
  line-height: 1;
}

.stat-label {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing:  0;
  margin-top: 4px;
}

.stat-divider {
  width: 2px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  border-radius: 1px;
}

/* Schedule Container */
.schedule-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Schedule Add Card */
.schedule-add-card {
  background: linear-gradient(135deg, #043e19 0%, #063718 25%, #043e19 100%);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 10;
}

.schedule-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.schedule-card-icon {
  font-size: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px;
  backdrop-filter: blur(10px);
}

.schedule-card-title {
  font-family: 'Inter';
  font-weight: 800;
  font-size: 20px;
  margin: 0;
  color: white;
  letter-spacing:  0;
}

.schedule-card-subtitle {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 13px;
  margin: 0;
  color: rgba(255,255,255,0.9);
}

/* Schedule Form */
.schedule-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 14px;
  color: white;
  margin: 0;
  text-transform: uppercase;
  letter-spacing:  0;
}

.form-input, .form-select {
  padding: 12px 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  background: rgba(255,255,255,0.95);
  font-family: 'Inter';
  font-weight: 500;
  font-size: 14px;
  color: #1f2937;
  transition: border-color .3s ease, box-shadow .3s ease;
  width: 100%;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: white;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.btn-save-schedule {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 14px 24px;
  border-radius: 12px;
  font-family: 'Inter';
  font-weight: 700;
  font-size: 14px;
  letter-spacing:  0;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s ease;
  backdrop-filter: blur(10px);
}

.btn-save-schedule:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.btn-icon {
  font-size: 16px;
}

.form-help {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  text-align: center;
  font-style: italic;
}

/* Schedule Filters */
.schedule-filters {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.1);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-label {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 14px;
  color: var(--fg);
  white-space: nowrap;
}

.filter-select {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--fg);
  font-family: 'Inter';
  font-weight: 500;
  font-size: 13px;
  min-width: 160px;
  backdrop-filter: blur(10px);
}

.filter-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(245, 235, 221, 0.3);
}

.btn-clear-filters {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'Inter';
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all .3s ease;
}

.btn-clear-filters:hover {
  background: var(--accent);
  color: var(--bg);
}

/* Schedules List */
.schedules-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.day-schedule-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.1);
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.day-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.day-title {
  font-family: 'Inter';
  font-weight: 800;
  font-size: 22px;
  margin: 0;
  color: var(--fg);
  letter-spacing:  0;
}

.day-routes-count {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 13px;
  color: var(--accent);
  opacity: 0.9;
}

.day-stats {
  display: flex;
  align-items: center;
}

.total-trips {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
  background: rgba(245, 235, 221, 0.1);
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(245, 235, 221, 0.2);
}

/* Route Section */
.route-section {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.route-section:last-child {
  border-bottom: none;
}

.route-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.route-title {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.route-icon {
  font-size: 20px;
}

.route-count {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 12px;
  color: var(--accent);
  background: rgba(245, 235, 221, 0.1);
  padding: 6px 12px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing:  0;
}

/* Schedules Grid */
.schedules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.schedule-item {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all .3s ease;
}

.schedule-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.schedule-time {
  margin-bottom: 12px;
}

.time {
  font-family: 'Inter';
  font-weight: 800;
  font-size: 24px;
  color: var(--accent);
  letter-spacing: 1px;
}

.schedule-info {
  margin-bottom: 16px;
}

.capacity-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.capacity, .booked {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 13px;
  color: var(--fg);
  opacity: 0.9;
}

.available {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 4px;
}

.available.available {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.available.full {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.schedule-actions {
  display: flex;
  justify-content: flex-end;
}

.delete-form {
  margin: 0;
}

.btn-delete-schedule {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 8px 12px;
  border-radius: 8px;
  font-family: 'Inter';
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-delete-schedule:hover {
  background: rgba(239, 68, 68, 0.3);
  transform: translateY(-1px);
}

.delete-icon {
  font-size: 14px;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 40px;
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  border: 2px dashed rgba(255,255,255,0.1);
}

.empty-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.6;
}

.empty-state h3 {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  margin: 0 0 12px 0;
}

.empty-state p {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 14px;
  color: var(--accent);
  margin: 0;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .admin-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .card-index-top2{
    margin-left: 0;
  }
  .card-index-top2 button{
    width: 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .schedule-filters {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  .filter-group {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  
  .schedules-grid {
    grid-template-columns: 1fr;
  }
  
  .day-header {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .route-header {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Booking Form Styles */
.booking-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.booking-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 40px;
  background: linear-gradient(135deg, #1f2937 0%, #374151 25%, #1f2937 100%);
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.1);
}

.booking-icon {
  font-size: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(10px);
}

.booking-title-content {
  flex: 1;
}

.booking-main-title {
  font-family: 'Inter';
  font-weight: 800;
  font-size: 28px;
  margin: 0 0 8px 0;
  color: var(--fg);
  letter-spacing: 0.5px;
}

.booking-route-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.route-text {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
}

.datetime-info {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 14px;
  color: rgba(245, 235, 221, 0.8);
}

.booking-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,0.1);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-section {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
  transition: border-color .3s ease;
}

.form-section:hover {
  border-color: rgba(255,255,255,0.2);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter';
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin: 0 0 24px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.section-icon {
  font-size: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 14px;
  color: var(--fg);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input, .form-select {
  padding: 14px 16px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  color: var(--fg);
  font-family: 'Inter';
  font-weight: 500;
  font-size: 14px;
  transition: border-color .3s ease, background-color .3s ease;
  backdrop-filter: blur(10px);
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(245, 235, 221, 0.2);
}

.form-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.custom-address {
  margin-top: 8px;
  opacity: 0.6;
  transition: opacity .3s ease;
}

.custom-address:not(:disabled) {
  opacity: 1;
}

.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.extra-option {
  display: flex;
  align-items: center;
  padding: 16px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all .3s ease;
  background: rgba(255,255,255,0.02);
}

.extra-option:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}

.extra-option:has(.extra-checkbox:checked) {
  border-color: var(--accent);
  background: rgba(245, 235, 221, 0.1);
}

.extra-checkbox {
  margin-right: 12px;
  transform: scale(1.2);
}

.extra-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.extra-icon {
  font-size: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px;
}

.extra-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.extra-title {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 14px;
  color: var(--fg);
}

.extra-price {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.btn-secondary, .btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: 'Inter';
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s ease;
  border: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--fg);
  border: 2px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #16a34a 100%);
  color: white;
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.4);
}

.btn-icon {
  font-size: 16px;
}

/* Responsive Design for Booking Form */
@media (max-width: 768px) {
  .booking-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px;
  }
  
  .booking-stats {
    gap: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .extras-grid {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 16px;
  }
  
  .btn-secondary, .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* Airport Booking Specific Styles */
.airport-fixed {
  background: rgba(34, 197, 94, 0.1) !important;
  border-color: rgba(34, 197, 94, 0.3) !important;
  cursor: not-allowed;
}

.airport-fixed option {
  background: rgba(34, 197, 94, 0.1);
  color: var(--fg);
}

.form-help-text {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  font-style: italic;
}

/* Confirm Page Button Styles */
.confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  align-items: center;
}

.btn-whatsapp-confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366 0%, #21b658 50%, #25D366 100%);
  color: white;
  text-decoration: none;
  padding: 20px 32px;
  border-radius: 16px;
  min-width: 280px;
  text-align: center;
  transition: all .3s ease-in-out;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-whatsapp-confirm::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-whatsapp-confirm:hover::before {
  left: 100%;
}

.btn-whatsapp-confirm:hover {
  transform: translateY(-3px);
}

.btn-whatsapp-confirm .btn-icon {
  font-size: 24px;
  margin-bottom: 4px;
}

.btn-whatsapp-confirm .btn-text {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-whatsapp-confirm .btn-subtext {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 12px;
  opacity: 0.9;
  font-style: italic;
}

.btn-home-confirm {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  color: var(--fg);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all .3s ease;
  backdrop-filter: blur(10px);
  min-width: 200px;
  justify-content: center;
}

.btn-home-confirm:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.1);
}

.btn-home-confirm .btn-icon {
  font-size: 18px;
}

.btn-home-confirm .btn-text {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Responsive Design for Confirm Buttons */
@media (max-width: 768px) {
  .confirm-actions {
    gap: 16px;
  }
  
  .btn-whatsapp-confirm {
    min-width: 100%;
    padding: 18px 24px;
  }
  
  .btn-home-confirm {
    min-width: 100%;
  }
}

