/* Enhanced Find Us Section */
.find-us-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.find-us-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,0,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.find-us-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.find-us-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.find-us-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.find-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Enhanced Map Container */
.map-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

.map-wrapper {
    position: relative;
}

.map-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-placeholder::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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="20" cy="30" r="1" fill="rgba(255,255,255,0.2)"/><circle cx="80" cy="70" r="1.5" fill="rgba(255,255,255,0.25)"/><circle cx="30" cy="80" r="1" fill="rgba(255,255,255,0.2)"/><circle cx="70" cy="20" r="1" fill="rgba(255,255,255,0.2)"/></svg>');
    animation: float 6s ease-in-out infinite;
}

.map-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.map-pin {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.pin-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    animation: bounce 2s ease-in-out infinite;
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.map-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.map-info p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.map-actions {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.map-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.map-btn.primary {
    background: #3498db;
    color: white;
}

.map-btn.primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.map-btn.secondary {
    background: transparent;
    color: #2c3e50;
    border-color: #dee2e6;
}

.map-btn.secondary:hover {
    background: #f8f9fa;
    border-color: #3498db;
    color: #3498db;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Location Details */
.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.location-header h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 0;
}

.location-info p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.location-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.feature-icon {
    font-size: 1.1rem;
}

.hours-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
}

.hours-row:last-of-type {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #2c3e50;
}

.time {
    color: #6c757d;
}

.hours-note {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.1) 100%);
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.hours-note p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

/* Enhanced FAQ Section */
.enhanced-faq-section {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.faq-categories {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-tab {
    padding: 1rem 2rem;
    border: 2px solid #dee2e6;
    background: white;
    color: #6c757d;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.faq-tab:hover {
    border-color: #3498db;
    color: #3498db;
    transform: translateY(-2px);
}

.faq-tab.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.faq-content {
    position: relative;
}

.faq-category {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.faq-category.active {
    display: block;
}

.faq-item {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.faq-item.open {
    border-color: #3498db;
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(52, 152, 219, 0.02);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #3498db;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
}

.faq-item.open .faq-toggle {
    background: #3498db;
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(52, 152, 219, 0.02);
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 1px solid #dee2e6;
}

.faq-cta h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-cta p {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.faq-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .find-us-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .find-us-header h2,
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-tab {
        width: 100%;
        max-width: 300px;
    }
    
    .location-features {
        grid-template-columns: 1fr;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-cta-buttons .btn-primary,
    .faq-cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .find-us-section,
    .enhanced-faq-section {
        padding: 3rem 0;
    }
    
    .map-placeholder {
        height: 250px;
    }
    
    .location-card {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1rem !important;
    }
}

/* Enhanced Contact Hero Section - matches homepage theme */
.contact-hero.enhanced-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0 3rem 0;
    background: none;
    overflow: hidden;
    z-index: 1;
}
.contact-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.contact-hero-gradient {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, #667eea 100%) !important;
    opacity: 1;
    z-index: 1;
}
.contact-hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.contact-hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.08);
    animation: contact-particle-float 8s infinite linear;
}
.contact-hero-particle:nth-child(1) {
    width: 80px; height: 80px; left: 10%; top: 20%; animation-delay: 0s;
}
.contact-hero-particle:nth-child(2) {
    width: 50px; height: 50px; left: 80%; top: 30%; animation-delay: 2s;
}
.contact-hero-particle:nth-child(3) {
    width: 60px; height: 60px; left: 30%; top: 70%; animation-delay: 4s;
}
.contact-hero-particle:nth-child(4) {
    width: 40px; height: 40px; left: 60%; top: 80%; animation-delay: 6s;
}
@keyframes contact-particle-float {
    0% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-40px) scale(1.1); opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: 0.7; }
}
.contact-hero-grid-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 3;
    pointer-events: none;
}
.contact-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.contact-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.10);
    background: linear-gradient(90deg, var(--light) 30%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.contact-hero-subtitle {
    font-size: 1.4rem;
    color: #e0f7fa;
    margin-bottom: 2.2rem;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.contact-hero-cta.btn {
    font-size: 1.15rem;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    background: var(--primary);
    color: var(--light);
    transition: background 0.2s, box-shadow 0.2s;
    margin-top: 0.5rem;
}
.contact-hero-cta.btn:hover {
    background: var(--accent);
    color: var(--light);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
@media (max-width: 900px) {
    .contact-hero-title { font-size: 2.2rem; }
    .contact-hero-subtitle { font-size: 1.1rem; }
    .contact-hero-content { padding: 2rem 0; }
}
@media (max-width: 600px) {
    .contact-hero.enhanced-hero { padding: 2.5rem 0 1.5rem 0; }
    .contact-hero-title { font-size: 1.5rem; }
    .contact-hero-subtitle { font-size: 1rem; }
    .contact-hero-cta.btn { font-size: 1rem; padding: 0.7rem 1.5rem; }
} 