/* ========================= */
/* Cleaning HERO SECTION */
/* ========================= */
:root {
    --section-sm: 60px;
    --section-md: 80px;
    --section-lg: 100px;

    --font-heading: 'Lato', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --text-h1: 44px;
    --text-h2: 36px;
    --text-h3: 28px;
    --text-h4: 20px;

    --text-body-lg: 16px;
    --text-body: 15px;
    --text-body-sm: 13px;

    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header p {
    margin-top: var(--space-sm);
    color: #6b7280;
}

.faq-actions { margin-top: var(--space-lg); }

body {
    font-family: var(--font-body);
    font-size: var(--text-body);
    line-height: 1.7;
    color: #374151;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #111827;
}

h1 {
    font-size: var(--text-h1);
    font-weight: var(--weight-extrabold);
}

h2 {
    font-size: var(--text-h2);
    font-weight: var(--weight-bold);
}

h3 {
    font-size: var(--text-h3);
    font-weight: var(--weight-bold);
}

h4 {
    font-size: var(--text-h4);
    font-weight: var(--weight-semibold);
}


small,
.badge,
.tag,
.hero-mini-badge {
    font-size: var(--text-body-sm);
    font-weight: var(--weight-medium);
}

.section-sm {
    padding: var(--section-sm) 0;
}

.section-md {
    padding: var(--section-md) 0;
}

.section-lg {
    padding: var(--section-lg) 0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}


/* ===== CONSISTENT SECTION SPACING ===== */


/* ===== CARD CONSISTENCY ===== */
.offering-card,
.service-card,
.pricing-card,
.testimonial-card,
.ba-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.offering-card:hover,
.service-card:hover,
.pricing-card:hover {
    box-shadow: var(--shadow-md);
}

/*transitions*/
.btn-primary,
.btn-service,
.pricing-btn {
    transition: 0.3s ease-in-out;
}

.btn-primary:hover {
    background: #159c5c;
    transform: translateY(-2px);
}

.btn-service:hover {
    transform: translateY(-2px);
}


.offering-card,
.service-card,
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering-card:hover,
.service-card:hover,
.pricing-card:hover {

    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.img-container img,
.hero-img img {
    transition: transform 0.5s ease;
}

.img-container:hover img,
.hero-img:hover img {
    transform: scale(1.05);
}

.navbar nav a {
    transition: color 0.3s ease, opacity 0.3s ease;
}

.navbar nav a:hover {
    color: #20ba68;
    opacity: 0.8;
}

html {
    scroll-behavior: smooth;
}

/*end of transitions*/

/* BUTTONS */
.btn-primary {
    background: #20ba68;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 6px;
    cursor: pointer;
}

.btn-primary-outline {
    background: none;
    border: 2px solid #20ba68;
    color: #20ba68;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}



/* NAVBAR */
.navbar {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

/* HERO */

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.hero-text h1 {
    font-size: 44px;
    color: #20ba68;
    margin-bottom: 5px;
}

.hero-text h2 {
    color: black;
    font-size: 36px;

}

.hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-img img {
    height: 450px;
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 1024px) {

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
        max-width: 520px;
    }

    .hero-text a,
    .hero-text button {
        margin: 10px auto 0;
    }

    .hero-img {
        max-width: 520px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {

    .hero {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-text h2 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
        max-width: 360px;
    }

    .hero-img img {
        height: auto;
        max-height: 320px;
        object-fit: cover;
    }

    .hero-text a,
    .hero-text button {
        width: 100%;
        max-width: 260px;
        display: block;
    }
}
@media (max-width: 480px) {

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 15px;
    }
}

/* GALLERY */


/* FAQ */
/* ===== FAQ SECTION (Matches Screenshot) ===== */


.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.faq-title h2 {
    margin-bottom: 30px;
}

.faq-subtitle {
    color: #20ba68;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #555;
    margin-top: 10px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item i {
    transition: transform 0.3s ease;
}

.faq-item.active i {
    transform: rotate(180deg);
}


.faq-item:hover {
    border-color: #20ba68;
}

.faq-item i {
    color: #20ba68;
}

/* Right-side images */
.faq-images {
    position: relative;
    width: 100%;
}

.faq-img-large {
    width: 380px;
    border-radius: 12px;
}

.faq-img-small {
    width: 220px;
    border-radius: 12px;
    position: absolute;
    bottom: -40px;
    right: -20px;
}

/* ============================= */
/* TABLET (≤ 1024px) */
/* ============================= */
@media (max-width: 1024px) {

    .faq-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-images {
        max-width: 520px;
        margin: 0 auto;
    }

    .faq-img-large {
        width: 100%;
        max-width: 360px;
    }

    .faq-img-small {
        width: 200px;
        bottom: -30px;
        right: -10px;
    }
}

/* ============================= */
/* MOBILE (≤ 768px) */
/* ============================= */
@media (max-width: 768px) {

    .faq-section {
        padding: 60px 0;
    }

    .faq-container {
        text-align: center;
    }

    .faq-subtitle {
        font-size: 12px;
    }

    .faq-title {
        font-size: 1.9rem;
        margin-bottom: 25px;
    }

    .faq-list {
        text-align: left;
        max-width: 420px;
        margin: 0 auto;
    }

    .faq-question {
        font-size: 15px;
        gap: 10px;
    }

    .faq-answer {
        font-size: 14px;
        line-height: 1.6;
    }

    .faq-actions {
        margin-top: 30px;
        text-align: center;
    }

    /* Images */
    .faq-images {
        margin-top: 40px;
    }

    .faq-img-large {
        max-width: 320px;
    }

    .faq-img-small {
        width: 180px;
        bottom: -25px;
        right: 0;
    }

    /* Sparkles stay inside */
    .sparkle.s1 {
        right: 0;
    }

    .sparkle.s2 {
        left: 0;
    }
}

/* ============================= */
/* SMALL MOBILE (≤ 480px) */
/* ============================= */
@media (max-width: 480px) {

    .faq-title {
        font-size: 1.7rem;
        line-height: 1.25;
    }

    .faq-list {
        max-width: 100%;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 13.5px;
    }

    .faq-img-large {
        max-width: 260px;
    }

    .faq-img-small {
        width: 150px;
        bottom: -20px;
    }

    /* Optional: hide sparkles on very small screens */
    .sparkle {
        display: none;
    }
}



/* Sparkles */
.sparkle {
    position: absolute;
    font-size: 22px;
    color: #20ba68;
}

.sparkle.s1 {
    top: 20px;
    right: 20px;
}

.sparkle.s2 {
    bottom: 20px;
    left: -10px;
}




/* OFFERING SECTION */
.offering-section {

    text-align: center;
}

.section-title h2 {

    margin-bottom: 50px;
    color: #333;
}

.offering-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.offering-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    width: 570px;
    height: 265px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: 0.3s;
}

.offering-card.active {
    background: #1fb56f;
    color: #fff;
    border: none;
}

.offering-card h3 {
    margin: 15px 0;
}

.offering-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.offering-card.active p,
.offering-card.active h3 {
    color: #fff;
}

.offering-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.offering-icon img {
    width: 40px;
}

/* ============================= */
/* BASE FIXES (SAFE) */
/* ============================= */

.offering-card {
    height: auto; /* remove fixed height */
    max-width: 570px;
    width: 100%;
}

/* ============================= */
/* TABLET (≤ 1024px) */
/* ============================= */
@media (max-width: 1024px) {

    .offering-grid {
        gap: 50px;
    }

    .offering-card {
        max-width: 520px;
        padding: 32px 22px;
    }

    .offering-card p {
        font-size: 15px;
    }
}

/* ============================= */
/* MOBILE (≤ 768px) */
/* ============================= */
@media (max-width: 768px) {

    .offering-section {
        padding: 60px 0;
    }

    .offering-grid {
        flex-direction: column;
        gap: 30px;
    }

    .offering-card {
        max-width: 100%;
        padding: 28px 20px;
    }

    .offering-card h3 {
        font-size: 18px;
    }

    .offering-card p {
        font-size: 14.5px;
        line-height: 1.6;
    }

    .offering-icon {
        width: 60px;
        height: 60px;
    }

    .offering-icon img {
        width: 34px;
    }
}

/* ============================= */
/* SMALL MOBILE (≤ 480px) */
/* ============================= */
@media (max-width: 480px) {

    .section-title {
        font-size: 1.6rem;
    }

    .offering-card {
        padding: 24px 18px;
    }

    .offering-card h3 {
        font-size: 17px;
    }

    .offering-card p {
        font-size: 14px;
    }
}

/* ============================= */
/* TOUCH DEVICES (NO HOVER JUMP) */
/* ============================= */
@media (hover: none) {
    .offering-card:hover {
        transform: none;
        box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    }
}


/* BEST SERVICE SECTION */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.services-title h2 {
    line-height: 1.3;
}

.services-info {
    max-width: 420px;
}

.services-info h4 {
    margin-bottom: 8px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

.service-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

/* Book Now Button */
.btn-service {
    display: inline-block;
    padding: 10px 18px;
    background: #1fb56f;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-service:hover {
    background: #159c5c;
}


.img-container {
    width: 100%;
    height: 300px;
    /* adjust as needed */
    overflow: hidden;
    border-radius: 10px;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* cover = crop to fill | contain = fit inside */
}

/* ============================= */
/* TABLET (≤ 1024px) */
/* ============================= */
@media (max-width: 1024px) {

    .services-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .services-info {
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .img-container {
        height: 260px;
    }
}

/* ============================= */
/* MOBILE (≤ 768px) */
/* ============================= */
@media (max-width: 768px) {

    .best-services {
        padding: 60px 0;
    }

    .services-header {
        text-align: center;
        align-items: center;
        margin-bottom: 40px;
    }

    .services-title h2 {
        font-size: 1.9rem;
    }

    .services-info {
        text-align: center;
        max-width: 360px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 18px;
        text-align: center;
    }

    .service-card p {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-service {
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }

    .img-container {
        height: 220px;
    }
}

/* ============================= */
/* SMALL MOBILE (≤ 480px) */
/* ============================= */
@media (max-width: 480px) {

    .services-title h2 {
        font-size: 1.7rem;
        line-height: 1.25;
    }

    .services-info p {
        font-size: 14px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 13.5px;
    }

    .img-container {
        height: 200px;
    }
}

/* ============================= */
/* TOUCH DEVICES (DISABLE HOVER JUMP) */
/* ============================= */
@media (hover: none) {
    .card-hover:hover {
        transform: none;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }
}


/* PRICING SECTION */
.pricing-section {
    position: relative;
    text-align: center;
}

/* Background Banner */
.pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    opacity: 0.55;
    z-index: -1;
}

.pricing-title {
    margin-bottom: 135px;
    margin-top: -62px;
}

/* CARD CONTAINER */
.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 55px;
    margin-top: -120px;
}

/* HOVER BORDER EFFECT */
.pricing-card:hover {
    border: 3px solid #1fb56f;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
    transform: translateY(-8px);
}

.pricing-card.active:hover {
    transform: scale(1.12);
    border: 4px solid #1fb56f;
}

/* INDIVIDUAL CARD (TALL + SPACIOUS) */
.pricing-card {
    background: #ffffff;
    padding: 55px 45px;
    /* Increased padding */
    width: 350px;
    min-height: 500px;
    /* Increased height */
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* TITLE */
.pricing-card h3 {
    margin-bottom: 18px;
    color: #1fa96b;
}

/* PRICE */
.pricing-card h1 {
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.pricing-card h1 span {
    color: #777;
}

/* FEATURES LIST */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.pricing-card ul li {
    margin-bottom: 20px;
    /* More spacing between items */
    font-size: 16px;
    /* Larger text */
    color: #555;
    padding-left: 28px;
    line-height: 1.8;
    /* Better readability */
    position: relative;
}

.pricing-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #1fb56f;
    font-weight: 900;
}

/* BUTTON */
.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 16px 0;
    background: #1fb56f;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    margin-top: auto;
    /* pushes button to bottom */
    transition: 0.3s ease;
}

.pricing-btn:hover {
    background: #159c5c;
}

/* CENTER CARD — BIGGER & MORE SPACE */
.pricing-card.active {
    transform: scale(1.12);
    min-height: 500px;
    /* Taller */
    border: 4px solid #1fb56f;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

/* ============================= */
/* TABLET (≤ 1024px) */
/* ============================= */
@media (max-width: 1024px) {

    .pricing-title {
        margin-bottom: 90px;
        margin-top: -40px;
    }

    .pricing-cards {
        gap: 35px;
        margin-top: -80px;
        flex-wrap: wrap;
    }

    .pricing-card {
        width: 320px;
        padding: 45px 35px;
    }

    .pricing-card.active {
        transform: scale(1.05);
    }
}

/* ============================= */
/* MOBILE (≤ 768px) */
/* ============================= */
@media (max-width: 768px) {

    .pricing-section {
        padding: 70px 0;
    }

    .pricing-title {
        margin-bottom: 50px;
        margin-top: 0;
        font-size: 1.9rem;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        gap: 30px;
    }

    .pricing-card {
        width: 100%;
        max-width: 360px;
        min-height: auto;
        padding: 40px 30px;
    }

    /* Disable scale on mobile */
    .pricing-card.active {
        transform: none;
        border-width: 3px;
    }

    .pricing-card h1 {
        margin-bottom: 30px;
    }

    .pricing-card ul {
        margin-bottom: 35px;
    }

    .pricing-card ul li {
        font-size: 15px;
        margin-bottom: 16px;
    }
}

/* ============================= */
/* SMALL MOBILE (≤ 480px) */
/* ============================= */
@media (max-width: 480px) {

    .pricing-title {
        font-size: 1.7rem;
    }

    .pricing-card {
        padding: 32px 24px;
        border-radius: 18px;
    }

    .pricing-card h3 {
        font-size: 16px;
    }

    .pricing-card h1 {
        font-size: 32px;
    }

    .pricing-card ul li {
        font-size: 14px;
        padding-left: 24px;
    }

    .pricing-btn {
        font-size: 15px;
        padding: 14px 0;
    }
}

/* ============================= */
/* TOUCH DEVICES (NO HOVER JUMP) */
/* ============================= */
@media (hover: none) {

    .pricing-card:hover,
    .pricing-card.active:hover {
        transform: none;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
        border-width: 2px;
    }
}


/* TESTIMONIAL SECTION */
.testimonial-section {}

.testimonial-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT SIDE */
.testimonial-left h2 {
    line-height: 1.3;
    margin-bottom: 15px;
}

.testimonial-left p {
    max-width: 350px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* ARROW BUTTONS */
.testimonial-arrows {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: none;
    background: #e6f5ec;
    color: #2ea76c;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
}

.arrow-btn.active,
.arrow-btn:hover {
    background: #2ea76c;
    color: #fff;
}

/* RIGHT SIDE CARD */
.testimonial-card {
    background: #fff;
    width: 520px;
    padding: 25px;
    border-radius: 20px;
    border: 3px solid #2ea76c;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* Profile Image */
.testimonial-img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
}

/* Text Content */
.testimonial-content h3 {
    margin-bottom: 3px;
}

.testimonial-role {
    font-size: 13px;
    color: #888;
}

.testimonial-rating {
    margin: 8px 0;
    color: #f4c430;
    /* gold stars */
}

.testimonial-text {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    max-width: 350px;
}

/* Quote Icon */
.testimonial-quote {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 38px;
    color: #2ea76c;
}

/* MISSION SECTION */
.mission-section {
    background: #2ea76c;
    text-align: center;
    color: #fff;
}

.mission-title h2 {
    margin-bottom: 10px;
}

.mission-text {
    max-width: 850px;
    margin: 0 auto 40px;
    font-size: 14px;
    line-height: 1.6;
}

/* STATS CARD CONTAINER */
.mission-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* INDIVIDUAL CARD */
.mission-card {
    background: #ffffff;
    color: #2ea76c;
    width: 260px;
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: .3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

/* Text inside card */
.mission-card h3 {
    margin-bottom: 5px;
}

.mission-card p {
    font-size: 15px;
    font-weight: 500;
}

.testimonial-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #20ba68;
    /* brand green */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
}
/* ============================= */
/* TABLET (≤ 1024px) */
/* ============================= */
@media (max-width: 1024px) {

    .mission-text {
        max-width: 700px;
        font-size: 14.5px;
    }

    .mission-stats {
        gap: 30px;
    }

    .mission-card {
        width: 240px;
        padding: 24px 18px;
    }
}

/* ============================= */
/* MOBILE (≤ 768px) */
/* ============================= */
@media (max-width: 768px) {

    .mission-section {
        padding: 60px 0;
    }

    .mission-title {
        font-size: 1.9rem;
    }

    .mission-text {
        max-width: 360px;
        font-size: 14px;
        margin-bottom: 35px;
    }

    .mission-stats {
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }

    .mission-card {
        width: 100%;
        max-width: 320px;
    }

    .mission-card h3 {
        font-size: 28px;
    }

    .mission-card p {
        font-size: 14px;
    }
}

/* ============================= */
/* SMALL MOBILE (≤ 480px) */
/* ============================= */
@media (max-width: 480px) {

    .mission-title {
        font-size: 1.7rem;
    }

    .mission-text {
        font-size: 13.5px;
        line-height: 1.5;
    }

    .mission-card {
        padding: 22px 16px;
        border-radius: 14px;
    }

    .mission-card h3 {
        font-size: 26px;
    }
}

/* ============================= */
/* TOUCH DEVICES (NO HOVER JUMP) */
/* ============================= */
@media (hover: none) {
    .mission-card:hover {
        transform: none;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    }
}

/* ============================= */
/* TABLET (≤ 1024px) */
/* ============================= */
@media (max-width: 1024px) {

    .testimonial-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .testimonial-card {
        width: 100%;
        max-width: 520px;
    }
}

/* ============================= */
/* MOBILE (≤ 768px) */
/* ============================= */
@media (max-width: 768px) {

    .testimonial-wrapper {
        align-items: center;
        text-align: center;
    }

    .testimonial-left h2 {
        font-size: 1.9rem;
    }

    .testimonial-left p {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-arrows {
        justify-content: center;
    }

    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 380px;
        padding: 22px;
    }

    .testimonial-text {
        max-width: 100%;
    }

    .testimonial-quote {
        position: static;
        margin-top: 12px;
        font-size: 32px;
    }
}

/* ============================= */
/* SMALL MOBILE (≤ 480px) */
/* ============================= */
@media (max-width: 480px) {

    .testimonial-left h2 {
        font-size: 1.7rem;
        line-height: 1.25;
    }

    .testimonial-left p {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 20px;
        border-radius: 16px;
    }

    .testimonial-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .testimonial-text {
        font-size: 13.5px;
        line-height: 1.5;
    }
}

/* ============================= */
/* TOUCH DEVICES (NO HOVER JUMP) */
/* ============================= */
@media (hover: none) {
    .card-hover:hover {
        transform: none;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }
}



/* ================================ */
/* EXACT BEFORE & AFTER MATCH       */
/* ================================ */

.ba-exact-header {
    text-align: center;
    margin-bottom: 70px;
}

.ba-exact-header p {
    margin-top: 12px;
    font-size: 16px;
    color: #6b7280;
}

/* MAIN GRID */
.ba-exact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
}

/* COLUMN */
.ba-col-label {
    display: block;
    /* IMPORTANT */
    width: fit-content;
    /* shrink to text */
    margin: 0 auto 28px auto;
    /* centers horizontally */
    padding: 8px 24px;

    text-align: center;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 1px;

    border-radius: 999px;
}

/* BEFORE */
.ba-col-label.before {
    background: #111827;
    color: #ffffff;
}

/* AFTER */
.ba-col-label.after {
    background: #20ba68;
    color: #ffffff;
}

/* IMAGE GRID */
.ba-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* TOP IMAGES */
.ba-col-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

/* BOTTOM LARGE IMAGE */
.ba-col-more {
    grid-column: span 2;
    height: 300px;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

.ba-col-more img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.ba-col-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

/* ============================= */
/* TABLET (≤ 1024px) */
/* ============================= */
@media (max-width: 1024px) {

    .ba-exact-grid {
        gap: 60px;
    }

    .ba-col-label {
        font-size: 22px;
        padding: 8px 20px;
    }

    .ba-col-grid img {
        height: 220px;
    }

    .ba-col-more {
        height: 260px;
    }
}

/* ============================= */
/* MOBILE (≤ 768px) */
/* ============================= */
@media (max-width: 768px) {

    .ba-exact-header {
        margin-bottom: 50px;
        padding: 0 16px;
    }

    .ba-exact-header h2 {
        font-size: 1.9rem;
    }

    .ba-exact-header p {
        font-size: 14px;
    }

    /* Stack BEFORE / AFTER */
    .ba-exact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ba-col-label {
        font-size: 20px;
        margin-bottom: 22px;
    }

    .ba-col-grid {
        gap: 18px;
    }

    .ba-col-grid img {
        height: 200px;
    }

    .ba-col-more {
        height: 240px;
    }
}

/* ============================= */
/* SMALL MOBILE (≤ 480px) */
/* ============================= */
@media (max-width: 480px) {

    .ba-exact-header h2 {
        font-size: 1.7rem;
    }

    .ba-col-label {
        font-size: 18px;
        padding: 6px 18px;
    }

    .ba-col-grid {
        grid-template-columns: 1fr;
    }

    /* Stack images vertically */
    .ba-col-more {
        grid-column: span 1;
        height: 220px;
    }

    .ba-col-grid img {
        height: 180px;
    }

    .ba-col-overlay {
        font-size: 14px;
    }
}
