/*
Theme Name: Cleaning Theme
Version: 2.1 - Pixel Perfect Fix
*/

/* =========================================
   1. RESET Y ESTILOS GLOBALES
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #5a607c;
    background-color: #f8f9fc;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, p, ul { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* =========================================
   2. HEADER
   ========================================= */

.site-header {
    background-color: #1e3a8a;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-inner {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 45px;
    width: auto;
}

.header-nav .header-menu {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.header-nav .header-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.header-nav .header-menu li a:hover {
    opacity: 0.8;
}

.header-actions {
    display: flex;
    gap: 14px;
}

/* Botones globales */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-login {
    background-color: transparent;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
}

.btn-login:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-book {
    background: linear-gradient(135deg, #4cc9f0 0%, #3ab5dc 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(76, 201, 240, 0.3);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(76, 201, 240, 0.4);
}

/* =========================================
   3. HERO SECTION - CORREGIDO
   ========================================= */

.home-hero {
    position: relative;
    /* Fondo azul más claro como en imagen objetivo */
    background: linear-gradient(135deg, #5fa8e8 0%, #4a9bcf 50%, #3a8fc7 100%);
    padding: 90px 0 50px; /* Más padding inferior */
    overflow: visible; /* Importante: permitir que cards sobresalgan */
}

/* Overlay de textura de casa */
.home-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/img/book1/background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.25; /* Más visible que antes */
    z-index: 0;
}

/* Elementos decorativos */
.deco-circle {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50px;
    left: 6%;
    z-index: 1;
}

.deco-stars {
    position: absolute;
    top: 80px;
    right: 10%;
    color: rgba(255,255,255,0.7);
    font-size: 28px;
    z-index: 1;
    letter-spacing: 8px;
}

.home-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

/* TÍTULO CORREGIDO - Como en imagen objetivo */
.home-hero__title {
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.home-hero__title {
    color: #ffffff; /* Primera línea blanca */
}

.home-hero__title span {
    color: #1e3a8a; /* Azul oscuro */
}

.home-hero__text {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
    margin-bottom: 0;
    max-width: 800px;
}

/* Imagen del hero - MÁS GRANDE */
.home-hero__image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
    transform: scale(1.2) translateY(18px);
}

.hero-bucket-img {
    width: 100%;
    max-width: 520px; /* Más grande */
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.25));
    transform: translateY(-15px);
}

/* =========================================
   4. CARDS FLOTANTES - CORREGIDO
   ========================================= */

.home-overlap-cards {
    position: relative;
    margin-top: -83px; /* Más overlap */
    z-index: 10;
    padding-bottom: 90px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    justify-content: center; /* centra el grupo */
    gap: 12px;
}

/* CARDS CORREGIDAS - Fondo gris claro como objetivo */
.info-card {
    background: #f5f7fa; /* Gris claro, no blanco puro */
    padding: 20px 32px;
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06); /* Sombra más suave */
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid rgba(255,255,255,0.6); /* Borde sutil */
    width: 300px;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.1);
    background: #ffffff; /* Blanco al hover */
}

.info-card__icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-card__content h3 {
    color: #1e3a8a;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.info-card__content p {
    font-size: 13px;
    color: #6e7592;
    line-height: 1.65;
}

 .atc-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 20px 60px;
  }


/* ── HEADER ── */
  .atc-header {
    text-align: center;
    margin-bottom: 30px;
  }

  .atc-header .star-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
  }

  .atc-header .star-top span {
    font-size: 22px;
    color: #5bbcd1;
  }

  .atc-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
  }

  .atc-header h1 .highlight {
    color: #5bbcd1;
  }

  .atc-disclaimer {
    font-size: 11.5px;
    color: #666;
    text-align: center;
    line-height: 1.6;
    max-width: 680px;
    margin: 12px auto 30px;
  }

  /* ── SERVICE TABS ── */
  .atc-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-bottom: 40px;
    border-radius: 6px;
    overflow: hidden;
  }

  .atc-tab {
    background: #619CF4;
    color: #fff;
    text-align: center;
    padding: 14px 10px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    line-height: 1.3;
  }

  .atc-tab:hover { background: #254085; }
  .atc-tab.active { background: #B7D3E9; }

  /* ── SECTION ── */
  .atc-section {
    margin-bottom: 36px;
  }

  .atc-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
  }

  .atc-section p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  /* ── FORM LABEL ── */
  .atc-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 7px;
  }

  /* ── INPUT ── */
  .atc-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #d0d0d0;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
  }

  .atc-input:focus { border-color: #5bbcd1; }

  /* ── FREQUENCY ── */
  .freq-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .freq-btn {
    padding: 10px 22px;
    border: 1.5px solid #d0d0d0;
    border-radius: 6px;
    background: #fff;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    color: #555;
  }

  .freq-btn:hover { border-color: #5bbcd1; color: #5bbcd1; }
  .freq-btn.active { background: #5bbcd1; border-color: #5bbcd1; color: #fff; }

  /* ── ROOM SELECTS ── */
  .room-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .room-grid .atc-label { margin-bottom: 7px; }

  .atc-select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #d0d0d0;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: #555;
    background: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    outline: none;
  }

  .atc-select:focus { border-color: #5bbcd1; }

  /* ── CHECKBOX ── */
  .atc-check-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
  }

  .atc-check-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #5bbcd1;
    cursor: pointer;
  }

  .atc-check-row label {
    font-size: 13px;
    color: #555;
    cursor: pointer;
  }

  /* ── EXTRAS ── */
  .extras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 16px;
  }

  .extra-card {
    border: 1.5px solid #d0d0d0;
    border-radius: 10px;
    padding: 18px 10px 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
  }

  .extra-card:hover { border-color: #5bbcd1; }
  .extra-card.selected { border-color: #5bbcd1; background: #eef8fb; }

  .extra-card .icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 10px;
    background: #e8f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .extra-card .icon svg {
    width: 26px;
    height: 26px;
    stroke: #5bbcd1;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .extra-card span {
    font-size: 12.5px;
    font-weight: 600;
    color: #444;
    display: block;
  }

  /* ── CUSTOMER DETAILS GRID ── */
  .details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
  }

  .field-group { display: flex; flex-direction: column; }

  /* ── BUTTON ── */
  .atc-btn-wrap {
    text-align: center;
    margin-top: 30px;
  }

  .atc-btn {
    background: #3AA3D2;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px 48px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.3px;
  }

  .atc-btn:hover { background: #3fa8c0; }

  

  /* Decorative stars */
  .deco-star {
    color: #5bbcd1;
    font-size: 20px;
    position: absolute;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 620px) {
    .atc-tabs { grid-template-columns: 1fr 1fr; }
    .room-grid { grid-template-columns: 1fr; }
    .extras-grid { grid-template-columns: 1fr 1fr; }
    .details-grid { grid-template-columns: 1fr; }
    .atc-banner { flex-direction: column; padding: 36px 28px; }
    .bucket-illustration { width: 160px; height: 140px; }
    .atc-header h1 { font-size: 24px; }
  }

  .luxury-banner {
  position: relative;
  background: #2f4a8a;
  border-radius: 40px;
  padding: 80px 60px;
  margin: 100px auto;
  max-width: 1200px;
  overflow: visible; /* IMPORTANTE */
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.luxury-banner-content {
  max-width: 600px;
  color: #fff;
}

.luxury-banner h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.luxury-banner h2 span {
  color: #48c4e5;
}

.luxury-banner p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* BOTÓN */

.luxury-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #48c4e5;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.luxury-btn:hover {
  background: #3bb2d1;
}

/* BUCKET */

.luxury-bucket {
  position: absolute;
  top: 20px;
  right: 180px;
  transform: scale(2.5);    
  width: 320px;   /* tamaño similar al diseño */
  z-index: 2;
}

/* =========================================
   BOOK PAGES - ADDITIONS
   Agregar al final de style.css
   ========================================= */

/* ── TABS COMO LINKS (páginas separadas) ── */
.atc-tabs a.atc-tab {
  display: block;
  text-decoration: none;
  color: #fff;
  border-radius: 0;
}

/* ── RADIO BUTTONS (Deep Luxury) ── */
.booking-type-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #444;
}

.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #5bbcd1;
  cursor: pointer;
}

/* ── EXTRAS CON LISTA (Deep Luxury) ── */
.extras-grid--detailed {
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
}

.extra-card--detailed {
  padding: 16px 14px 18px;
  text-align: left;
}

.extra-card--detailed .icon {
  margin: 0 0 10px 0;
}

.extra-card--detailed > span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.extra-list {
  list-style: disc;
  padding-left: 16px;
  margin: 0;
}

.extra-list li {
  font-size: 11.5px;
  color: #666;
  line-height: 1.55;
  margin-bottom: 4px;
}

/* ── RESTOCK GRID (Restocking & High-End) ── */
.restock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.restock-card {
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px 18px 22px;
  background: #fff;
}

.restock-card__icon {
  width: 48px;
  height: 48px;
  background: #e8f5f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.restock-card__icon svg {
  width: 26px;
  height: 26px;
}

.restock-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.restock-card__subtitle {
  font-size: 12px;
  color: #888;
  margin-bottom: 12px;
  font-weight: 500;
}

.restock-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.restock-list li {
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 5px;
  padding-left: 16px;
  position: relative;
}

.restock-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #5bbcd1;
  font-weight: 700;
}

/* Variante con checkbox visual */
.restock-list--check li::before {
  content: '☐';
  color: #5bbcd1;
  font-size: 11px;
}

/* ── FIELD NOTE (High-End) ── */
.field-note {
  font-size: 12px;
  color: #888;
  margin-top: 8px;
  line-height: 1.5;
}

/* ── PRICING INCLUDES (High-End) ── */
.pricing-includes {
  margin-top: 16px;
  padding: 14px 18px;
  background: #f5f7fa;
  border-radius: 8px;
  border-left: 3px solid #5bbcd1;
}

.pricing-includes__title {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.pricing-includes ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}

.pricing-includes ul li {
  font-size: 12.5px;
  color: #555;
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .extras-grid--detailed { grid-template-columns: 1fr 1fr; }
  .restock-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .extras-grid--detailed { grid-template-columns: 1fr; }
}