/* Location Hero - Enhanced Black & White */
.location-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 5px solid #ffd700;
}

.location-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-pattern(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.02) 10px,
        rgba(255, 255, 255, 0.02) 20px
    );
}

.location-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.location-hero-icon {
    font-size: 5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    animation: bounce-location 2s infinite;
}

@keyframes bounce-location {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.location-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.location-hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    color: #e0e0e0;
}

/* Location Info Section */
.location-info-section {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

.location-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

/* Map Container */
.map-container {
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 3px solid #1a1a1a;
}

.map-header {
    padding: 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border-bottom: 3px solid #ffd700;
}

.map-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
}

.map-header h2 i {
    color: #ffd700;
}

.address-text {
    font-size: 1.1rem;
    color: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.6;
}

.address-text i {
    color: #ffd700;
    margin-top: 0.3rem;
}

/* Map Placeholder */
.map-placeholder {
    padding: 4rem 2rem;
    text-align: center;
    background: #ffffff;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-illustration {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 2rem;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    animation: pulse-pin 2s infinite;
    z-index: 2;
    border: 4px solid #1a1a1a;
}

@keyframes pulse-pin {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.map-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.map-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(26, 26, 26, 0.2);
    border-radius: 50%;
    animation: ripple 3s infinite;
}

.map-circle:nth-child(1) { width: 100px; height: 100px; }
.map-circle:nth-child(2) { width: 150px; height: 150px; animation-delay: 1s; }
.map-circle:nth-child(3) { width: 200px; height: 200px; animation-delay: 2s; }

@keyframes ripple {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.map-coming-soon {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #1a1a1a;
    color: #ffd700;
    padding: 1rem 2.5rem;
    border: 3px solid #ffd700;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-map:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 3px solid #1a1a1a;
}

.action-btn {
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
    border-right: 2px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.action-btn:last-child {
    border-right: none;
}

.action-btn:hover {
    background: #1a1a1a;
    color: #ffd700;
}

.action-btn i {
    font-size: 1.8rem;
    color: #ffd700;
    transition: color 0.3s ease;
}

.action-btn:hover i {
    color: #ffd700;
}

.action-btn span {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: #ffffff;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #1a1a1a;
}

.sidebar-icon {
    width: 60px;
    height: 60px;
    background: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.sidebar-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-transform: uppercase;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 2px solid #f0f0f0;
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-item i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    font-size: 0.75rem;
    color: #999999;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.btn-contact-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #ffd700;
    color: #1a1a1a;
    padding: 1rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    border: 3px solid #ffd700;
    text-transform: uppercase;
}

.btn-contact-full:hover {
    background: #1a1a1a;
    color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Tips Card */
.tips-card {
    background: #1a1a1a;
    color: #ffffff;
}

.tips-card .sidebar-icon {
    background: #ffd700;
}

.tips-card h3 {
    color: #ffd700;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list i {
    color: #ffd700;
    font-size: 1.3rem;
    width: 25px;
}

.tips-list span {
    color: #ffffff;
}

/* Service Times Section */
.service-times-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.section-label {
    display: inline-block;
    background: #ffd700;
    color: #1a1a1a;
    padding: 0.6rem 1.5rem;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-transform: uppercase;
}

.section-description {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 1rem auto 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: #f5f5f5;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 3px solid #e0e0e0;
    position: relative;
}

.service-card.featured {
    border-color: #ffd700;
    background: #ffffff;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #1a1a1a;
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #ffd700;
    color: #1a1a1a;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 3px solid #1a1a1a;
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-transform: uppercase;
}

.service-time {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.service-time i {
    font-size: 1.3rem;
    color: #ffd700;
}

.service-description {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #999999;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: gap 0.3s ease;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.3rem;
}

.service-link:hover {
    gap: 0.8rem;
}

.service-note {
    background: #1a1a1a;
    color: #ffffff;
    border-left: 5px solid #ffd700;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-note i {
    font-size: 2rem;
    color: #ffd700;
    flex-shrink: 0;
}

.service-note p {
    margin: 0;
    color: #ffffff;
    line-height: 1.6;
}

.service-note strong {
    color: #ffd700;
}

/* What to Expect Section */
.expect-section {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.expect-card {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid #e0e0e0;
}

.expect-card:hover {
    background: #1a1a1a;
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.expect-card:hover h3,
.expect-card:hover p {
    color: #ffffff;
}

.expect-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
}

.expect-icon {
    width: 70px;
    height: 70px;
    background: #f5f5f5;
    border: 3px solid #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1a1a1a;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.expect-card:hover .expect-icon {
    background: #ffd700;
    transform: rotate(360deg);
}

.expect-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.expect-card p {
    color: #666666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.expect-cta {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border: 3px solid #1a1a1a;
}

.expect-cta p {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.btn-expect {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #ffd700;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 3px solid #ffd700;
    text-transform: uppercase;
}

.btn-expect:hover {
    background: #1a1a1a;
    color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Virtual Section */
.virtual-section {
    padding: 5rem 2rem;
    background: #1a1a1a;
    border-top: 5px solid #ffd700;
}

.virtual-card {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border: 3px solid #ffd700;
    padding: 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.virtual-icon {
    width: 80px;
    height: 80px;
    background: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center; 
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.virtual-content h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.virtual-content p {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.virtual-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-virtual-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #1a1a1a;
    color: #ffd700;
    padding: 1rem 2rem;
    border: 3px solid #1a1a1a;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-virtual-primary:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.btn-virtual-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: #1a1a1a;
    padding: 1rem 2rem;
    font-weight: 700;
    text-decoration: none;
    border: 3px solid #1a1a1a;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-virtual-secondary:hover {
    background: #1a1a1a;
    color: #ffd700;
    transform: translateY(-3px);
}

.virtual-decoration {
    text-align: center;
}

.virtual-decoration i {
    font-size: 12rem;
    color: #f5f5f5;
}

/* Responsive Design */
@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
    .location-hero {
        padding: 8rem 0 2rem;
    }
    
    .virtual-card {
        grid-template-columns: 1fr;
    }
    
    .virtual-decoration {
        display: none;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .location-hero {
        height: 40vh;
        min-height: 300px;
        padding: 8rem 0 2rem;
    }
    
    .location-hero-icon {
        font-size: 3.5rem;
    }
    
    .map-placeholder {
        padding: 3rem 1.5rem;
        min-height: 300px;
    }
    
    .map-illustration {
        width: 150px;
        height: 150px;
    }
    
    .map-pin {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .action-btn {
        border-right: none;
        border-bottom: 2px solid #e0e0e0;
    }
    
    .action-btn:last-child {
        border-bottom: none;
    }
    
    .expect-grid {
        grid-template-columns: 1fr;
    }
    
    .virtual-card {
        padding: 2rem;
    }
    
    .virtual-buttons {
        flex-direction: column;
    }
    
    .btn-virtual-primary,
    .btn-virtual-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .location-info-section,
    .service-times-section,
    .expect-section,
    .virtual-section {
        padding: 3rem 1rem;
    }
    
    .map-header,
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .expect-cta {
        padding: 1.5rem;
    }

    .location-hero-content h1 {
        font-size: 2rem;
    }

    .location-hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .virtual-content h2 {
        font-size: 1.5rem;
    }
}
