.travel-provider-single {
    max-width: 768px;
    margin: 0 auto;
    padding: 20px;
}

.provider-header {
    padding-bottom: 20px;
}

.provider-logo-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.provider-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
	border: 3px solid #881337;
}

.provider-logo .logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-title {
    flex: 1;
}

.provider-title h1 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 2.5em;
}

/* Simple Address Styles */
.provider-address-simple {
    color: #666;
    font-size: 1em;
    line-height: 1.5;
}

.address-line {
    margin-bottom: 4px;
	font-size:14px;
	margin-top: 8px;
    line-height: 20px;
}

.address-line:last-child {
    margin-bottom: 0;
}

.provider-about p {
	font-size:16px;
}

.provider-contact {
	margin-bottom: 40px;
}

.operational-hours {
    margin-bottom: 40px;
    padding: 20px;
    background: #192a3d;
    border-radius: 8px;
}

.provider-about h2 {
	display:none;
}
.provider-contact h2 {
	display:none;
}

.provider-gallery h2 {
	display: none;
}

.operational-hours h2{
    color: #f2f5f7;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.contact-details {
    display: grid;
    gap: 10px;
}

.contact-item {
    display: flex;
    gap: 10px;
}

.contact-label {
    font-weight: bold;
    min-width: 80px;
}

.social-media {
    margin-top: 15px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.social-link {
    padding: 8px 15px;
    background: #007cba;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #005a87;
    transform: translateY(-2px);
}

/* Container untuk semua tombol */
.contact-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

/* Style untuk tombol contact */
.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 16px;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact-button:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
    transform: translateY(-2px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Warna khusus untuk setiap platform */
.whatsapp-btn { 
    color: #25D366; 
    border-color: #25D366; 
}
.whatsapp-btn:hover { 
    background-color: #25D366; 
    color: white; 
}

.email-btn { 
    color: #EA4335; 
    border-color: #EA4335; 
}
.email-btn:hover { 
    background-color: #EA4335; 
    color: white; 
}

.facebook { 
    color: #1877F2; 
    border-color: #1877F2; 
}
.facebook:hover { 
    background-color: #1877F2; 
    color: white; 
}

.instagram { 
    color: #E4405F; 
    border-color: #E4405F; 
}
.instagram:hover { 
    background-color: #E4405F; 
    color: white; 
}

.thread { 
    color: #000000; 
    border-color: #000000; 
}
.thread:hover { 
    background-color: #000000; 
    color: white; 
}

.twitter, .x { 
    color: #000000; 
    border-color: #000000; 
}
.twitter:hover, .x:hover { 
    background-color: #000000; 
    color: white; 
}

.tiktok { 
    color: #000000; 
    border-color: #000000; 
}
.tiktok:hover { 
    background-color: #000000; 
    color: white; 
}

.youtube { 
    color: #FF0000; 
    border-color: #FF0000; 
}
.youtube:hover { 
    background-color: #FF0000; 
    color: white; 
}

/* Style untuk teks */
.contact-text {
    font-size: 14px;
    font-weight: 500;
}

.provider-location h2 {
	display:none;
}

/* Responsive design */
@media (max-width: 768px) {
    .contact-buttons-container {
        gap: 8px;
    }
    
    .contact-button {
        padding: 10px 16px;
        font-size: 13px;
    }
}

.hours-table {
    display: grid;
    gap: 10px;
}



/* Responsive Design */


@media (max-width: 480px) {
	.contact-button {
		width: 48%;
    	justify-content: center;
	}
}

/* Loading animation for images */
.product-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Optional: Add overlay effect on hover */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 16px;
}

.product-card:hover::before {
    opacity: 1;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    background: white;
    border-radius: 4px;
	flex-direction: row;
}

.day {
    font-weight: bold;
}

.hour-row.today {
    background: #00a6f4;
    color: #f2f5f7;
}

span.product-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.product-row {
	column-gap:16px;
	border-left: none;
}

.product-price {
    font-weight: bold;
    color: #881337;
}

/* Map Styles */
.map-container {
	margin: 10px -15px 0;
}

.provider-map {
    height: 400px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: #f5f5f5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Social media platform specific colors */
.social-link.facebook { background: #3b5998; }
.social-link.instagram { background: #e4405f; }
.social-link.thread { background: #000000; }
.social-link.twitter { background: #1da1f2; }
.social-link.tiktok { background: #000000; }
.social-link.youtube { background: #ff0000; }

/* Responsive design */
@media (max-width: 768px) {
    .travel-provider-single {
        padding: 15px;
    }
    
    .provider-logo-title {
        text-align: left;
        gap: 15px;
    }
    
    .provider-title h1 {
        font-size: 2em;
    }
    
    .hour-row {
        gap: 5px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .contact-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-label {
        min-width: auto;
    }
    
    .provider-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .provider-title h1 {
        font-size: 1.5em;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        aspect-ratio: 4 / 5;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .provider-map {
        height: 250px;
    }
}