/* Main CSS for Ser Service Widgets */

/* Root Variables */
:root {
    --ser-primary: #007bff;
    --ser-dark: #333;
    --ser-light: #f9f9f9;
    --ser-white: #ffffff;
    --ser-spacing: 20px;
}

/* Service Banner */
.ser-service-banner {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    color: var(--ser-white);
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
}

.ser-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.ser-banner-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--ser-spacing);
}

.ser-banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-out;
}

.ser-banner-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.ser-banner-cta {
    display: inline-block;
    padding: 15px 35px;
    background: var(--ser-primary);
    color: var(--ser-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.ser-banner-cta:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* FAQ Accordion */
.ser-service-faq {
    margin: 40px 0;
}

.ser-faq-item {
    background: var(--ser-white);
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.ser-faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.ser-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: #fdfdfd;
}

.ser-faq-question span {
    font-weight: 600;
    font-size: 1.1rem;
}

.ser-faq-question i {
    transition: transform 0.3s ease;
}

.ser-faq-item.active .ser-faq-question i {
    transform: rotate(180deg);
}

.ser-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--ser-white);
    line-height: 1.6;
}

.ser-faq-item.active .ser-faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* WhatsApp Floating Icon */
.ser-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.ser-whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ser-banner-title { font-size: 2rem; }
    .ser-banner-subtitle { font-size: 1rem; }
}
/* Ser Content & Image Widget */
.ser-content-image-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
    flex-wrap: wrap;
}

.ser-content-image-wrapper.ser-flex-reverse {
    flex-direction: row-reverse;
}

.ser-content-text-side, 
.ser-content-image-side {
    flex: 1;
    min-width: 300px;
}

.ser-content-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--ser-primary);
}

.ser-content-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--ser-dark);
    margin-bottom: 25px;
}

.ser-content-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

.ser-content-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--ser-primary);
    color: var(--ser-white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

.ser-content-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
    color: var(--ser-white);
}

.ser-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.ser-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.ser-image-container:hover img {
    transform: scale(1.05);
}

.ser-image-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--ser-primary);
    opacity: 0.05;
    border-radius: 50%;
    z-index: -1;
}

/* Ser Premium Info Box Widget */
.ser-info-box-item {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.ser-info-box-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: var(--ser-primary);
}

.ser-info-icon-bg {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.ser-info-box-item:hover .ser-info-icon-bg {
    background: var(--ser-primary);
    transform: rotate(10deg);
}

.ser-info-icon {
    font-size: 32px;
    color: var(--ser-primary);
    transition: all 0.4s ease;
}

.ser-info-box-item:hover .ser-info-icon {
    color: #fff;
}

.ser-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ser-dark);
    margin-bottom: 15px;
}

.ser-info-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #777;
    margin-bottom: 25px;
}

.ser-info-link {
    font-weight: 700;
    color: var(--ser-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.ser-info-link:hover {
    gap: 15px;
    color: var(--ser-primary);
}

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

.ser-content-text-side > * {
    animation: fadeIn 0.8s ease backwards;
}

.ser-content-text-side > *:nth-child(2) { animation-delay: 0.2s; }
.ser-content-text-side > *:nth-child(3) { animation-delay: 0.4s; }
.ser-content-text-side > *:nth-child(4) { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 991px) {
    .ser-content-image-wrapper { gap: 40px; }
    .ser-content-title { font-size: 2.2rem; }
}

@media (max-width: 767px) {
    .ser-content-image-wrapper { padding: 40px 0; text-align: center; }
    .ser-content-image-wrapper.ser-flex-reverse { flex-direction: column; }
    .ser-info-box-item { padding: 35px 25px; }
}

/* Ser Service Cards Widget */
.ser-service-cards-wrapper {
    padding: 40px 0;
}

.ser-section-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

.ser-header-left .ser-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #333;
    margin: 0 0 10px;
}

.ser-header-left .ser-section-subtitle {
    font-size: 1.1rem;
    color: #777;
    margin: 0;
}

.ser-header-explore {
    font-weight: 700;
    color: var(--ser-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.ser-header-explore:hover {
    gap: 15px;
}

.ser-service-cards-grid {
    display: grid;
    gap: 30px;
}

.ser-service-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.ser-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.ser-card-image {
    width: 100%;
    padding: 15px;
}

.ser-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
}

.ser-card-content {
    padding: 0 15px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.ser-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 10px 0 15px;
    color: #004daa;
    line-height: 1.2;
}

.ser-card-features {
    margin-bottom: 25px;
    flex-grow: 1;
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.ser-card-features li {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 6px;
    line-height: 1.4;
    display: block;
}

.ser-card-features li:last-child {
    margin-bottom: 0;
}

.ser-card-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid #f5f5f5;
}

.ser-btn {
    padding: 8px 10px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
    border: 1px solid #ddd;
    color: #222;
}

.ser-btn i {
    font-size: 1rem;
}

.ser-btn:hover {
    border-color: #999;
    background: #fcfcfc;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.ser-btn-apply i {
    color: #25d366;
}

.ser-btn-explore i {
    font-size: 0.9rem;
    color: #444;
}

@media (max-width: 991px) {
    .ser-section-header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .ser-header-left .ser-section-title {
        font-size: 1.8rem;
    }
    .ser-card-image img {
        height: 200px;
    }
    .ser-card-title {
        font-size: 1.4rem;
    }
    .ser-card-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
