/* Index Page Specific Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100vw; /* Prevent horizontal overflow */
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: -80px;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--neutral-white);
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    margin-top: 190px;
    width: 100%;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--neutral-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    word-wrap: break-word;
}

.slide-description {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 50px;
    opacity: 0.95;
    color: var(--neutral-white);
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    padding: 0 10px;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--neutral-white);
    width: clamp(40px, 6vw, 60px);
    height: clamp(40px, 6vw, 60px);
    border-radius: 50%;
    font-size: clamp(1rem, 2vw, 1.5rem);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slider-control:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-50%) scale(1.1);
}

.slider-control.prev {
    left: 20px;
}

.slider-control.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    padding: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--accent-orange);
    transform: scale(1.3);
    border-color: var(--neutral-white);
}

.dot:hover {
    background: var(--accent-orange-light);
    transform: scale(1.2);
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: clamp(15px, 3vw, 18px) clamp(25px, 4vw, 36px);
    background: var(--accent-orange);
    color: var(--neutral-white);
    border: none;
    border-radius: 8px;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(245, 124, 0, 0.3);
    text-align: center;
    white-space: nowrap;
}

.cta-button i {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    transition: transform 0.3s ease;
}

.cta-button:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 124, 0, 0.4);
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-button.large {
    padding: clamp(18px, 3vw, 20px) clamp(30px, 4vw, 40px);
    font-size: clamp(1.1rem, 1.8vw, 1.2rem);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.cta-button:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    word-wrap: break-word;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--neutral-dark-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 20px;
    word-wrap: break-word;
}

/* Stats Section */
.stats-section {
    padding: 80px 20px;
    background: var(--neutral-white);
    width: 100%;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 576px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--neutral-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    width: 100%;
}

.stat-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--neutral-white);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
    line-height: 1.1;
    word-wrap: break-word;
}

.stat-label {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.stat-description {
    font-size: clamp(0.85rem, 1.3vw, 0.95rem);
    color: var(--neutral-dark-gray);
    line-height: 1.4;
    opacity: 0.9;
    word-wrap: break-word;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: var(--neutral-light-gray);
    width: 100%;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--neutral-white);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    width: 100%;
}

.service-card.animate {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--neutral-white);
}

.service-title {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 15px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.service-description {
    color: var(--neutral-dark-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    word-wrap: break-word;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-orange);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.service-link:hover {
    gap: 12px;
    color: var(--accent-orange-light);
}

/* Image CTA Section */
.image-cta-section {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    width: 100%;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.9), rgba(10, 26, 58, 0.7));
    z-index: 2;
}

.image-cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--neutral-white);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    padding: 0 20px;
    width: 100%;
}

.image-cta-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.image-cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    color: var(--neutral-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
}

.image-cta-description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
}

.image-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (min-width: 576px) {
    .image-cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.cta-button.primary {
    background: var(--accent-orange);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--neutral-white);
}

.cta-button.secondary:hover {
    background: var(--neutral-white);
    color: var(--primary-navy);
}

/* Testimonial Section - Redesigned */
.testimonial-section {
    padding: 80px 20px;
    background: var(--neutral-white);
    width: 100%;
    overflow: hidden;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--neutral-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-gray);
    opacity: 0;
    transform: translateY(30px);
    width: 100%;
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-orange);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

@media (max-width: 576px) {
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-avatar i {
    font-size: 1.5rem;
    color: var(--neutral-white);
}

.client-info {
    text-align: left;
    flex: 1;
}

@media (max-width: 576px) {
    .client-info {
        text-align: center;
    }
}

.client-name {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    margin-bottom: 5px;
    color: var(--primary-navy);
    font-weight: 600;
    word-wrap: break-word;
}

.client-title {
    color: var(--neutral-dark-gray);
    font-size: clamp(0.85rem, 1.3vw, 0.95rem);
    margin-bottom: 8px;
    word-wrap: break-word;
}

.client-rating {
    color: #FFD700;
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
}

.client-rating i {
    margin-right: 2px;
}

.testimonial-body {
    position: relative;
    padding-left: 25px;
    margin-bottom: 25px;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: rgba(10, 26, 58, 0.1);
}

.testimonial-text {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    color: var(--primary-navy);
    font-style: italic;
    position: relative;
    z-index: 2;
    word-wrap: break-word;
}

.testimonial-footer {
    border-top: 1px solid var(--neutral-gray);
    padding-top: 20px;
    text-align: right;
}

.testimonial-date {
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    color: var(--neutral-dark-gray);
    font-weight: 500;
}

/* News Section */
.news-section {
    padding: 80px 20px;
    background: var(--neutral-light-gray);
    width: 100%;
    overflow: hidden;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background: var(--neutral-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform-style: preserve-3d;
    width: 100%;
}

.news-card.animate {
    opacity: 1;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    width: 100%;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-orange);
    color: var(--neutral-white);
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    min-width: 60px;
}

.news-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-content {
    padding: 25px;
}

.news-title {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    margin-bottom: 15px;
    color: var(--primary-navy);
    word-wrap: break-word;
}

.news-excerpt {
    color: var(--neutral-dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: clamp(0.85rem, 1.3vw, 0.95rem);
    word-wrap: break-word;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-orange);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.news-link:hover {
    gap: 12px;
    color: var(--accent-orange-light);
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    width: 100%;
}

.final-cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--neutral-white);
    max-width: 900px;
    margin: 0 auto;
    opacity: 1;
    transform: translateY(0);
    padding: 0 20px;
    width: 100%;
}

.final-cta-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.final-cta-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 25px;
    color: var(--neutral-white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    word-wrap: break-word;
}

.final-cta-description {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 50px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    padding: 0 10px;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    width: 100%;
}

@media (min-width: 576px) {
    .final-cta-buttons {
        flex-direction: row;
    }
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    width: 100%;
}

@media (min-width: 768px) {
    .cta-features {
        flex-direction: row;
        gap: 30px;
    }
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--neutral-white);
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    font-weight: 500;
    white-space: nowrap;
}

.feature i {
    color: var(--accent-orange);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
}

/* Partners Section */
.partners-section {
    padding: 60px 20px;
    background: var(--neutral-white);
    width: 100%;
    overflow: hidden;
}

.partners-slider {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
    width: 100%;
}

.partner-logos {
    display: flex;
    animation: scrollPartners 30s linear infinite;
    gap: clamp(30px, 5vw, 60px);
    padding: 20px 0;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 120px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .partner-logo {
        min-width: 150px;
    }
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.partner-logo i {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-navy);
}

.partner-logo span {
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    color: var(--neutral-dark-gray);
    font-weight: 500;
    text-align: center;
    word-wrap: break-word;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-120px * 6 - clamp(30px, 5vw, 60px) * 5));
    }
}

@media (min-width: 768px) {
    @keyframes scrollPartners {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-150px * 6 - clamp(30px, 5vw, 60px) * 5));
        }
    }
}

/* Animation Classes */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animate {
    opacity: 1;
}

/* Fade Up Animation */
[data-animate="fade-up"].animate {
    transform: translateY(0);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

/* Slide Left Animation */
[data-animate="slide-left"].animate {
    transform: translateX(0);
}

[data-animate="slide-left"] {
    transform: translateX(-50px);
}

/* Slide Right Animation */
[data-animate="slide-right"].animate {
    transform: translateX(0);
}

[data-animate="slide-right"] {
    transform: translateX(50px);
}

/* Slide Up Animation */
[data-animate="slide-up"].animate {
    transform: translateY(0);
}

[data-animate="slide-up"] {
    transform: translateY(50px);
}

/* Flip Animation */
[data-animate="flip"] {
    transform: perspective(1000px) rotateY(90deg);
}

[data-animate="flip"].animate {
    transform: perspective(1000px) rotateY(0deg);
}

/* Make final CTA appear immediately */
.final-cta-section .final-cta-content {
    animation: fadeInUpImmediate 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes fadeInUpImmediate {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add this to the end of index.css */
.final-cta-section .cta-background {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.final-cta-section .cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.9), rgba(10, 26, 58, 0.7));
    z-index: 2;
}

.final-cta-content {
    position: relative;
    z-index: 3;
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none !important;
}

/* Force the section to show immediately on load */
#finalCtaSection {
    opacity: 1 !important;
    visibility: visible !important;
}

#finalCtaSection .final-cta-content {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-slider {
        height: 90vh;
        min-height: 500px;
    }
    
    .stats-section,
    .services-section,
    .image-cta-section,
    .testimonial-section,
    .news-section,
    .final-cta-section {
        padding: 80px 20px;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        height: 80vh;
        min-height: 450px;
    }
    
    .slide-content {
        margin-top: 150px;
    }
    
    .slider-control {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .slider-control.prev {
        left: 15px;
    }
    
    .slider-control.next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 400px;
        margin-top: -60px;
    }
    
    .slide-content {
        margin-top: 120px;
    }
    
    .image-cta-buttons,
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 60vh;
        min-height: 350px;
    }
    
    .slide-content {
        margin-top: 100px;
    }
    
    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-control.prev {
        left: 10px;
    }
    
    .slider-control.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 30px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .client-info {
        text-align: center;
    }
    
    .partner-logo {
        min-width: 100px;
    }
    
    @keyframes scrollPartners {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100px * 6 - 30px * 5));
        }
    }
}

@media (max-width: 375px) {
    .hero-slider {
        height: 55vh;
        min-height: 300px;
    }
    
    .slide-title {
        font-size: 1.6rem;
    }
    
    .slide-description {
        font-size: 0.95rem;
    }
    
    .slide-content {
        margin-top: 80px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .stat-description {
        font-size: 0.8rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    .image-cta-title,
    .final-cta-title {
        font-size: 1.6rem;
    }
    
    .image-cta-description,
    .final-cta-description {
        font-size: 0.95rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
    
    .news-excerpt {
        font-size: 0.85rem;
    }
    
    .feature {
        font-size: 0.85rem;
    }
    
    .partner-logo {
        min-width: 80px;
    }
    
    .partner-logo i {
        font-size: 1.8rem;
    }
    
    .partner-logo span {
        font-size: 0.75rem;
    }
    
    @keyframes scrollPartners {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-80px * 6 - 20px * 5));
        }
    }
}