/* --- Locations Section Styles --- */
.btc-locations-section {
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --primary-blue: #006CE4;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #6b7280;
    --radius-lg: 12px;
    --radius-xl: 50px;
    --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --text-main: #1a1a1a;
    --radius-card: 16px;
    --radius-img: 12px;
    --spacing: 20px;
    --font-family: var(--font-main);
}

/* --- Hero Section --- */
.btc-locations-section .hero {
    position: relative;
    height: 70vh;
    min-height: 550px;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.btc-locations-section .hero-content {
    max-width: 900px;
    z-index: 2;
    color: var(--text-light);
}

.btc-locations-section .hero h1 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: var(--text-light);
}

.btc-locations-section .hero p.subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    color: var(--text-light);
}

/* Search Bar */
.btc-locations-section .search-container {
    background: white;
    padding: 8px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 50px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btc-locations-section .search-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 16px;
    border-right: 1px solid transparent;
}

.btc-locations-section .search-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.btc-locations-section .search-select {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--text-muted);
    width: 100%;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    padding-right: 36px;
}

.btc-locations-section .search-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.btc-locations-section .search-btn:hover {
    background-color: #004494;
}

/* Social Badges */
.btc-locations-section .social-proof {
    display: inline-flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.154);
    width: auto;
    padding: 8px;
    border-radius: 50px;
}

.btc-locations-section .badge {
    background: white;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btc-locations-section .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: var(--text-dark);
}

.btc-locations-section .badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* --- Destinations Section --- */
.btc-locations-section .destinations-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.btc-locations-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.btc-locations-section .destinations-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 600;
}

/* --- Grid/Flex Systems --- */
.btc-locations-section .grid-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.btc-locations-section .grid-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Flex Item Sizing for 3 items per row with 24px gap */
.btc-locations-section .grid-top>a,
.btc-locations-section .grid-bottom>a {
    flex: 0 1 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
}

/* --- Card Styles --- */
.btc-locations-section .card {
    background: var(--card-bg);
    border-radius: var(--radius-card);
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.btc-locations-section .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

/* Image Containers */
.btc-locations-section .card-img-container {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-img);
    position: relative;
}

/* Aspect Ratios */
.btc-locations-section .top-card .card-img-container {
    aspect-ratio: 3 / 4;
    /* Taller images for top row */
}

.btc-locations-section .bottom-card .card-img-container {
    aspect-ratio: 16 / 9;
    /* Wider images for bottom row */
}

.btc-locations-section .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card Footer (Text + Arrow) */
.btc-locations-section .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 4px 4px 4px;
}

.btc-locations-section .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.btc-locations-section .card-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.btc-locations-section .card:hover .card-arrow {
    transform: translateX(4px);
}

.btc-locations-section .card-arrow svg {
    width: 100%;
    height: 100%;
}

/* Bottom card arrows are slightly smaller */
.btc-locations-section .bottom-card .card-arrow {
    width: 18px;
    height: 18px;
}

/* --- Responsive Tweaks --- */
@media (max-width: 1024px) {

    .btc-locations-section .grid-top>a,
    .btc-locations-section .grid-bottom>a {
        flex: 0 1 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .btc-locations-section .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .btc-locations-section {
        margin: 0px;
    }

    .btc-locations-section .grid-top>a,
    .btc-locations-section .grid-bottom>a {
        flex: 0 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .btc-locations-section .hero h1 {
        font-size: 2rem;
    }

    /* Make top cards match bottom cards on mobile */
    .btc-locations-section .top-card .card-img-container {
        aspect-ratio: 16 / 9;
    }

    .btc-locations-section .top-card .card-arrow {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 600px) {
    .btc-locations-section .destinations-section {
        padding: 40px 4px;
    }

    .btc-locations-section .grid-top>a,
    .btc-locations-section .grid-bottom>a {
        flex: 0 1 100%;
        max-width: 100%;
    }

    .btc-locations-section .hero {
        height: auto;
        padding: 60px 20px;
        min-height: 500px;
        padding-top: 100px;
    }

    .btc-locations-section .search-container {
        flex-direction: column;
        gap: 10px;
        border-radius: 12px;
    }

    .btc-locations-section .search-input-group {
        width: 100%;
        padding-left: 0;
    }

    .btc-locations-section .search-btn {
        width: 100%;
        justify-content: center;
    }
}