/* Business Detail Page - Subtle Professional Design */

.business-detail-wrapper {
    padding: calc(6rem + 140px) 0 4rem;
    min-height: 100vh;
}

/* Breadcrumb */
.breadcrumb-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.breadcrumb-link:hover {
    color: #D4AF37;
}

/* Business Header Card */
.business-header-card {
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.8), rgba(61, 61, 102, 0.3));
    border-radius: 1rem;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.header-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 1;
}

.business-logo-container {
    flex-shrink: 0;
}

.business-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.logo-placeholder {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(61, 61, 102, 0.2));
    border-radius: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.logo-placeholder i {
    font-size: 2.25rem;
    color: #D4AF37;
}

.business-title-section {
    flex: 1;
}

.business-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: #D4AF37;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.business-location {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
}

.featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    padding: 0.35rem 0.75rem;
    border-radius: 0.4rem;
    font-size: 0.8rem;
    border: 1px solid rgba(212, 175, 55, 0.25);
    font-weight: 600;
}

.featured-tag i {
    font-size: 0.75rem;
}

.header-right {
    flex-shrink: 0;
}

.quick-contact-buttons {
    display: flex;
    gap: 0.75rem;
}

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.85rem 1.25rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    min-width: 85px;
}

.call-btn {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-color: rgba(76, 175, 80, 0.2);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    border-color: #4CAF50;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    border-color: #25D366;
}

.catalogue-btn {
    background: linear-gradient(135deg, #D4AF37, #B8941E);
    border-color: rgba(212, 175, 55, 0.2);
}

.catalogue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    border-color: #D4AF37;
}

.contact-btn i {
    font-size: 1.15rem;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.5rem;
}

/* Content Cards */
.content-card {
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.8), rgba(61, 61, 102, 0.3));
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 1.5rem;
}

.card-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(61, 61, 102, 0.15));
    padding: 1.15rem 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.card-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #D4AF37;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.card-header h2 i {
    font-size: 1.1rem;
}

.card-body {
    padding: 1.5rem;
}

.card-body.no-padding {
    padding: 0;
}

.description-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.98rem;
}

/* Contact List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.contact-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.04);
    border-radius: 0.6rem;
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: all 0.3s ease;
}

.contact-row:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(3px);
}

.contact-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(61, 61, 102, 0.25));
    border-radius: 0.6rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: #D4AF37;
    font-size: 1.1rem;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(18, 140, 126, 0.25));
}

.contact-icon.whatsapp i {
    color: #25D366;
}

.contact-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-text .label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-text .value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
}

.contact-text .value.link {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text .value.link:hover {
    color: #F5D673;
}

/* Catalogue List */
.catalogue-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.catalogue-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.04);
    border-radius: 0.6rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-decoration: none;
    transition: all 0.3s ease;
}

.catalogue-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.catalogue-pdf-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37, #B8941E);
    border-radius: 0.6rem;
    flex-shrink: 0;
}

.catalogue-pdf-icon i {
    color: white;
    font-size: 1.25rem;
}

.catalogue-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.catalogue-title {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.98rem;
}

.catalogue-meta {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
}

.catalogue-download {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 0.45rem;
}

.catalogue-download i {
    color: #D4AF37;
    font-size: 1rem;
}

/* Map Section */
.sticky-card {
    position: sticky;
    top: calc(6rem + 140px + 1.5rem);
}

.map-frame {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

.map-unavailable {
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(61, 61, 102, 0.15);
}

.map-unavailable i {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.25);
}

.map-unavailable p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.9rem;
}

.get-directions-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(66, 133, 244, 0.2);
}

.get-directions-btn:hover {
    background: linear-gradient(135deg, #5A95F5, #45B963);
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .business-detail-wrapper {
        padding: calc(4rem + 100px) 0 2rem;
    }
    
    .business-header-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.25rem;
    }
    
    .header-left {
        flex-direction: column;
        text-align: center;
        width: 100%;
        gap: 1rem;
    }
    
    .business-title {
        font-size: 1.5rem;
    }
    
    .header-right {
        width: 100%;
    }
    
    .quick-contact-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .contact-btn {
        flex: 1;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .card-header {
        padding: 1rem 1.25rem;
    }
}
