/* 
* brand.css - Estilos principales del branding de SalíJugando
* Este archivo contiene todos los estilos del layout principal, los colores
* de la marca y elementos de UI consistentes en toda la aplicación.
*/

/* === Variables y colores === */
:root {
    --primary-blue: #3278EB; /* Azul primario */
    --dark-blue: #0C3566;    /* Azul oscuro */
    --light-blue: #4DAFFF;   /* Azul claro */
    --sky-blue: #80BAF9;     /* Azul cielo */
    --accent-yellow: #D3CC76; /* Amarillo acento */
    --white: #F4F3ED;        /* Blanco/gris claro */
    --light-gray: #dedede;   /* Blanco/gris claro */
    --whatsapp-green: #25D366; /* Color verde de WhatsApp */
}

/* === Tipografía === */
.dunbar-font {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.chillax-font {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* === Estilos base === */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--dark-blue);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    border: none;
    outline: none;
    height: 100%;
}

/* === Header y Navbar === */
header {
    width: 100%;
    background-color: var(--dark-blue);
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.shrink {
    height: 70px;
}

.navbar {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: var(--dark-blue) !important;
    position: relative;
}

.navbar > .container {
    max-width: 100%;
    padding: 0 15px;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

@media (min-width: 992px) {
    .navbar > .container {
        max-width: 1300px;
        margin: 0 auto;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    height: 100%;
    position: relative;
}

.navbar-brand img {
    height: 100px;
    width: auto;
    max-width: none;
    position: absolute;
    top: -10px;
    left: 0;
    transition: all 0.3s ease;
}

header.shrink .navbar-brand img {
    height: 90px;
    top: -10px;
}

.navbar-toggler {
    position: relative;
    border: none;
    padding: 0.25rem;
    margin-right: 0;
    z-index: 1050;
    top: -5px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-collapse {
    background-color: var(--dark-blue);
    transition: all 0.3s ease;
}

.navbar-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.navbar-dark .navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--accent-yellow);
}

.btn-register {
    background-color: var(--accent-yellow);
    color: var(--dark-blue) !important;
    font-weight: 600 !important;
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
    display: inline-block;
}

.btn-register:hover {
    background-color: #C8BF5E;
    color: var(--dark-blue) !important;
}

/* === Hero Section === */
.hero-section {
    position: relative;
    color: var(--white);
    padding: 6rem 0 5rem 0;
    padding-top: calc(6rem + 80px); /* Espacio para el header (80px) */
    overflow: hidden;
    min-height: 600px; /* Reducido para menos espacio vertical */
    background: var(--dark-blue); /* Azul oscuro para profesionalismo */
    margin-top: 0;
    top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Líneas de fondo decorativas para efecto profesional - reducidas */
.hero-bg-line {
    position: absolute;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    transform-origin: left;
    z-index: 1;
}

.hero-bg-line-1 {
    top: 65%;
    left: 0;
    width: 100%;
    transform: rotate(-1deg);
}

/* Nuevas líneas geométricas para hero section */
.hero-decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hero-decoration-1 {
    bottom: 0;
    right: 0;
    width: 50%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-decoration-2 {
    top: 30%;
    left: 0;
    width: 30%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.08);
}

.hero-decoration-3 {
    top: 40%;
    right: 0;
    height: 60%;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.06);
}

.hero-decoration-4 {
    bottom: 20%;
    left: 15%;
    height: 40%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.07);
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content-left {
    position: relative;
}

.hero-logo-container {
    position: absolute;
    top: -40px;
    right: 40px;
    width: 100px;
    height: 100px;
    opacity: 0.9;
    transform: rotate(0deg); /* Logo recto */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.hero-logo {
    width: 100%;
    height: auto;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 6px;
    background-color: var(--accent-yellow);
    border-radius: 3px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Destacados del servicio - simplificados */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1.8rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.12);
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.hero-feature-item i {
    color: var(--accent-yellow);
    margin-right: 0.6rem;
    font-size: 0.8rem;
}

.hero-feature-item span {
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Visual Steps en la parte derecha - colores ajustados */
.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.hero-visual-box {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    padding: 1.3rem;
    border-left: 3px solid;
    transition: all 0.3s ease;
    transform: translateX(50px);
    opacity: 0;
    animation: slideInFromRight 0.5s forwards;
}

.hero-visual-box-1 {
    border-left-color: var(--accent-yellow);
    animation-delay: 0.2s;
}

.hero-visual-box-2 {
    border-left-color: var(--sky-blue);
    animation-delay: 0.4s;
}

.hero-visual-box-3 {
    border-left-color: var(--primary-blue);
    animation-delay: 0.6s;
}

.hero-visual-box:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px) !important;
}

.hero-visual-content {
    display: flex;
    align-items: center;
}

.hero-visual-icon {
    min-width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1rem;
}

.hero-visual-box-1 .hero-visual-icon {
    background-color: var(--accent-yellow);
    color: var(--dark-blue);
}

.hero-visual-box-2 .hero-visual-icon {
    background-color: var(--sky-blue);
    color: var(--dark-blue);
}

.hero-visual-box-3 .hero-visual-icon {
    background-color: var(--primary-blue);
    color: white;
}

.hero-visual-text {
    display: flex;
    flex-direction: column;
}

.hero-visual-step {
    font-weight: 600;
    font-size: 1.05rem;
}

.hero-visual-desc {
    font-size: 0.85rem;
    opacity: 0.75;
}

/* Mobile steps simplificados */
.hero-steps-mobile {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2.5rem;
    z-index: 5;
    position: relative;
}

.hero-steps-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-step-card {
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 3px solid;
    z-index: 6;
    position: relative;
}

.hero-step-card:nth-child(1) {
    border-left-color: var(--accent-yellow);
}

.hero-step-card:nth-child(2) {
    border-left-color: var(--sky-blue);
}

.hero-step-card:nth-child(3) {
    border-left-color: var(--primary-blue);
}

.hero-step-card:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.12);
}

.hero-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.hero-step-card:nth-child(1) .hero-step-icon {
    background-color: var(--accent-yellow);
    color: var(--dark-blue);
}

.hero-step-card:nth-child(2) .hero-step-icon {
    background-color: var(--sky-blue);
    color: var(--dark-blue);
}

.hero-step-card:nth-child(3) .hero-step-icon {
    background-color: var(--primary-blue);
    color: white;
}

.hero-step-content {
    display: flex;
    flex-direction: column;
}

.hero-step-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.hero-step-desc {
    font-size: 0.85rem;
    opacity: 0.8;
}

@media (min-width: 992px) {
    .hero-steps-mobile {
        display: flex;
    }
}

@media (max-width: 991px) {
    .hero-visual {
        display: none;
    }
    
    .hero-steps-mobile {
        display: flex;
        margin: 2.5rem auto;
        width: 100%;
        max-width: 400px;
    }
}

.hero-section::after {
    content: '';
    display: block;
    height: 75px;
    width: 100%;
}

/* === Main Container === */
main.container-fluid {
    padding: 0 !important;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0 !important; 
    padding-top: 0 !important;
    flex: 1 0 auto;
    position: relative;
}

body.scrolled main.container-fluid {
    margin-top: 0 !important; /* Consistente con el estado normal */
}

/* === Footer === */
footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 2rem 0;
    margin-top: 0 !important;
    flex-shrink: 0; /* Impide que el footer se encoja */
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0.5rem 0;
}

.footer-link {
    text-decoration: none;
}

.whatsapp-button {
    background-color: #25D366 !important; /* Color verde de WhatsApp */
    transition: all 0.3s ease;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
}

.whatsapp-icon {
    font-size: 20px;
    margin-right: 10px;
    color: white;
}

.whatsapp-text {
    color: white;
    font-weight: 600;
    font-size: 1em;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: #20BD5C !important; /* Color verde un poco más oscuro al hover */
}

.copyright {
    color: var(--white);
}

/* === Botones === */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* Regla general para evitar subrayado en todos los botones */
[class*="btn-"] {
    text-decoration: none;
}

[class*="btn-"]:hover {
    text-decoration: none;
}

.btn-accent {
    background-color: var(--accent-yellow);
    color: var(--dark-blue);
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 22px;
    border: 2px solid var(--accent-yellow);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 10;
    display: inline-block;
    cursor: pointer;
}

.btn-accent:hover {
    background-color: transparent;
    color: var(--accent-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 204, 118, 0.4);
    text-decoration: none;
}

/* === WhatsApp Button === */
.whatsapp-button {
    background-color: #25D366 !important; /* Color verde de WhatsApp */
    transition: all 0.3s ease;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: #20BD5C !important; /* Color verde un poco más oscuro al hover */
}

/* === Botón de contacto para tarifas === */
.btn-contact-wp {
    background-color: var(--accent-yellow);
    color: var(--dark-blue);
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(211, 204, 118, 0.2);
    margin-top: 1rem;
    position: relative;
    z-index: 10;
    cursor: pointer;
    margin-bottom: -10rem;
}

.btn-contact-wp:hover {
    background-color: var(--whatsapp-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    border-color: var(--whatsapp-green);
    text-decoration: none;
}

.btn-contact-wp i {
    font-size: 1.2rem;
    vertical-align: middle;
}

/* === Home Page - Búsqueda === */
.search-container {
    position: relative;
    margin-top: 2.5rem;
    max-width: 500px;
}

.search-input-wrapper {
    background-color: var(--white);
    border-radius: 50px;
    padding: 7px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 20px rgba(12, 53, 102, 0.15);
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    box-shadow: 0 12px 25px rgba(12, 53, 102, 0.25);
    transform: translateY(-2px);
}

.search-input {
    border: none;
    background: transparent;
    padding: 10px 20px;
    font-size: 1.05rem;
    color: var(--dark-blue);
    flex-grow: 1;
    outline: none;
}

.search-input::placeholder {
    color: #8898aa;
}

.search-button {
    width: 46px;
    height: 46px;
    background-color: var(--accent-yellow);
    border: none;
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    transform: rotate(90deg);
}

/* === Home Page - Elementos decorativos === */
/* Removed triangle-field styles as they're replaced by hero-bg-line */

.scroll-to-venues {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(244, 243, 237, 0.15);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.scroll-to-venues:hover {
    background-color: rgba(244, 243, 237, 0.25);
    transform: translateX(-50%) scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-12px) translateX(-50%);
    }
    60% {
        transform: translateY(-6px) translateX(-50%);
    }
}

/* === Venues Section === */
.venues-section {
    background: var(--light-blue);
    color: var(--white);
    padding: 2rem 0 2rem 0;
    position: relative;
}

/* Reduce space between title and venue cards */
.venues-section .row.mb-5 {
    margin-bottom: 1.5rem !important;
}

.section-title {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 0.5rem; /* Reduced from 1rem */
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 5px;
    background-color: var(--accent-yellow);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1rem; /* Reduced from 2.5rem */
}

/* Decoraciones geométricas para venues section */
.venues-decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.venues-decoration-1 {
    top: 0;
    right: 5%;
    height: 40%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.12);
}

.venues-decoration-2 {
    bottom: 0;
    left: 10%;
    width: 30%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
}

.venues-decoration-3 {
    top: 20%;
    left: 20%;
    width: 15%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
}

.venues-decoration-4 {
    bottom: 30%;
    right: 15%;
    height: 25%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.09);
}

/* === Venue Cards === */
.venue-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 18px;
    overflow: hidden;
    border: none;
    box-shadow: 0 8px 20px rgba(12, 53, 102, 0.12);
    position: relative;
    z-index: 5;
}

.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(12, 53, 102, 0.2);
}

.venue-card .card-img-top {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: var(--primary-blue);
}

.venue-card .card-body {
    background-color: var(--white);
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 6;
}

.sport-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-yellow);
    color: var(--dark-blue);
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(12, 53, 102, 0.1);
    transition: all 0.3s ease;
}

/* === Features Section === */
.features-section {
    background-color: var(--sky-blue);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}


/* Decoraciones y elementos para feature section */
.features-decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.features-decoration-1 {
    top: 20%;
    right: 0;
    width: 25%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
}

.features-decoration-2 {
    bottom: 30%;
    left: 0;
    width: 20%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.06);
}

/* Destacado 50% más económico */
.economical-highlight {
    display: inline-block;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.economical-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.economical-percentage {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    position: relative;
}

.economical-percentage span {
    position: relative;
    z-index: 2;
}

.economical-circle {
    position: absolute;
    width: 140px;
    height: 70px;
    border: 2px solid var(--dark-blue);
    border-radius: 50%;
    left: -20px;
    top: 47%;
    transform: translateY(-60%);
    z-index: 1;
    opacity: 0.6;
}

.economical-subtext {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0.9;
}

.features-title, 
.venues-title {
    color: var(--white) !important;
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    position: relative;
}

.features-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 90%;
}

.features-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    transition: all 0.3s ease;
}

.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background-color: var(--accent-yellow);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.feature-text {
    flex: 1;
}

.feature-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.feature-text p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
}

.features-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.features-image {
    max-width: 80%;
    height: auto;
    animation: floatAnimation 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
    opacity: 1;
    position: relative;
    z-index: 6;
}

@media (min-width: 992px) {
    .features-image-container {
        height: 100%;
    }
    
    .features-image {
        max-width: 80%;
        height: auto;
        animation: floatAnimation 4s ease-in-out infinite;
        filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
    }
    
    @keyframes floatAnimation {
        0% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0); }
    }
}

@media (max-width: 991.98px) {
    .features-logo-left {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 5;
        position: relative;
        background: transparent;
    }
    
    .features-image {
        max-width: 70%;
        height: auto;
        opacity: 1;
        filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
        z-index: 6;
        position: relative;
    }
    
    .features-title {
        font-size: 2.4rem;
        text-align: center;
        color: var(--white);
    }
    
    .features-subtitle {
        text-align: center;
        max-width: 100%;
        margin: 0 auto 2rem;
    }
    
    .features-list {
        max-width: 550px;
        margin: 0 auto;
    }
    
    .btn-contact-wp {
        display: block;
        margin: 3rem auto 0;
        text-align: center;
        max-width: 280px;
        z-index: 10;
    }
}

@media (max-width: 767.98px) {
    .features-section {
        padding: 4rem 0;
    }
    
    .features-title {
        font-size: 2.2rem;
    }
    
    .features-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-item {
        gap: 1rem;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1rem;
    }
    
    .feature-text h5 {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.9rem;
    }
}

/* === Transiciones entre secciones === */
.geometric-transition {
    height: 20px;
    position: relative;
    margin-top: -1px;
}

/* === Clases de utilidad para colores === */
.bg-primary-blue { background-color: var(--primary-blue); }
.bg-light-gray { background-color: var(--white); }
.bg-accent-yellow { background-color: var(--accent-yellow); }
.bg-dark-blue { background-color: var(--dark-blue); }
.bg-light-blue { background-color: var(--light-blue); }
.bg-sky-blue { background-color: var(--sky-blue); }

.text-primary-blue { color: var(--primary-blue); }
.text-dark-blue { color: var(--dark-blue); }
.text-accent-yellow { color: var(--accent-yellow); }
.text-white { color: var(--white); }
.text-light-blue { color: var(--light-blue); }
.text-sky-blue { color: var(--sky-blue); }

/* === Responsive === */
@media (max-width: 991.98px) {
    .navbar-toggler {
        top: -5px;
        position: absolute;
        right: 15px;
        transform: translateY(-50%);
        margin-top: 40px; /* Centrar verticalmente */
    }
    
    .navbar-brand img {
        height: 70px;
        top: -2px;
        max-height: 60px;
        width: auto;
    }
    
    header.shrink .navbar-brand img {
        height: 60px;
        top: -1px;
    }
    
    /* Nuevos estilos responsivos para la sección hero */
    .hero-title {
        font-size: 4.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-features {
        flex-direction: row;
        gap: 0.8rem;
        justify-content: flex-start;
    }
    
    .hero-feature-item {
        width: fit-content;
    }
    
    .hero-section {
        min-height: auto;
        padding-bottom: 5rem;
    }
    
    .hero-steps-mobile {
        display: block;
        margin: 3rem auto;
        width: 80%;
    }
    
    /* Fin nuevos estilos responsivos hero */
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 0;
        background-color: var(--dark-blue);
        border-radius: 0 0 15px 15px;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        z-index: 1000;
    }
    
    .navbar-collapse.show {
        max-height: none; /* Permitir altura completa */
        padding: 0.5rem 0;
    }
    
    .navbar-nav {
        padding: 1rem 0;
        margin: 0;
        width: 100%;
    }
    
    .navbar-nav .nav-item {
        text-align: center;
        margin: 0;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link {
        display: inline-block;
        font-size: 1.1rem;
        padding: 0.5rem 2rem !important;
    }
    
    .navbar-nav .btn-register {
        margin: 0.5rem 1rem;
        padding: 0.5rem 2rem !important;
    }
}

/* Media queries adicionales para pantallas más pequeñas */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .search-container {
        width: 100%;
    }
    
    .search-input-wrapper {
        width: 100%;
    }
    
    .hero-bg-line {
        display: none; /* Ocultar líneas en dispositivos muy pequeños */
    }
    
    .hero-steps-mobile {
        width: 100%;
        margin-top: 2rem;
    }
    
    .hero-step-circle {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .hero-steps-labels {
        gap: 2rem;
    }
    
    .hero-steps-labels span {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-section {
        padding-top: calc(5rem + 70px);
        padding-bottom: 4rem;
    }
    
    .hero-feature-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-feature-item i {
        font-size: 0.9rem;
    }
    

    
    .hero-steps-row {
        gap: 1.2rem;
    }
    
    .hero-step-circle {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .hero-steps-labels {
        gap: 1.5rem;
        font-size: 0.75rem;
    }
}

/* === Helpers === */
.no-header-gap {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* === Home page - Elementos adicionales === */
.venue-logo-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.venue-logo {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    z-index: 2;
}

.venue-address {
    font-size: 0.9rem;
}

.search-results-alert {
    background-color: rgba(244, 243, 237, 0.15);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
}

.clear-search {
    text-decoration: underline;
}

.no-venues-message {
    background-color: rgba(244, 243, 237, 0.15);
    border-radius: 18px;
    padding: 3.5rem 2rem;
}

.no-venues-message i {
    font-size: 3em;
    color: var(--accent-yellow);
}

.no-venues-message h4 {
    font-size: 1.8rem;
}

.no-venues-message p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.btn-view-all {
    color: var(--dark-blue);
    background-color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(12, 53, 102, 0.1);
    padding: 0.8rem 2rem;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: var(--accent-yellow);
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(12, 53, 102, 0.15);
    text-decoration: none;
}

.page-link {
    border-radius: 50%;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-title {
    font-size: 2.2rem;
    font-weight: 800;
}

.features-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* === Booking List Page === */
.reservations-container {
    padding-top: 90px;
    padding-bottom: 60px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-blue);
    min-height: calc(100vh - 80px);
}

.reservations-triangle {
    position: absolute;
    background-color: var(--light-blue);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.reservations-divider {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reservations-divider::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200%;
    height: 40px;
    background-color: var(--white);
    transform: rotate(45deg);
    transform-origin: top right;
}

.reservations-section {
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
}

.reservations-card {
    border-radius: 15px;
    background-color: var(--accent-yellow);
    box-shadow: 0 4px 15px rgba(12, 53, 102, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-header-custom {
    border-radius: 0;
    padding: 1rem 0;
    text-align: center;
    font-weight: 600;
}

.header-upcoming {
    background-color: rgba(211, 204, 118, 0.25);
    color: var(--dark-blue);
    border-bottom: 1px solid rgba(211, 204, 118, 0.4);
}

.header-past {
    background-color: rgba(12, 53, 102, 0.15);
    color: var(--dark-blue);
    border-bottom: 1px solid rgba(12, 53, 102, 0.25);
}

/* Estilos para la tarjeta de reserva basados en la imagen de referencia */
.booking-card {
    border: none;
    margin-bottom: 10px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.booking-header {
    background-color: rgba(211, 204, 118, 0.15);
    color: var(--dark-blue);
    padding: 10px 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-court {
    font-weight: 600;
}

.badge-status {
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-confirmed {
    background-color: #28a745;
    color: white;
}

.badge-cancelled {
    background-color: #dc3545;
    color: white;
}

.badge-pending {
    background-color: #ffc107;
    color: var(--dark-blue);
}

.badge-expired {
    background-color: #6c757d;
    color: white;
}

.booking-details {
    padding: 12px 15px;
    background-color: white;
}

.booking-info {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.booking-info-item {
    padding: 0 5px;
    margin-bottom: 8px;
    flex: 0 0 50%;
    max-width: 50%;
}

.info-label {
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    color: #6c757d;
    margin-bottom: 2px;
}

.info-label i {
    width: 16px;
    margin-right: 5px;
    text-align: center;
}

.info-value {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-blue);
}

.booking-actions {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 15px;
    gap: 8px;
    border-top: 1px solid #f0f0f0;
    background-color: #fafafa;
}

.btn-booking {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    min-width: 80px;
    justify-content: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.btn-edit {
    background-color: #f2f2f2;
    color: #495057;
    border: 1px solid #dee2e6;
}

.btn-edit:hover {
    background-color: #495057;
    color: white;
    border-color: #343a40;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.btn-cancel {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.btn-cancel:hover {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(220, 53, 69, 0.3);
    text-decoration: none;
}

.btn-mp {
    background-color: var(--primary-blue);
    color: white;
    border: none;
}

.btn-mp:hover {
    background-color: #2055b5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(50, 120, 235, 0.3);
    text-decoration: none;
}

.btn-transfer {
    background-color: #5a6268;
    color: white;
    border: none;
}

.btn-transfer:hover {
    background-color: #41484e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(90, 98, 104, 0.3);
    text-decoration: none;
}

/* Estilos para cupones */
.coupons-container {
    margin-bottom: 2rem;
}

.coupon-card {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--light-gray);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.coupon-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.coupon-header {
    background-color: rgba(211, 204, 118, 0.25);
    color: var(--dark-blue);
    padding: 10px 15px;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid rgba(211, 204, 118, 0.3);
}

.coupon-body {
    padding: 15px;
    text-align: center;
    background-color: var(--white);
}

.coupon-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 5px 0;
}

.coupon-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #f0f0f0;
    padding: 10px;
    font-size: 0.8rem;
    color: #6c757d;
    text-align: center;
}

.no-bookings {
    text-align: center;
    padding: 40px 0;
    color: #6c757d;
}

.no-bookings i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.6;
}

/* Media queries para mejor responsividad */
@media (max-width: 767.98px) {
    .booking-info-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .booking-actions {
        justify-content: center;
    }
    
    .btn-booking {
        flex: 1 1 auto;
        min-width: unset;
    }
}

/* Estilo para destacar el código de reserva */
.booking-info-item.booking-code {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 12px;
    padding: 8px 10px;
    background-color: rgba(50, 120, 235, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-blue);
}

.booking-info-item.booking-code .info-value {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.booking-info-item.booking-code .info-label {
    color: #495057;
    font-weight: 500;
}

.booking-info-item.booking-code .info-label i {
    color: var(--primary-blue);
} 

/* Estilos para la sección de próximas reservas */
.upcoming-bookings-section {
    padding: 2.5rem 0;
    background-color: var(--dark-blue);
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.upcoming-bookings-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: skewX(20deg) translateY(50%);
}
.booking-alert-card {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(12, 53, 102, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
    border-top: 4px solid var(--primary-blue);
}

.booking-alert-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(12, 53, 102, 0.15);
}

.booking-alert-card.pending-booking {
    border-top-color: var(--accent-yellow);
}

.booking-alert-card.confirmed-booking {
    border-top-color: #28a745;
}

.booking-alert-header {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background-color: rgba(12, 53, 102, 0.02);
    border-bottom: 1px solid rgba(12, 53, 102, 0.05);
}

.booking-alert-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-blue);
    color: white;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.pending-booking .booking-alert-icon {
    background-color: var(--accent-yellow);
    color: var(--dark-blue);
}

.confirmed-booking .booking-alert-icon {
    background-color: #28a745;
}

.booking-alert-title {
    flex-grow: 1;
}

.booking-alert-title h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-blue);
    font-family: 'Montserrat', sans-serif;
}

.booking-alert-subtitle {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.booking-alert-badge {
    margin-left: 1rem;
}

.alert-status {
    padding: 0.35rem 0.7rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.alert-status.pending {
    background-color: rgba(211, 204, 118, 0.15);
    color: var(--accent-yellow);
}

.alert-status.confirmed {
    background-color: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.booking-alert-body {
    padding: 1.5rem;
}

.booking-alert-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.booking-alert-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.booking-alert-item i {
    color: var(--primary-blue);
    margin-right: 0.5rem;
    font-size: 1rem;
}

.pending-booking .booking-alert-item i {
    color: var(--accent-yellow);
}

.booking-alert-countdown {
    margin-top: 1rem;
    padding: 0.8rem;
    background-color: rgba(220, 53, 69, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.alert-countdown-label {
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.alert-countdown-label i {
    margin-right: 0.5rem;
}

.alert-countdown-timer {
    background-color: #dc3545;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: center;
}

.booking-alert-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(12, 53, 102, 0.05);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-alert-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
    background-color: var(--primary-blue);
    transition: all 0.3s ease;
    text-decoration: none;
    flex: 1;
    min-width: 180px;
}

.btn-alert-action:hover {
    background-color: #2a67d4;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-alert-action i {
    margin-right: 0.5rem;
}

.btn-alert-action.btn-pay {
    background-color: var(--accent-yellow);
    color: var(--dark-blue);
}

.btn-alert-action.btn-pay:hover {
    background-color: #c8bf5e;
}

.btn-alert-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-blue);
    background-color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    text-decoration: none;
    flex: 1;
    min-width: 180px;
}

.btn-alert-secondary:hover {
    background-color: white;
    color: var(--dark-blue);
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-alert-secondary i {
    margin-left: 0.5rem;
}

@media (max-width: 991px) {
    .booking-alert-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .booking-alert-icon {
        margin-bottom: 0.75rem;
    }
    
    .booking-alert-badge {
        margin-left: 0;
        margin-top: 0.75rem;
        align-self: flex-start;
    }
    
    .booking-alert-details {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .booking-alert-countdown {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .booking-alert-footer {
        flex-direction: column;
    }
    
    .btn-alert-action, .btn-alert-secondary {
        width: 100%;
    }
}

/* Animation for countdown timer */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Mobile responsive styles for hero section */
@media (max-width: 991.98px) {
    .hero-content-left {
        text-align: center;
    }
    
    .hero-title {
        text-align: center;
        font-size: 5rem;
    }
    
    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 8px;
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .search-container {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        justify-content: center;
        margin-top: 2.5rem;
    }
    
    .hero-feature-item {
        padding: 0.4rem 0.9rem;
        font-size: 0.85rem;
    }
    
    .hero-feature-item i {
        font-size: 0.9rem;
        margin-right: 0.5rem;
    }
    
    .hero-feature-item span {
        font-size: 0.85rem;
    }
    
    .hero-steps-mobile {
        margin: 3rem auto;
    }
    
    .hero-step-title {
        font-size: 1.2rem;
    }
    
    .hero-step-desc {
        font-size: 1rem;
    }
}

/* Additional styles for smaller mobile devices */
@media (max-width: 576px) {
    .hero-title {
        font-size: 3.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-feature-item {
        padding: 0.3rem 0.7rem;
        margin-bottom: 0.4rem;
    }
    
    .hero-feature-item i {
        font-size: 0.8rem;
        margin-right: 0.4rem;
    }
    
    .hero-feature-item span {
        font-size: 0.75rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

/* Fix for btn-accent in venue cards */
.venue-card .btn-accent {
    display: block;
    width: 100%;
    text-align: center;
}

/* Hero logo styles */
.hero-logo-right {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 475px;
    height: 475px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.hero-logo-right img {
    max-width: 100%;
    max-height: 100%;
    animation: floatAnimation 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
}



/* Centered economical highlight for features section */
.economical-highlight-centered {
    text-align: center;
    margin: 0 auto 1.5rem;
    max-width: 700px;
    position: relative;
}

.economical-highlight-centered .economical-percentage {
    justify-content: center;
    position: relative;
    display: flex;
}

.economical-highlight-centered .economical-circle {
    width: 150px;
    height: 75px;
    left: 39.5%;
    top: 29%;
    transform: translate(-50%, -50%) rotate(-7deg);
    border: 2px solid var(--dark-blue);
}

.features-inverted {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: -4rem;
}

.features-logo-left {
    order: 1;
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    position: relative;
}

.features-content-right {
    order: 2;
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    z-index: 5;
}

.features-image {
    max-width: 80%;
    height: auto;
    animation: floatAnimation 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
    opacity: 1;
    position: relative;
    z-index: 6;
}

@media (max-width: 991.98px) {
    .hero-logo-right {
        position: relative;
        top: 25px;
        right: 0;
        transform: none;
        width: 420px;
        height: 420px;
        margin: 0 auto -150px;
    }
    
    .economical-highlight-centered {
        margin-bottom: 1rem;
    }
    
    .economical-highlight-centered .economical-circle {
        width: 150px;
        height: 75px;
        left: 39.5%;
        top: 29%;
    }
    
    .hero-feature-item {
        padding: 0.4rem 0.9rem;
        font-size: 0.85rem;
    }
    
    .hero-feature-item i {
        font-size: 0.9rem;
        margin-right: 0.5rem;
    }
    
    .hero-feature-item span {
        font-size: 0.85rem;
    }
    
    .features-inverted {
        flex-direction: column;
    }
    
    .features-logo-left, 
    .features-content-right {
        order: 0;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .features-logo-left {
        margin-bottom: 2rem;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-logo-right {
        width: 320px;
        height: 320px;
        margin: 0 auto -150px;
    }
    
    .economical-highlight-centered .economical-circle {
        width: 120px;
        height: 60px;
        left: 31%;
        top: 28%;
    }
    
    .hero-feature-item {
        padding: 0.3rem 0.7rem;
        margin-bottom: 0.4rem;
    }
    
    .hero-feature-item i {
        font-size: 0.8rem;
        margin-right: 0.4rem;
    }
    
    .hero-feature-item span {
        font-size: 0.75rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

.search-container {
    position: relative;
}
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--light-gray);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    margin-top: 5px;
}
.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
    border-bottom: 1px solid var(--accent-yellow);
}
.search-result-item:last-child {
    border-bottom: none;
}
.search-result-item:hover {
    background-color: var(--sky-blue);
}
.search-result-logo {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    object-fit: contain;
}
.search-result-info {
    flex: 1;
}
.search-result-name {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 3px;
}
.search-result-address {
    font-size: 0.8rem;
    color: #6c757d;
}
/* Ensure the dropdown appears above other elements */
.search-results-dropdown {
    position: absolute;
    z-index: 9999;
}
/* Style for empty results message */
.search-result-empty {
    padding: 15px;
    text-align: center;
    color: #6c757d;
    font-style: italic;
}

/* ====================================
   MINI BOOKING CARDS (Make Booking Page)
   ==================================== */

.venue-bookings-alert {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 15px;
    border-left: 4px solid var(--primary-blue);
}

.mini-booking-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mini-booking-card.pending {
    border-left-color: var(--accent-yellow);
}

.mini-booking-card.confirmed {
    border-left-color: #28a745;
}

.mini-booking-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.mini-booking-status {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mini-booking-card.pending .mini-booking-status {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
}

.mini-booking-card.confirmed .mini-booking-status {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.mini-booking-status i {
    font-size: 1.1rem;
}

.mini-booking-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mini-booking-main {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mini-booking-court {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark-blue);
}

.mini-booking-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mini-booking-badge.badge-pending {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #ffd54f 100%);
    color: var(--dark-blue);
}

.mini-booking-badge.badge-confirmed {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.mini-booking-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
    color: #6c757d;
}

.mini-booking-details span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mini-booking-details i {
    font-size: 0.75rem;
    color: var(--primary-blue);
}

.mini-booking-price {
    font-weight: 700;
    color: var(--dark-blue) !important;
}

.mini-booking-action {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.btn-mini-pay,
.btn-mini-details {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-mini-pay {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #ffd54f 100%);
    color: var(--dark-blue);
    box-shadow: 0 2px 6px rgba(255, 193, 7, 0.3);
}

.btn-mini-pay:hover {
    background: linear-gradient(135deg, #ffd54f 0%, var(--accent-yellow) 100%);
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.btn-mini-details {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e5a8e 100%);
    color: white;
    box-shadow: 0 2px 6px rgba(12, 53, 102, 0.3);
}

.btn-mini-details:hover {
    background: linear-gradient(135deg, #1e5a8e 0%, var(--primary-blue) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(12, 53, 102, 0.4);
}

/* Responsive Design for Mini Booking Cards */
@media (max-width: 768px) {
    .mini-booking-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .mini-booking-status {
        width: 32px;
        height: 32px;
    }
    
    .mini-booking-status i {
        font-size: 1rem;
    }
    
    .mini-booking-main {
        width: 100%;
    }
    
    .mini-booking-details {
        gap: 8px;
        font-size: 0.8rem;
    }
    
    .mini-booking-action {
        width: 100%;
    }
    
    .btn-mini-pay,
    .btn-mini-details {
        width: 100%;
        justify-content: center;
        padding: 10px 14px;
    }
}

@media (max-width: 576px) {
    .venue-bookings-alert {
        padding: 12px;
        gap: 8px;
    }
    
    .mini-booking-card {
        padding: 10px;
    }
    
    .mini-booking-court {
        font-size: 0.9rem;
    }
    
    .mini-booking-badge {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .mini-booking-details {
        font-size: 0.75rem;
        gap: 6px;
    }
}

