/* 1. Contenedor Principal (Base de la imagen) */
.custom-booking-section {
    position: relative;
    display: block;
    padding: 120px 0;
    border-top: 1px solid #ebe5db;

    /* Imagen de fondo */
    background-image: url('assets/images/portfolio/16.jpg');
    /* ¡Asegúrate de que la ruta sea correcta! */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    /* Aislamos el contexto de apilamiento para los z-index */
    background-attachment: scroll;
    overflow: hidden;
}

/* 2. El Overlay (Capa oscura/color sobre la imagen) */
.custom-booking-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Color azul oscuro con 70% de opacidad. Cámbialo si lo deseas */
    background-color: rgba(9, 0, 57, 0.78);
    z-index: 1;
}

/* 3. Asegurar que TODO el contenido se renderice por encima del overlay */
.custom-booking-section .container {
    position: relative;
    z-index: 2;
    /* Mayor que el z-index del overlay (1) */
}

/* --- ESTILOS DE LOS COMPONENTES INTERNOS --- */

/* Bloque Izquierdo (Alineación Flex para Icono + Texto) */
.booking-left-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.booking-icon {
    font-size: 60px;
    color: #ffffff;
    /* Color del icono en blanco */
    line-height: 1;
}

.booking-title p {
    font-size: 20px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.9);
    /* Blanco suave */
    margin: 0 0 5px;
}

.booking-title h2 {
    font-size: 46px;
    line-height: 50px;
    font-weight: 800;
    margin: 0;
}

.booking-title h2 a {
    color: #ffffff;
    /* Número de teléfono en blanco brillante */
    text-decoration: none;
}

/* Bloque Derecho (Texto + Botón alineados) */
.booking-right-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.booking-text {
    max-width: 400px;
}

.booking-text p {
    color: #ffffff;
    line-height: 32px;
    font-weight: 400;
    margin: 0;
}

/* Estilos para el botón */
.booking-button a {
    display: inline-block;
    line-height: 70px;
    border-radius: 50px;
    padding: 0 60px;
    background-color: #ffffff;
    /* Fondo blanco para que contraste con el overlay oscuro */
    color: #0f0066;
    /* Texto del color del tema */
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.booking-button a:hover {
    background-color: #0f0066;
    color: #ffffff;
}