/**
 * Where We Are Page Styles
 * Version: 1.0.0
 */

/* ==========================================================================
   VARIABLES
   ========================================================================== */
:root {
    --where-primary: #FF914D;
    --where-secondary: #1746FF;
    --where-text: #2d3436;
    --where-text-light: #636e72;
    --where-border: #e0e0e0;
    --where-bg: #ffffff;
    --where-bg-light: #f8f9fa;
}

/* ==========================================================================
   QUICK NAVIGATION
   ========================================================================== */
.location-quick-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: -40px 0 60px;
    position: relative;
    z-index: 2;
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 20px;
    background: white;
    border: 2px solid var(--where-border);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.quick-nav-item:hover {
    transform: translateY(-5px);
    border-color: var(--where-primary);
    box-shadow: 0 8px 20px rgba(255, 145, 77, 0.2);
}

.quick-nav-item .nav-icon {
    font-size: 2.5rem;
}

.quick-nav-item .nav-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--where-text);
    text-align: center;
    line-height: 1.3;
}

/* ==========================================================================
   LOCATIONS CONTENT
   ========================================================================== */
.locations-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.location-block {
    scroll-margin-top: 120px;
    background: white;
    border: 1px solid var(--where-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--where-primary);
}

.location-header .location-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.location-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--where-text);
    margin: 0;
    line-height: 1.3;
}

/* ==========================================================================
   LOCATION DESCRIPTION
   ========================================================================== */
.location-description {
    margin-bottom: 30px;
}

.location-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--where-text-light);
    margin: 0 0 20px;
}

.location-description p:last-child {
    margin-bottom: 0;
}

.location-description strong {
    color: var(--where-text);
    font-weight: 700;
}

/* Info Note Box */
.info-note {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: #e3f2fd;
    border-left: 4px solid var(--where-secondary);
    border-radius: 8px;
    margin-top: 20px;
}

.info-note svg {
    color: var(--where-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-note p {
    margin: 0;
    font-size: 1rem;
    color: var(--where-text);
}

/* Terminals List */
.terminals-list {
    margin-top: 30px;
    padding: 25px;
    background: var(--where-bg-light);
    border-radius: 12px;
    border: 1px solid var(--where-border);
}

.terminals-list h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--where-text);
    margin: 0 0 16px;
}

.terminals-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.terminals-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--where-text-light);
}

.terminals-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--where-primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.terminals-list strong {
    color: var(--where-text);
}

/* ==========================================================================
   LOCATION MEDIA
   ========================================================================== */
.location-media {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--where-secondary);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.video-link:hover {
    background: #0d3ad6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 70, 255, 0.3);
}

.video-link svg {
    width: 20px;
    height: 20px;
}

.location-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.location-images img,
.location-image-single img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.location-images img:hover,
.location-image-single img:hover {
    transform: scale(1.02);
}

.location-image-single {
    max-width: 800px;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.where-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--where-primary) 0%, #ff7a2e 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.where-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.where-cta-section .cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.where-cta-section .cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.2;
}

.where-cta-section .cta-subtitle {
    font-size: 1.3rem;
    margin: 0 0 40px;
    opacity: 0.95;
}

.where-cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.where-cta-section .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.where-cta-section .cta-btn-primary {
    background: white;
    color: var(--where-primary);
    border-color: white;
}

.where-cta-section .cta-btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.where-cta-section .cta-btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.where-cta-section .cta-btn-secondary:hover {
    background: white;
    color: var(--where-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.where-cta-section .cta-text,
.where-cta-section .cta-price {
    display: inline;
}

.where-cta-section .cta-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.where-cta-section .cta-btn:hover .cta-icon {
    transform: translateX(4px);
}

/* ==========================================================================
   RESPONSIVE - Tablet
   ========================================================================== */
@media (max-width: 992px) {
    .location-quick-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .location-block {
        padding: 32px;
    }

    .location-header h2 {
        font-size: 1.6rem;
    }

    .location-images {
        grid-template-columns: 1fr;
    }

    .where-cta-section .cta-title {
        font-size: 2.3rem;
    }
}

/* ==========================================================================
   RESPONSIVE - Mobile
   ========================================================================== */
@media (max-width: 768px) {
    .location-quick-nav {
        margin: -30px 0 40px;
        gap: 12px;
    }

    .quick-nav-item {
        padding: 20px 16px;
    }

    .quick-nav-item .nav-icon {
        font-size: 2rem;
    }

    .quick-nav-item .nav-text {
        font-size: 0.9rem;
    }

    .locations-content {
        gap: 40px;
    }

    .location-block {
        padding: 28px 24px;
        border-radius: 16px;
    }

    .location-header {
        gap: 12px;
        margin-bottom: 24px;
    }

    .location-header .location-icon {
        font-size: 2rem;
    }

    .location-header h2 {
        font-size: 1.4rem;
    }

    .location-description p {
        font-size: 1rem;
    }

    .terminals-list {
        padding: 20px;
    }

    .location-images {
        gap: 16px;
    }

    .where-cta-section {
        padding: 70px 20px;
    }

    .where-cta-section .cta-title {
        font-size: 1.9rem;
    }

    .where-cta-section .cta-subtitle {
        font-size: 1.1rem;
    }

    .where-cta-section .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .where-cta-section .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 1rem;
    }
}

/* ==========================================================================
   RESPONSIVE - Small Mobile
   ========================================================================== */
@media (max-width: 480px) {
    .location-quick-nav {
        grid-template-columns: 1fr;
    }

    .location-block {
        padding: 24px 20px;
    }

    .location-header h2 {
        font-size: 1.25rem;
    }

    .location-images {
        grid-template-columns: 1fr;
    }

    .video-link {
        width: 100%;
        justify-content: center;
    }

    .where-cta-section .cta-title {
        font-size: 1.7rem;
    }

    .where-cta-section .cta-subtitle {
        font-size: 1rem;
    }
}
