/* ============================================
   SHAMS AL BATOOL - COMPANY PAGE STYLES
   ============================================ */

/* Additional styles specific to Shams Al Batool */
/* Use wcc-styles.css as base, these are additional/override styles */

/* Service Division Headers */
.service-division-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.service-division-header h3 {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-division-header i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

/* Offers Section */
.offers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.offers-banner {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--accent-color);
}

.offers-banner h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.offers-banner h2 i {
    color: var(--accent-color);
    font-size: 2.5rem;
}

.offers-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offers-list li {
    font-size: 1.2rem;
    color: #334155;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.offers-list i {
    color: #10b981;
    font-size: 1.3rem;
}

.warranty-badge {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
    animation: pulse 2s infinite;
}

.warranty-number {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.warranty-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(37, 99, 235, 0.4);
    }
}

/* Clients List Style */
.clients-list {
    margin-top: 50px;
}

.client-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-left: 4px solid var(--accent-color);
}

.client-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    min-width: 30px;
}

.client-item span {
    color: #334155;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-tab {
    background: white;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-tab:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.gallery-tab.active {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-color: var(--accent-color);
}

/* Service Cards - Enhanced for Kitchen/Glass */
.services-section .service-card {
    border-left: 4px solid transparent;
    transition: all 0.4s ease;
}

.services-section .service-card:hover {
    border-left-color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .offers-banner {
        padding: 40px 30px;
    }

    .offers-banner h2 {
        font-size: 1.8rem;
    }

    .warranty-badge {
        width: 150px;
        height: 150px;
        margin-top: 30px;
    }

    .warranty-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .service-division-header h3 {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .offers-list li {
        font-size: 1rem;
    }

    .client-item {
        padding: 15px;
    }

    .client-item i {
        font-size: 1.5rem;
    }

    .gallery-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .gallery-tab {
        width: 100%;
        text-align: center;
    }
}