.main-content {
    position: relative;
    z-index: 10;
    margin-top: 4rem;
}

/* Mobile Header */
.mobile-header {
    background: rgba(10, 14, 26, 0.95);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.back-btn, .favorite-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section - Stacked Images on Mobile */
.hero-wrapper {
    margin: 1rem 0;
}

.hero-image-stack {
    display: grid;
    object-fit: cover;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hero-main-image {
    position: relative;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.hero-thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.hero-thumbnail {
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.hero-thumbnail:hover {
    border-color: var(--cyan-primary);
    transform: scale(1.05);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(34, 197, 94, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Outlet Info Card */
.outlet-info-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(168, 85, 247, 0.12));
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
    margin-bottom: 1rem;
}

.outlet-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--cyan-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.outlet-subtitle {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 36px;
    height: 36px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.info-icon i {
    color: var(--cyan-primary);
    font-size: 1rem;
}

.info-text {
    flex: 1;
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-label {
    color: #9ca3af;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

/* Quick Actions - Mobile Horizontal Scroll */
.quick-actions {
    margin-bottom: 1.5rem;
}

.quick-actions-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
}

.quick-actions-scroll::-webkit-scrollbar {
    display: none;
}

.quick-action-btn {
    flex: 0 0 auto;
    width: 140px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    scroll-snap-align: start;
}

.quick-action-btn:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-3px);
    border-color: var(--cyan-primary);
}

.quick-action-icon {
    width: 48px;
    height: 48px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.quick-action-icon i {
    color: var(--cyan-primary);
    font-size: 1.5rem;
}

.quick-action-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cyan-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all {
    color: var(--cyan-light);
    font-size: 0.875rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Services - Horizontal Scroll Mobile */
.services-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.services-scroll::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 280px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(168, 85, 247, 0.08));
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    scroll-snap-align: start;
    transition: all 0.3s;
}

.service-card:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(168, 85, 247, 0.15));
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.service-icon i {
    color: var(--cyan-primary);
    font-size: 1.75rem;
}

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.service-description {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
}

/* Team - Horizontal Scroll Mobile */
.team-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.team-scroll::-webkit-scrollbar {
    display: none;
}

.team-card {
    flex: 0 0 200px;
    background: rgba(6, 182, 212, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
    scroll-snap-align: start;
    transition: all 0.3s;
}

.team-card:hover {
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.2);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--cyan-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    border: 3px solid rgba(6, 182, 212, 0.5);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.team-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.team-role {
    font-size: 0.8rem;
    color: var(--cyan-light);
    margin-bottom: 0.5rem;
}

.team-experience {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.facility-item {
    background: rgba(6, 182, 212, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(6, 182, 212, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.facility-item:hover {
    background: rgba(6, 182, 212, 0.1);
    transform: translateX(5px);
    border-color: var(--cyan-primary);
}

.facility-icon {
    width: 36px;
    height: 36px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.facility-icon i {
    color: var(--cyan-primary);
    font-size: 1rem;
}

.facility-label {
    font-size: 0.875rem;
    color: white;
    font-weight: 500;
}

/* Hours Card */
.hours-card {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.08), rgba(168, 85, 247, 0.08));
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-row.today {
    background: rgba(6, 182, 212, 0.1);
    padding: 0.875rem 1rem;
    border-radius: 8px;
    margin: 0.25rem 0;
}

.day-name {
    font-weight: 600;
    color: white;
}

.hours-time {
    color: #9ca3af;
    font-size: 0.9rem;
}

.hours-row.today .hours-time {
    color: var(--cyan-primary);
    font-weight: 600;
}

/* Map */
.map-card {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.08), rgba(168, 85, 247, 0.08));
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 1.5rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.map-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--cyan-primary);
}

.directions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.direction-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.direction-icon {
    width: 40px;
    height: 40px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.direction-icon i {
    color: var(--cyan-primary);
    font-size: 1.25rem;
}

.direction-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.direction-content p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
    line-height: 1.5;
}

/* Bottom Action Bar - Mobile Only */
.bottom-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.98);
    border-top: 1px solid rgba(6, 182, 212, 0.3);
    padding: 1rem;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}

.action-btn {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn i {
    font-size: 1.25rem;
    color: var(--cyan-primary);
}

.action-btn span {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.action-btn.primary {
    background: linear-gradient(to right, var(--cyan-primary), #2563eb);
    border-color: transparent;
}

.action-btn.primary i,
.action-btn.primary span {
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

/* Desktop Styles */
@media (min-width: 768px) {
    .main-content {
        padding-bottom: 2rem;
    }

    .hero-image-stack {
        /* grid-template-columns: 2fr 1fr; */
        gap: 1rem;
    }

    .hero-main-image {
        height: 400px;
    }

    .hero-thumbnail-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-thumbnail {
        height: 140px;
    }

    .outlet-info-card {
        padding: 2rem;
    }

    .outlet-title {
        font-size: 2.25rem;
    }

    .quick-actions-scroll {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        overflow-x: visible;
    }

    .quick-action-btn {
        width: auto;
    }

    .services-scroll {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        overflow-x: visible;
    }

    .service-card {
        flex: none;
    }

    .team-scroll {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        overflow-x: visible;
    }

    .team-card {
        flex: none;
    }

    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .map-placeholder {
        height: 400px;
    }

    .directions-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .bottom-action-bar {
        display: none;
    }
}

@media (min-width: 1024px) {
    .services-scroll {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-scroll {
        grid-template-columns: repeat(6, 1fr);
    }
}
@media(max-width: 768px){
    .main-content {
        margin-top: 3rem;
    }
}