/* Logo Image Styles */
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* FAQ List Items */
.faq-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-list-items li {
    padding: 10px 0;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.faq-list-items i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="0.5"/></svg>');
    background-size: 200px 200px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--yellow), var(--dark-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 2.5rem;
    color: var(--black);
}

.stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light-gray);
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: var(--light-gray);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 82, 163, 0.1), transparent);
    transition: left 0.5s ease;
}

.why-card:hover::before {
    left: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-number {
    font-family: 'Rajdhani', sans-serif;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 82, 163, 0.1);
    line-height: 1;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.why-card p {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--white);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--yellow), var(--dark-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
}

.step-icon i {
    font-size: 2rem;
    color: var(--white);
}

.process-step h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.process-step p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-arrow {
    color: var(--primary-blue);
    font-size: 2rem;
}

.process-arrow i {
    animation: slideRight 2s ease-in-out infinite;
}

@keyframes slideRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--light-gray);
}

.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin: 0;
}

/* Working Hours Section */
.working-hours {
    padding: 100px 0;
    background: var(--white);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hours-info h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.hours-list {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 600;
    color: var(--black);
}

.hours-item .time {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.emergency-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    padding: 25px;
    border-radius: 12px;
    color: var(--white);
}

.emergency-contact i {
    font-size: 3rem;
    color: var(--yellow);
}

.emergency-contact h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.emergency-contact a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow);
    text-decoration: none;
}

.hours-image {
    width: 100%;
    height: 450px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--dark-gray), var(--black));
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 30px;
}

.map-placeholder i {
    font-size: 5rem;
    color: var(--yellow);
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Responsive Updates */
@media (max-width: 968px) {
    .process-timeline {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    overflow: hidden;
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: var(--white);
}

.testimonials .section-title::after {
    background: linear-gradient(90deg, var(--yellow), var(--white));
}

.testimonials-slider {
    margin-top: 60px;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: slide 30s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: 400px;
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: var(--yellow);
    font-size: 1.2rem;
    margin-right: 5px;
}

.testimonial-text {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.8rem;
    color: var(--white);
}

.author-info h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 3px;
}

.author-info span {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

/* Partner Brands Section */
.partner-brands {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.brands-slider {
    margin-top: 60px;
    overflow: hidden;
}

.brands-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: brandSlide 40s linear infinite;
}

@keyframes brandSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-item {
    min-width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: scale(1.1);
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.video-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--dark-gray), var(--black));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 40px;
}

.video-placeholder i {
    font-size: 5rem;
    color: var(--yellow);
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder i:hover {
    transform: scale(1.1);
    color: var(--dark-yellow);
}

.video-placeholder p {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.video-placeholder small {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 5px 20px rgba(0, 82, 163, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 82, 163, 0.5);
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 2.5rem;
    }

    .why-number {
        font-size: 3rem;
    }

    .testimonial-card {
        min-width: 300px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
        bottom: 20px;
        right: 20px;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 85px;
        right: 20px;
    }
}