/* Services Specific Styles */

.bg-gray {
    background-color: var(--color-gray-light);
}

.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.styled-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.check-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive Utils */
@media (max-width: 768px) {
    .order-mobile-1 { order: 1; }
    .order-mobile-2 { order: 2; }
}

.mt-4 { margin-top: 2rem; }
.p-4 { padding: 2rem; }
.text-left { text-align: left; }

/* Tabbed Component (Professional Quote and Service) */
.tabs-container {
    margin-top: 3rem;
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 2rem;
    overflow-x: auto;
}

.tab-btn {
    padding: 1rem 2rem;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-heading);
    border: none;
    background: none;
    white-space: nowrap;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--color-primary);
}

.tab-btn.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .tab-content.active {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.tab-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-card);
}

.tab-text h3 {
    margin-bottom: 1rem;
}

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

/* Review Slider */
.review-slider {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.review-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.review-text {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.review-author {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-stars {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
