/* Google Business Integration Styles */

/* Service Area Grid */
.service-area-info {
    padding: 40px 0;
    text-align: center;
}

.service-area-info h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

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

.area-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.area-item i {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.area-item h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.area-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Google Reviews Integration */
.google-reviews-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.google-business-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 30px;
}

.business-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    color: #ffa500;
    font-size: 1.2rem;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.business-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.info-item {
    text-align: center;
}

.info-item i {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.info-item h4 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Google My Business Buttons */
.gmb-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.gmb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #4285f4;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gmb-btn:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.gmb-btn.review-btn {
    background: #34a853;
}

.gmb-btn.review-btn:hover {
    background: #2d8f47;
    box-shadow: 0 5px 15px rgba(52, 168, 83, 0.3);
}

.gmb-btn.directions-btn {
    background: #ea4335;
}

.gmb-btn.directions-btn:hover {
    background: #d73527;
    box-shadow: 0 5px 15px rgba(234, 67, 53, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .area-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .business-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gmb-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .gmb-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .service-area-info h3 {
        font-size: 1.8rem;
    }
    
    .reviews-header h2 {
        font-size: 2rem;
    }
}

/* Extra Mobile Responsiveness for phones */
@media (max-width: 480px) {
    .area-item {
        padding: 20px 15px;
    }
    
    .google-business-card {
        padding: 20px 15px;
    }
    
    .service-area-info {
        padding: 30px 0;
    }
    
    .service-area-info h3 {
        font-size: 1.5rem;
    }
    
    .reviews-header h2 {
        font-size: 1.8rem;
    }
    
    .info-item h4 {
        font-size: 0.95rem;
    }
    
    .info-item p {
        font-size: 0.85rem;
    }
}
