/* Preview-specific styles for enhanced service details */
.service-details-section {
    padding: 80px 0;
    background: #0a0a0a;
    color: #fff;
    display: none; /* Hidden by default, shown when service is selected */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-details-section.active {
    display: block;
    animation: fadeIn 0.8s ease-out;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.details-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.details-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 32px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.05);
}

.feature-icon {
    font-size: 1.5rem;
    color: #007bff;
}

.details-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.details-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.details-image-wrapper:hover img {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* New Premium Footer Styles */
.footer-redesign {
    background: #fdfdfd;
    color: #333;
    padding: 60px 0 0 0;
    border-top: 1px solid #eee;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-heading {
    color: #d32f2f; /* Premium Red */
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.footer-content-list {
    list-style: none;
    padding: 0;
}

.footer-content-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 600;
    color: #444;
}

.footer-content-list a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content-list a:hover {
    color: #d32f2f;
}

.footer-icon-large {
    font-size: 1.8rem;
    color: #444;
}

.footer-bottom-redesign {
    background: #222;
    color: #888;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
    .details-content h2 {
        font-size: 2rem;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Google Reviews Carousel Styles */
.reviews-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.reviews-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.review-bubble {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    text-align: left;
}

/* The Speech Bubble Tail */
.review-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 40px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    transform: rotate(45deg);
}

.review-quote-icon {
    font-size: 4rem;
    color: #eee;
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: serif;
    line-height: 1;
}

.review-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.google-logo-static {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    opacity: 0.8;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-left: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eee;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 1px;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.nav-btn {
    background: #eee;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: #888;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #ddd;
    color: #333;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #888;
    border-color: #888;
}

/* Areas We Serve Section */
.areas-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.areas-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.map-container iframe {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.area-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

.area-list li {
    font-size: 1.1rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.pin-icon {
    color: #d32f2f;
    font-size: 1.2rem;
}

@media (max-width: 968px) {
    .areas-wrapper {
        grid-template-columns: 1fr;
    }
    
    .area-list {
        grid-template-columns: 1fr;
    }
}
