/* Location Hero Section Styles */

.btc-location-hero {
    width: 100%;
    position: relative;
}

.location-hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image/Video */
.hero-background-image,
.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 29, 38, 0.4) 0%, rgba(11, 29, 38, 0.6) 100%);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 40px 0;
    color: #ffffff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Social Proof */
.hero-social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.154);
    width: auto;
    padding: 8px;
    border-radius: 50px;
}

.social-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon {
    display: flex;
    align-items: center;
    width: 18px;
    height: 18px;
}

.social-label {
    white-space: nowrap;
}

/* Booking Form */
.location-hero-form {
    width: 100%;
    max-width: 400px;
    /* Increa   sed slightly for better spacing */
    margin: 0 auto;
}

.hero-booking-form {
    display: flex;
    align-items: center;
    /* Center align instead of flex-end */
    gap: 8px;
    background: #ffffff;
    padding: 4px 8px;
    /* Tighter padding for pill shape */
    border-radius: 12px;
    /* Pill shape */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    flex-wrap: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Subtle border */
}

.form-field {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding-left: 14px;
    /* Indent content from rounding */
    justify-content: center;
}

.form-field label {
    font-size: 0.6rem;
    /* Smaller label "Where to" */
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: 10px;
}

.form-select {
    width: 100%;
    padding: 4px 0;
    /* Remove horizontal padding, handle via container */
    border: none;
    /* Remove border */
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    background: transparent;
    /* Transparent bg */
    color: #555;
    /* Placeholder color like "Choose a location" */
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
    /* Restore minimal arrow if needed, but "Where to" usually implies type/select without box borders. keeping clean */
}

.form-select:focus {
    outline: none;
    box-shadow: none;
}

.form-select:disabled {
    background-color: transparent;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Search Button */
.hero-search-btn {
    width: auto;
    padding: 0 32px;
    /* Wider button */
    height: 50px;
    /* Match form height roughly */
    border-radius: 12px;
    /* Pill shape */
    background: #006CE4;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 108, 228, 0.3);
    font-weight: 700;
    font-size: 1rem;
}

.hero-search-btn:hover:not(:disabled) {
    background: #005bb5;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 108, 228, 0.4);
}

.hero-search-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.hero-search-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-booking-form {
        gap: 8px;
        padding: 12px;
        flex-wrap: nowrap;
    }

    .form-field {
        min-width: 0;
    }

    .form-field label {
        font-size: 0.8rem;
    }

    .form-select {
        font-size: 0.9rem;
        padding: 4px 12px;
        padding-right: 32px;
    }
}

@media (max-width: 768px) {
    .location-hero-section {
        min-height: 80vh;
    }

    .hero-content {
        padding: 250px 20px 100px 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-social-proof {
        margin-bottom: 10px;
        gap: 12px;
        bottom: 30px;
        padding: 0px 20px;
    }

    .social-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .hero-booking-form {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 10px 20px;
    }

    .form-field {
        min-width: 100%;
    }

    .hero-search-btn {
        width: 100%;
        height: 48px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {

    .hero-content {
        padding: 220px 20px 120px 20px;
    }

    .location-hero-section {
        min-height: 100vh;
    }

    .form-field {
        padding-left: 0px;
    }

    .form-select {
        padding: 0px;
    }

    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-booking-form {
        padding: 10px 16px;
    }
}