/* Global Styles */
:root {
    --primary-blue: #1560C6;
    --text-blue: #0949A0;
    --bg-light: #F2F2F2;
    --white: #FFFFFF;
    --font-main: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-blue);
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Hero Section */
.hero {
    position: relative;
    background-color: var(--bg-light);
    overflow: hidden;
    display: block;
    width: 100%;
}

.hero-carousel-inner {
    display: flex;
    width: 100%;
    transition: transform 0.8s ease-in-out;
    will-change: transform;
}

.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    aspect-ratio: 1920 / 498;
    overflow: hidden;
}

.slide-bg-0 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/home/water-bg.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Overlay to ensure text readability if needed, though design seems to use the image directly */
/* Adjusting background to match the "water splash" look on the left and clean right */

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-content {
    flex: 1;
    max-width: 700px;
}

.hero-tagline {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.3vw, 20px);
    line-height: 100%;
    letter-spacing: -0.02em;
    /* -2% */
    margin-bottom: clamp(10px, 1vw, 15px);
    color: var(--text-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-tagline span {
    color: #3b82f6;
    /* Lighter blue for the pipe */
    font-weight: 500;
    font-size: clamp(16px, 1.5vw, 24px);
}

.hero-tagline strong {
    font-weight: 500;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 1.8vw, 32px);
    line-height: 120%;
    letter-spacing: -0.02em;
    /* -2% */
    margin-bottom: clamp(8px, 0.8vw, 12px);
}

.hero-title strong {
    font-weight: 700;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 1.2vw, 20px);
    line-height: 1.5;
    letter-spacing: -0.02em;
    /* -2% */
    margin-bottom: clamp(10px, 1.5vw, 20px);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    background-color: #1E7DFF;
    /* Brighter blue for CTA */
    color: var(--white);
    text-decoration: none;
    padding: clamp(12px, 1.5vw, 20px) clamp(15px, 2vw, 25px);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(11px, 1vw, 16px);
    line-height: 100%;
    letter-spacing: 0;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(45, 140, 255, 0.3);
}

.btn-cta:hover {
    background-color: #1a73e8;
    transform: translateY(-2px);
}

.btn-icon {
    width: clamp(20px, 2vw, 30px);
    height: clamp(20px, 2vw, 30px);
    margin-right: clamp(8px, 1vw, 15px);
    background-color: white;
    border-radius: 50%;
    padding: 4px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image img {
    max-width: 150%;
    /* Increased from 120% */
    max-height: clamp(200px, 22vw, 400px);
    object-fit: contain;
    /* Adjust positioning to overlap/pop out if needed */
    margin-right: -170px;
    /* Adjusted margin */
    margin-top: 5px;
    /* Move image up slightly if needed */
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-image img {
        max-width: 100%;
        margin-right: 0;
    }
}






/* Mobile Navigation */
/* Mobile Navigation */
@media (max-width: 1024px) {


    /* Hero Section Mobile Adjustments */
    .hero {
        height: auto;
        min-height: auto;
    }

    .hero-slide {
        padding-top: 5px;
        padding-bottom: 5px;
        height: auto;
        /* Allow height to grow tightly */
        min-height: auto;
        aspect-ratio: 1 / 1;
        overflow: hidden;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 0px;
        order: 1;
        /* Text first */
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-content br {
        display: none;
    }

    .hero-image {
        order: 2;
        /* Image second */
        justify-content: center;
        margin-top: 30px;
    }

    .hero-image img {
        margin-right: 0;
        max-width: 85%;
        max-height: clamp(90px, 25vw, 180px);
        object-fit: contain;
        transform: scale(1.5);
        /* Contain image within screen */
    }

    .hero-title {
        font-size: clamp(8px, 5vw, 18px);
        line-height: 115%;
        margin-bottom: 12px;
    }

    .hero-tagline {
        font-size: clamp(11px, 3.2vw, 14px);
        margin-bottom: 10px;
        justify-content: center;
        gap: 5px;
    }
    .hero-tagline span {
        font-size: clamp(14px, 3.8vw, 18px);
    }

    .hero-subtitle {
        font-size: clamp(12px, 3.5vw, 15px);
        line-height: 1.3;
        margin-bottom: 18px;
    }

    .btn-cta {
        padding: 12px 18px;
        font-size: clamp(11px, 2.8vw, 13px);
    }
    .btn-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background-color: var(--white);
}

.problems-header {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin-bottom: 60px;
    text-align: left;
}

.header-icon {
    width: 60px;
    height: 60px;
}

.problems-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 110%;
    color: var(--text-blue);
}

.problems-header h2 strong {
    font-weight: 700;
}

/* Grid Layout */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 80px;
}

.problem-card {
    width: 98%;
    background-color: #0D4291;
    /* Darker blue from image */
    border-radius: 15px;
    padding: 40px 30px;
    color: white;
    grid-column: span 2;
    /* Default for top row (3 cards = 6 cols) */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-card.wide {
    grid-column: span 3;
    /* Bottom row (2 cards = 6 cols) */
}

.card-icon {
    margin-bottom: 25px;
}

.card-icon img {
    /* Light blue filter to match design */
    filter: invert(71%) sepia(65%) saturate(452%) hue-rotate(179deg) brightness(93%) contrast(87%);
    height: 50px;
    width: auto;
}


.problem-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    margin-bottom: 15px;
}

.problem-card p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    opacity: 0.9;
}

/* Footer Section */
.problems-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    color: var(--text-blue);
    margin-bottom: 20px;
}

.footer-title strong {
    font-weight: 700;
    color: #0D4291;
    /* Darker blue for emphasis */
}

.footer-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #0949A0;
    /* Grayish text */
    margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 1024px) {
    .problems-grid {
        grid-template-columns: 1fr;
        /* Stack everything */
    }

    .problem-card,
    .problem-card.wide {
        grid-column: span 1;
    }

    .problems-header {
        flex-direction: column;
        text-align: center;
    }

    .problems-header h2 {
        font-size: 32px;
    }

    .problem-card h3 {
        font-size: 16px;
    }

    .problem-card p {
        font-size: 12px;
    }


    .problems-header h2 br {
        display: none;
    }

    .footer-title {
        font-size: 20px;
    }

    .footer-subtitle {
        font-size: 15px;
    }
}

/* Products Section */
.products-section {
    padding: 60px 0;
    /* Removed background-color here */
    background-color: var(--white);
    /* Ensure it sits on white/default */
}

.products-wrapper {
    background-color: #0949A0;
    background-image: url('../images/home/background-card-home.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 40px;
    /* Rounded corners for the big section */
    padding: 80px 60px;
    color: white;
    text-align: center;
    position: relative;
    /* Optional: Add a subtle shadow if it meant to look like a card */
}

.products-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: title;
    margin-bottom: 80px;
}

.products-title strong {
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    /* Increased gap to make cards smaller/narrower */
    margin-bottom: 60px;
    max-width: 1100px;
    /* Limit grid width to help cards not be too wide */
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background-color: #1560C6;
    /* Lighter blue/glassy look */
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: visible;
    text-align: left;
    min-height: 290px;
    max-width: 450px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-info {
    flex: 1;
    max-width: 70%;
    /* Reduced to give more space for image/make text tighter */
    z-index: 2;
}

.product-info h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 20px;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.product-feature img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.6;
}

.product-feature p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 140%;
    opacity: 0.9;
}

.product-img {
    position: absolute;
    right: -120px;
    /* Moved further right to pop out more */
    top: 50%;
    transform: translateY(-55%);
    max-height: 150%;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.products-grid .product-card:nth-child(4) .product-img {
    max-height: 130%;
    right: -90px;
}

.products-cta {
    margin-top: 60px;
}

.btn-cta.btn-light {
    background-color: #3b82f6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta.btn-light:hover {
    background-color: #60a5fa;
}

/* Responsive for Products */
@media (max-width: 1024px) {
    .products-wrapper {
        padding: 60px 20px;
        border-radius: 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 30px;
    }

    .product-card {
        padding: 30px 20px;
        flex-direction: column;
        align-items: flex-start;
        overflow: hidden;
    }

    .product-info {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .product-info h3 {
        font-size: 28px;
    }


    .product-img {
        position: static;
        transform: none;
        max-height: 280px;
        align-self: center;
        margin-right: 0;
    }

    .products-grid .product-card:nth-child(4) .product-img {
        max-height: 370px; /* Keep HXPRO at original mobile size */
    }

    .products-title {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .products-title br {
        display: none;
    }
}

/* Training Section */
.training-section {
    background: url('../images/home/background-card-home-section-fp.png') right center no-repeat, linear-gradient(90deg, #192A5F 00%, #0D8EF4 100%);
    padding: 200px 0 100px 0;
    margin-top: -120px;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Ensure products sits on top */
.products-section {
    position: relative;
    z-index: 10;
    background-color: transparent;
    padding-bottom: 0;
}

/* New Layout Structures */
.training-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 0px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.training-body {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.training-list-content {
    flex: 1;
    max-width: 500px;
}

.section-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    opacity: 0.8;
}

.training-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 45px;
    line-height: 120%;
    margin-bottom: 30px;
}

.training-title strong {
    font-weight: 700;
}

.training-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 700px;
    /* Ensure lines break nicely like in design */
}

.courses-highlights {
    padding: 0;
    margin-bottom: 50px;
    margin-top: 50px;
}

.highlights-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-align: left;
}

.courses-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.course-item {
    background: linear-gradient(90deg, #0D8EF4 0%, #192A5F 100%);
    border-radius: 8px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 60px;
    width: fit-content;
    transition: transform 0.3s ease;
}

.course-item:hover {
    transform: translateY(-3px);
}

.course-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.course-icon img {
    max-width: 100%;
    max-height: 100%;
}

.course-item span {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase;
}

.training-image {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Center image in its column */
    position: relative;
}

.training-image img {
    max-width: 75%;
    /* Adjusted slightly */
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.btn-cta.btn-primary-light {
    background-color: #3b82f6;
    width: 100%;
    max-width: max-content;
    justify-content: center;
    text-align: center;
    align-items: center;
    position: absolute;
    left: 30%;
    z-index: 999;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Responsive for Training */
@media (max-width: 1024px) {
    .training-section {
        padding-top: 100px;
        margin-top: -50px;
    }

    .training-body {
        flex-direction: column;
        gap: 40px;
    }

    .training-header {
        max-width: 100%;
    }

    .training-list-content {
        max-width: 100%;
        display: contents;
        /* Allow children to be part of the grid/flex of parent */
    }

    .highlights-title {
        text-align: center;
    }

    .course-item {
        max-width: 100%;
        width: 100%;
    }

    .course-item span {
        font-size: 14px;
    }

    .btn-cta.btn-primary-light {
        max-width: 100%;
        position: static;
        left: auto;
        transform: none;
        margin: 30px auto 0;
        width: 100%;
        box-sizing: border-box;
        order: 3;
        /* Button last */
    }

    .courses-grid {
        width: 100%;
        align-items: center;
    }

    .training-title {
        font-size: 26px;
    }

    .training-description {
        text-align: center;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .training-description br {
        display: none;
    }

    .courses-highlights {
        padding: 0;
        width: 100%;
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .training-image {
        order: 2;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.testimonials-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 120%;
    width: 500px;
    color: var(--text-blue);
}

.testimonials-header h2 strong {
    font-weight: 700;
}

.carousel-controls {
    display: flex;
    gap: 15px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: var(--primary-blue);
}

.carousel-btn:hover img {
    filter: brightness(0) invert(1);
}

.carousel-btn img {
    width: 24px;
    height: 24px;
    transition: filter 0.3s ease;
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
}

.testimonials-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    width: 422px;
    min-width: 422px;
    height: 418px;
    background-color: #0D4291;
    border-radius: 20px;
    padding: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial-header-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 150%;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    display: block;
}

.testimonial-author span {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 13px;
    opacity: 0.8;
}

/* Why Choose Yamatec Section */
.why-yamatec-section {
    padding: 80px 0;
    background-color: white;
}

.why-yamatec-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 60px;
}

.why-yamatec-left {
    flex: 1;
    max-width: 500px;
}

.why-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.gota-icon {
    width: 50px;
    height: 50px;
}

.why-title h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 120%;
    color: var(--text-blue);
}

.why-title h2 strong {
    font-weight: 700;
}

.why-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.why-image img {
    max-width: 110%;
    height: auto;
    margin-left: 70px;
    border-radius: 25px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.why-yamatec-right {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 5px;
}


.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: #E8F2FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon img {
    width: 35px;
    height: 35px;
    filter: invert(27%) sepia(89%) saturate(1523%) hue-rotate(197deg) brightness(95%) contrast(101%);
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.benefit-text strong {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #0D4291;
    line-height: 120%;
}

.benefit-text p {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 28px;
    color: var(--text-blue);
    line-height: 120%;
}

/* CTA Footer */
.why-yamatec-cta {
    margin-top: 80px;
}

.cta-box {
    background: url('../images/home/background-wpp-icon.png') -30px center no-repeat, linear-gradient(135deg, #0D4291 0%, #1560C6 100%);
    border-radius: 25px;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(13, 66, 145, 0.25);
}

.cta-question {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 130%;
    color: white;
    margin: 0;
    flex: 1;
}

.cta-question strong {
    font-weight: 700;
}

.btn-cta.btn-whatsapp {
    background-color: #3b82f6;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-cta.btn-whatsapp:hover {
    background-color: #60a5fa;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

.icon-button-whatsapp {
    background-color: #F2F2F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    padding: 7px;
}

/* Responsive for Testimonials */
@media (max-width: 1024px) {
    .testimonials-header {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .testimonials-header h2 {
        font-size: 32px;
        width: 100%;
    }

    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
    }

    .carousel-controls {
        order: 2;
    }
}

/* Responsive for Why Yamatec */
@media (max-width: 1024px) {
    .why-yamatec-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .why-yamatec-left,
    .why-yamatec-right {
        max-width: 100%;
    }

    .why-title {
        flex-direction: column;
        text-align: center;
    }

    .why-title h2 {
        font-size: 32px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        background: linear-gradient(135deg, #0D4291 0%, #1560C6 100%);
    }

    .cta-question {
        font-size: 18px;
    }

    .cta-question br {
        display: none;
    }

    .btn-cta.btn-whatsapp {
        width: 100%;
        justify-content: center;
        white-space: normal;
        /* Allow text wrapping */
        text-align: center;
        height: auto;
        padding: 15px 20px;
        line-height: 1.2;
    }

    .benefit-text strong,
    .benefit-text p {
        font-size: 20px;
    }

    
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #003B8F, #1E7DFF);
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 59, 143, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    box-shadow: 0 6px 25px rgba(0, 59, 143, 0.5);
    transform: translateY(-3px);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .floating-whatsapp img {
        width: 30px;
        height: 30px;
    }
    #backToTop {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Hero Pagination */
.hero-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    padding: 0;
}

.hero-dot.active {
    background-color: #3b82f6;
    transform: scale(1.2);
}

.hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Hero Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}

.hero-arrow svg {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.65);
    transform: translateY(-50%) scale(1.08);
}

.hero-arrow-prev {
    left: 20px;
}

.hero-arrow-next {
    right: 20px;
}

@media (max-width: 600px) {
    .hero-arrow {
        width: 36px;
        height: 36px;
    }
    .hero-arrow svg {
        width: 18px;
        height: 18px;
    }
    .hero-arrow-prev { left: 10px; }
    .hero-arrow-next { right: 10px; }
}