/* ========================================
   MODERN PICKUP LOCATIONS PAGE
   Living Holistic Reko Houston TX
   ======================================== */

/* Main Content Container */
main {
    padding: var(--space-8) var(--space-6);
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Intro Section */
.intro-section {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: var(--space-20) auto;
    gap: var(--space-12);
    padding: 0 var(--space-6);
}

.intro-section img {
    width: 45%;
    min-width: 300px;
    border-radius: var(--rounded-3xl);
    box-shadow: var(--shadow-2xl);
    transition: transform var(--transition-normal);
}

.intro-section img:hover {
    transform: scale(1.02);
}

.intro-text {
    width: 50%;
    min-width: 300px;
}

.intro-text h2 {
    font-size: var(--text-4xl);
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: var(--space-6);
    line-height: 1.2;
}

.intro-text p {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-6);
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: var(--space-24) var(--space-6);
    margin: var(--space-16) 0;
    border-radius: var(--rounded-3xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(34,197,94,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.mission-section h2 {
    text-align: center;
    font-size: var(--text-5xl);
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: var(--space-12);
    position: relative;
    z-index: 2;
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mission-content > p {
    font-size: var(--text-xl);
    line-height: 1.7;
    text-align: center;
    margin-bottom: var(--space-12);
    color: var(--gray-700);
    font-weight: 500;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.value-item {
    background: var(--white);
    padding: var(--space-10);
    border-radius: var(--rounded-2xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-green-light);
}

.value-item h3 {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-green-light);
    border-radius: var(--rounded-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    flex-shrink: 0;
}

.value-item p {
    font-size: var(--text-lg);
    line-height: 1.6;
    color: var(--gray-600);
}

/* Coming Soon Section */
.coming-soon-section {
    padding: var(--space-24) var(--space-6);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.coming-soon-section h2 {
    font-size: var(--text-4xl);
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: var(--space-12);
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-content > p {
    font-size: var(--text-xl);
    line-height: 1.7;
    margin-bottom: var(--space-10);
    color: var(--gray-700);
}

.city-list {
    list-style: none;
    padding: 0;
    margin: var(--space-12) 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.city-list li {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    padding: var(--space-6) var(--space-8);
    border-radius: var(--rounded-xl);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--gray-800);
    transition: all var(--transition-fast);
    border: 2px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.city-list li::before {
    content: '📍';
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    font-size: var(--text-xl);
    opacity: 0.6;
}

.city-list li:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green-light);
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--white) 100%);
}

.why-reko {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    padding: var(--space-12);
    border-radius: var(--rounded-2xl);
    margin-top: var(--space-16);
    text-align: left;
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.why-reko::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(60px, -60px);
}

.why-reko h3 {
    font-size: var(--text-3xl);
    font-weight: 800;
    margin-bottom: var(--space-8);
    text-align: center;
    position: relative;
    z-index: 2;
}

.why-reko ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    position: relative;
    z-index: 2;
}

.why-reko li {
    font-size: var(--text-lg);
    line-height: 1.6;
    padding: var(--space-4) 0;
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}

.why-reko li::before {
    content: '✨';
    font-size: var(--text-xl);
    flex-shrink: 0;
    margin-top: var(--space-1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-yellow-dark) 100%);
    color: var(--gray-900);
    padding: var(--space-20) var(--space-6);
    text-align: center;
    border-radius: var(--rounded-3xl);
    margin: var(--space-16) 0;
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkles" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="40" cy="25" r="1" fill="rgba(255,255,255,0.3)"/><circle cx="25" cy="40" r="1.5" fill="rgba(255,255,255,0.3)"/></pattern></defs><rect width="100" height="100" fill="url(%23sparkles)"/></svg>');
    opacity: 0.5;
}

.cta-section h2 {
    font-size: var(--text-4xl);
    font-weight: 900;
    margin-bottom: var(--space-8);
    position: relative;
    z-index: 2;
}

.cta-section > p {
    font-size: var(--text-xl);
    margin-bottom: var(--space-10);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-buttons .btn-highlight,
.cta-buttons .btn-outline {
    padding: var(--space-4) var(--space-10);
    font-size: var(--text-lg);
    font-weight: 700;
    border-radius: var(--rounded-xl);
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    min-width: 200px;
    justify-content: center;
}

.cta-buttons .btn-highlight {
    background: var(--gray-900);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.cta-buttons .btn-highlight:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
    background: var(--gray-800);
}

.cta-buttons .btn-outline {
    color: var(--gray-900);
    border: 3px solid var(--gray-900);
    background: transparent;
}

.cta-buttons .btn-outline:hover {
    background: var(--gray-900);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.membership-note {
    font-size: var(--text-base);
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

/* Locations Grid (for future use) */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    max-width: 1200px;
    margin: var(--space-20) auto;
    padding: 0 var(--space-6);
}

.location-card {
    display: block;
    background: var(--white);
    border-radius: var(--rounded-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    position: relative;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(34, 197, 94, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-green-light);
}

.location-card:hover::before {
    opacity: 1;
}

.location-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.location-card:hover img {
    transform: scale(1.05);
}

.location-card-content {
    padding: var(--space-6);
    position: relative;
    z-index: 2;
}

.location-card h3 {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.location-card p {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.6;
}

/* Google Map Section */
.map-section {
    text-align: center;
    margin: var(--space-20) auto;
    max-width: 1200px;
    padding: 0 var(--space-6);
}

.map-section h2 {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
}

.map-section p {
    font-size: var(--text-lg);
    color: var(--gray-700);
    margin-bottom: var(--space-8);
}

.map-container {
    width: 100%;
    border-radius: var(--rounded-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 16/9;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .intro-section {
        gap: var(--space-8);
        margin: var(--space-16) auto;
    }
    
    .mission-values {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-6);
    }
    
    .why-reko ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    main {
        padding: var(--space-6) var(--space-4);
    }
    
    .intro-section {
        flex-direction: column;
        text-align: center;
        gap: var(--space-8);
        margin: var(--space-12) auto;
    }
    
    .intro-section img,
    .intro-text {
        width: 100%;
    }
    
    .intro-text h2 {
        font-size: var(--text-3xl);
    }
    
    .intro-text p {
        font-size: var(--text-base);
    }
    
    .mission-section {
        padding: var(--space-16) var(--space-4);
        margin: var(--space-12) 0;
        border-radius: var(--rounded-2xl);
    }
    
    .mission-section h2 {
        font-size: var(--text-3xl);
    }
    
    .mission-content > p {
        font-size: var(--text-lg);
    }
    
    .mission-values {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .value-item {
        padding: var(--space-8);
    }
    
    .value-item h3 {
        font-size: var(--text-xl);
        flex-direction: column;
        text-align: center;
        gap: var(--space-3);
    }
    
    .coming-soon-section {
        padding: var(--space-16) var(--space-4);
    }
    
    .coming-soon-section h2 {
        font-size: var(--text-3xl);
    }
    
    .coming-soon-content > p {
        font-size: var(--text-lg);
    }
    
    .city-list {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .why-reko {
        padding: var(--space-8);
        margin-top: var(--space-12);
    }
    
    .why-reko h3 {
        font-size: var(--text-2xl);
    }
    
    .cta-section {
        padding: var(--space-16) var(--space-4);
        margin: var(--space-12) 0;
        border-radius: var(--rounded-2xl);
    }
    
    .cta-section h2 {
        font-size: var(--text-3xl);
    }
    
    .cta-section > p {
        font-size: var(--text-lg);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-4);
    }
    
    .cta-buttons .btn-highlight,
    .cta-buttons .btn-outline {
        width: 100%;
        max-width: 300px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        margin: var(--space-12) auto;
        padding: 0 var(--space-4);
    }
}

@media (max-width: 480px) {
    .intro-text h2 {
        font-size: var(--text-2xl);
    }
    
    .mission-section {
        padding: var(--space-12) var(--space-3);
    }
    
    .mission-section h2 {
        font-size: var(--text-2xl);
    }
    
    .value-item {
        padding: var(--space-6);
    }
    
    .value-item h3 {
        font-size: var(--text-lg);
    }
    
    .value-item p {
        font-size: var(--text-base);
    }
    
    .coming-soon-section {
        padding: var(--space-12) var(--space-3);
    }
    
    .coming-soon-section h2 {
        font-size: var(--text-2xl);
    }
    
    .city-list li {
        padding: var(--space-4) var(--space-6);
        font-size: var(--text-base);
    }
    
    .why-reko {
        padding: var(--space-6);
    }
    
    .why-reko h3 {
        font-size: var(--text-xl);
    }
    
    .why-reko li {
        font-size: var(--text-base);
    }
    
    .cta-section {
        padding: var(--space-12) var(--space-3);
    }
    
    .cta-section h2 {
        font-size: var(--text-2xl);
    }
    
    .cta-buttons .btn-highlight,
    .cta-buttons .btn-outline {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-base);
    }
}

/* Accessibility & Performance */
@media (prefers-reduced-motion: reduce) {
    .intro-section img,
    .value-item,
    .city-list li,
    .location-card,
    .cta-buttons .btn-highlight,
    .cta-buttons .btn-outline {
        transition: none;
    }
}

@media (prefers-contrast: high) {
    .value-item,
    .city-list li,
    .location-card {
        border: 3px solid var(--gray-900);
    }
}

@media print {
    .cta-section,
    .cta-buttons {
        display: none;
    }
    
    .mission-section,
    .why-reko {
        background: var(--white);
        color: var(--gray-900);
    }
    
    .value-item,
    .city-list li {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid var(--gray-300);
    }
}
