/*
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/contact/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;
}


/* ===== CONTACT SECTION ===== */

.contact-section {
  position: relative; /* IMPORTANTE */
  padding: 100px 20px;
  background: #f4f6f9;
  overflow: visible; /* opcional si no quieres que se salga */
}
.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: space-between;
}


/* LEFT SIDE */

.contact-info {
  width: 50%;
}

.contact-info h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1c2b4a;
}

.contact-info h2 span {
  color: #48c4e5;
}

.contact-info p {
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.contact-block h4 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #1c2b4a;
}

.contact-block p {
  margin: 0;
  color: #555;
  font-size: 14px;
}

/* SOCIAL ICONS */

.social-icons a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  background: #48c4e5;
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 14px;
  text-decoration: none;
}


/* RIGHT SIDE FORM CARD */

.contact-form-card {
  width: 45%;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1c2b4a;
}

.contact-form-card h3 span {
  color: #48c4e5;
}

.form-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}


/* FORM STYLE */

.form-group {
  margin-bottom: 25px;
}

.form-group input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 14px;
  background: transparent;
  outline: none;
}

.form-group textarea {
  width: 100%;
  height: 120px;
  border: none;
  background: #f3f3f3;
  border-radius: 10px;
  padding: 15px;
  resize: none;
  font-size: 14px;
  outline: none;
}


/* BUTTON */

.btn-submit {
  background: #48c4e5;
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 25px;
  cursor: pointer;
  float: right;
  font-weight: 600;
}

.btn-submit:hover {
  opacity: 0.9;
}

.contact-bubble {
  position: absolute;
  top: -80px;      /* ajusta vertical */
  left: 0;     /* ajusta horizontal */
  width: 120px;   /* tamaño */
  z-index: 0;
}



.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;
}

