/* ========== Hero Layout ========== */
.custom-container {
    max-width: 1600px;
    margin: 0 auto;
}

.hero-section {
    padding: clamp(10px, 5vw, 30px) 0;
}

.hero-section .row {
    overflow: clip;
}

.hero-section .col-lg-4 {
    position: relative;
    overflow: visible;
    text-align: center;
}

/* ========== Typography ========== */
.hero-section .intro-text {
    font-family: 'Nunito', serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(17px, 2vw, 23px);
    line-height: clamp(23px, 3vw, 28px);
    color: #DDA08C;
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-family: 'Nunito', serif;
    font-style: normal;
    font-weight: 900;
    font-size: clamp(40px, 5vw, 79px);
    line-height: clamp(40px, 5vw, 67px);
    max-width: 580px;
    color: #1C313D;
    position: relative;
    z-index: 1;
}

.hero-section h1 span {
    color: #88B7C6;
}

.hero-section .description-text {
    font-family: 'Nunito', serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(18px, 2vw, 25px);
    line-height: clamp(25px, 3vw, 30px);
    max-width: clamp(250px, 28vw, 390px);
    color: #3C5963;
    position: relative;
    z-index: 1;
}

/* ========== Media Queries to fix text size on mobile ========== */
@media (max-width: 991px) {
    .hero-section .description-text {
        max-width: 390px;
    }
}

/* ========== Buttons ========== */
.hero-section .btn-success {
    background: #86D29F;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.11);
    border-radius: 6px;
    border: none;
    font-family: 'Nunito Sans', serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: clamp(22px, 2vw, 28px);
    padding: clamp(9px, 1vw, 14px) clamp(19px, 2vw, 28px);
    color: #FFFFFF;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero-section .btn-success i {
    font-size: 33px;
    margin-right: 20px;
}

.hero-section .btn-success:hover {
    background-color: #7abb95;
}

/* ========== Image ========== */
.hero-img {
    max-width: none;
    width: clamp(320px, 50vw, 1250px);
    height: auto;
    display: inline-block;
    transform: none;
    margin: 0 auto;
}

/* ========== Features List ========== */
.hero-section .features-list {
    position: relative;
    z-index: 1;
}

.hero-section .features-list a {
    text-decoration: none;
    align-items: center;
    gap: 10px;
}

.hero-section .features-list .text {
    font-family: 'Nunito', serif;
    font-style: normal;
    font-weight: 600;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: clamp(18px, 2vw, 22px);
    color: #1C313D;
}

.hero-section .features-list a:hover {
    color: #6CAAB9;
}

/* ========== Number styles ========== */
.feature-1 .number,
.feature-2 .number,
.feature-3 .number,
.feature-4 .number,
.feature-5 .number,
.feature-6 .number {
    font-family: 'Nunito', serif;
    font-style: normal;
    font-weight: 900;
    font-size: clamp(20px, 2vw, 27px);
    color: #1C313D;
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}

/* ========== Number underline colors ========== */
.feature-1 .number::after {
    background-color: #86D29F;
}

.feature-2 .number::after {
    background-color: #E47C50;
}

.feature-3 .number::after {
    background-color: #7D71BA;
}

.feature-4 .number::after {
    background-color: #86D29F;
}

.feature-5 .number::after {
    background-color: #D2BB86;
}

.feature-6 .number::after {
    background-color: #7FA1B7;
}

.number::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 4px;
    width: 100%;
    border-radius: 2px;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: scaleX(1);
    transform-origin: left;
}

a:hover .number::after {
    transform: scaleX(11);
}

/* ========== Hero Section Media Queries ========== */
/* Medium screens: put image below columns, make it larger */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-img {
        max-width: none;
        width: clamp(560px, 70vw, 1300px);
        height: auto;
        transform: none;
        margin: 0 auto;
        display: inline-block;
    }
}

/* Large screens: restore overlap effect */
@media (min-width: 992px) {
    .hero-img {
        max-width: none;
        width: clamp(420px, 50vw, 1250px);
        height: auto;
        transform: translateX(max(-460px, -20vw)) translateY(clamp(0px, 2vh, 24px));
    }
}

/* ========== Partner Section ========== */
.partner-section {
    padding-bottom: clamp(10px, 5vw, 30px);
}

.brand-strip {
    min-height: 90px;
}

.brand-icon {
    width: clamp(60px, 8vw, 93px);
    height: auto;
    object-fit: contain;
    display: block;
    margin-inline: auto;
    filter: grayscale(15%);
    opacity: 0.95;
    transition: transform .2s ease, filter .2s ease, opacity .2s ease;
    user-select: none;
}

.brand-icon:hover,
.brand-icon:focus {
    transform: translateY(-2px) scale(1.03);
    filter: none;
    opacity: 1;
}

/* ========== Partner Section Media Queries ========== */
@media (min-width: 992px) {
    .brand-strip {
        gap: 3rem;
    }
}

@media (max-width: 420px) {
    .brand-strip.g-4 > * {
        padding: .75rem;
    }
}

/* ========== What Is Section ========== */
.what-is-section .section-title {
    display: flex;
    align-items: center;
    font-family: 'Nunito', serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(18px, 2vw, 21px);
    line-height: clamp(24px, 3vw, 29px);
    color: #1C313D;
    margin-bottom: 1.5rem;
}

.what-is-section .section-title strong {
    font-weight: 900;
}

.what-is-section .title-line {
    display: inline-block;
    width: 70px;
    height: 5px;
    background-color: #7FA1B7;
    margin-right: 0.5rem;
    border-radius: 6px;
}

/* Container inside each Splide slide */
#features-carousel .slide-container {
    box-sizing: border-box;
    background: #FEFEFE;
    border: 2px solid #F5F5F5;
    border-radius: 31px;
    padding: 50px;
}

/* Feature card */
#features-carousel .feature-box {
    position: relative;
    background: #FFFFFF;
    padding: 26px;
    display: flex;
    align-items: stretch;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.09);
    border-radius: 20px;
}

#features-carousel .feature-content {
    padding-right: 120px;
    width: 100%;
}

#features-carousel .feature-title {
    font-family: 'Nunito Sans', serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #404040;
}

#features-carousel .feature-text {
    font-family: 'Nunito Sans', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #5F5F5F;
}

#features-carousel .feature-number {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Nunito', serif;
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 33px;
    color: #4D9B6F;
}

#features-carousel .feature-illustration {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
}

/* Colors per item */
#features-carousel .item-1 .feature-number { background: #D2FFE4; color: #4D9B6F; }
#features-carousel .item-2 .feature-number { background: #FFDDCE; color: #D39859; }
#features-carousel .item-3 .feature-number { background: #C5E3F6; color: #618AA2; }
#features-carousel .item-4 .feature-number { background: #D1C9F9; color: #796DB3; }

/* ========== What Is Section Media Queries ========== */
@media (max-width: 991.98px) {
    #features-carousel .feature-content { padding-right: 96px; }
    #features-carousel .feature-illustration { width: 90px; }
    #features-carousel .slide-container { padding: 35px; }
}

@media (max-width: 575.98px) {
    #features-carousel .feature-content { padding-right: 0; }
    #features-carousel .feature-illustration { display: none; }
    #features-carousel .slide-container { padding: 10px; }
}

/* ===========================================
   Function Section - Titles & Intro Text
   =========================================== */
.function-section .section-title {
    display: flex;
    align-items: center;
    font-family: 'Nunito', serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(18px, 2vw, 21px);
    line-height: clamp(24px, 3vw, 29px);
    color: #1C313D;
    margin-bottom: 1.5rem;
}
.function-section.section-title strong {
    font-weight: 900;
}
.function-section .title-line {
    display: inline-block;
    width: 70px;
    height: 5px;
    background-color: #86D29F;
    margin-right: 0.5rem;
    border-radius: 6px;
}
.function-section .section-text {
    font-family: 'Nunito', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 19px;
    line-height: 26px;
    color: #000000;
}

/* ===========================================
   Layout - 3 Column Grid
   =========================================== */
.function-grid-cols {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr;
    margin-top: 28px;
}
@media (min-width:992px) {
    .function-grid-cols {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }
}

/* ===========================================
   Column Containers
   =========================================== */
.function-col {
    position: relative;
    display: grid;
    place-items: center;
    max-width: 340px;
}
.function-col--middle {
    grid-template-rows: auto auto;
    gap: 28px;
    align-content: center;
    justify-items: center;
}

/* ===========================================
   Card Styles
   =========================================== */
.function-card {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: min(100%, 520px);
    text-align: center;
    padding: 0 50px;
    border-radius: 18px;
    border: 1px solid rgba(16,24,40,.06);
    box-shadow: 0 10px 28px rgba(16,24,40,.08);
}

/* Card Background Colors */
.function-card--blue     { background: #EEF6FE; }
.function-card--green    { background: #EAFFF1; }
.function-card--lavender { background: #F0EDFF; }
.function-card--peach    { background: #FFF7EF; }

/* ===========================================
   Card Content Styles
   =========================================== */
.why-icon {
    width: 61px;
    height: 61px;
    object-fit: contain;
    /* margin-bottom: 14px; */
}
.why-title {
    font-family: 'Nunito', serif;
    font-style: normal;
    font-weight: 600;
    font-size: 23px;
    line-height: 31px;
    text-align: center;
    color: #4E4E4E;
}
.why-copy {
    font-family: 'Nunito Sans', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    text-align: center;
    color: #4E4E4E;
}

/* ===========================================
   Decorative Lines & Dots (Desktop)
   =========================================== */
.route {
    position: absolute;
    pointer-events: none;
}
.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    z-index: 2;
}

@media (min-width:992px) {
    /* Left column vertical + horizontal lines */
    .function-col--left .route.v {
        right: 110px;
        top: 95px;
        bottom: 56px;
        border-left: 2px dashed #DADDE3;
        height: 520px;
    }
    .function-col--left .route.h.top {
        top: 90px;
        right: -80px;
        width: 190px;
        border-top: 2px dashed #DADDE3;
    }
    .function-col--left .route.h.bottom {
        bottom: 90px;
        right: -80px;
        width: 190px;
        border-top: 2px dashed #DADDE3;
    }

    /* Right column vertical + horizontal lines */
    .function-col--right .route.v {
        left: 110px;
        top: 95px;
        bottom: 56px;
        border-left: 2px dashed #DADDE3;
        height: 520px;
    }
    .function-col--right .route.h.top {
        top: 90px;
        left: -80px;
        width: 190px;
        border-top: 2px dashed #DADDE3;
    }
    .function-col--right .route.h.bottom {
        bottom: 90px;
        left: -80px;
        width: 190px;
        border-top: 2px dashed #DADDE3;
    }

    /* Dot positioning (desktop) */
    .function-col--left .dot.top {
        top: 85px;
        left: 225px;
    }
    .function-col--left .dot.bottom {
        bottom: 85px;
        left: calc(50% - -53px);
    }
    .function-col--right .dot.top {
        top: 85px;
        right: 225px;
    }
    .function-col--right .dot.bottom {
        bottom: 85px;
        right: calc(50% - -53px);
    }
}

/* ===========================================
   Decorative Dots (Tablet breakpoint)
   =========================================== */
@media (max-width:1199.98px) {
    .function-col--left .dot.top    { left: 177px; }
    .function-col--left .dot.bottom { left: calc(50% - -32px); }
    .function-col--right .dot.top   { right: 177px; }
    .function-col--right .dot.bottom{ right: calc(50% - -32px); }
}

/* ===========================================
   Mobile adjustments
   =========================================== */
@media (max-width:991.98px) {
    .route, .dot { display: none; }
    .function-col { margin: auto; }
}

/* ===========================================
   Fixed Heights & Centering for Side Cards
   =========================================== */
.function-card--blue,
.function-card--peach {
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
    display: grid;
    grid-auto-rows: max-content;
    align-content: center;
    justify-items: center;
    text-align: center;
    row-gap: 10px;
}

/* ===========================================
   Minimum Heights & Centering for Middle Cards
   =========================================== */
.function-card--green,
.function-card--lavender {
    min-height: 340px;
    display: grid;
    grid-auto-rows: max-content;
    align-content: center;
    justify-items: center;
    text-align: center;
    row-gap: 10px;
}

/* ===========================================
   Dot Background Colors
   =========================================== */
.bg-purple { background: #8B7CDA; }
.bg-orange { background: #FEAD55; }
.bg-blue   { background: #6DC7E1; }
.bg-green  { background: #86D29F; }

/* ========================================
   Preview Section — General Layout & Title
======================================== */
.preview-section .section-title {
    display: flex;
    align-items: center;

    font-family: 'Nunito', serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(18px, 2vw, 21px);
    line-height: clamp(24px, 3vw, 29px);
    color: #1C313D;

    margin-bottom: 1.5rem;
}

.preview-section.section-title strong {
    font-weight: 900;
}

.preview-section .title-line {
    display: inline-block;
    width: 70px;
    height: 5px;
    background-color: #7D71BA;
    margin-right: 0.5rem;
    border-radius: 6px;
}

/* ========================================
   Carousel Track Spacing
======================================== */
#preview-carousel-track {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    #preview-carousel-track {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 576px) {
    #preview-carousel-track {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}


/* ========================================
   Slide Layout
======================================== */
.preview-wrapper {
    display: flex;
    flex-direction: row;
    gap: 0;
}

.preview-left,
.preview-right {
    flex: 1;
}

/* Slide box (text area) */
.info-box {
    background: #FFFFFF;
    border-top-left-radius: 47px;
    border-bottom-left-radius: 47px;
    padding: 30px 60px;
}

/* Slide header (icon + title) */
.info-header {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: start;
    gap: 12px;
}

.icon-box {
    margin-bottom: 8px;
}

.info-icon {
    width: 100px;
    height: 80px;
    object-fit: contain;
}

.info-title {
    font-family: 'Nunito', serif;
    font-style: normal;
    font-weight: 600;
    font-size: clamp(20px, 2vw, 24px);
    line-height: clamp(28px, 2.5vw, 33px);
    color: #1C313D;
}

.info-text {
    font-family: 'Nunito', serif;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: clamp(22px, 2vw, 25px);
    color: #526C87;
}

/* Slide right side (phone preview image) */
.phone-preview {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* ========================================
   Splide Carousel Styling
======================================== */

/* Default slides */
#preview-carousel .splide__slide {
    flex: 0 0 auto;
    width: calc((100% / 1.5) - 2rem);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Active slide highlight */
#preview-carousel .splide__slide.is-active {
    opacity: 1;
    transform: scale(1.02);
}

/* Reset Bootstrap .container inside slides */
#preview-carousel .splide__slide .container {
    max-width: 100% !important;
    padding-left: 0;
    padding-right: 0;
}

/* ========================================
   Responsive Adjustments
======================================== */

/* Tablet & below */
@media (max-width: 768px) {
    .preview-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .preview-left,
    .preview-right {
        flex: unset;
        width: 100%;
    }

    .preview-right img{
        margin: auto;
    }

    .info-box {
        border-radius: 20px;
        padding: 20px;
    }

    .info-header {
        align-items: center;
        text-align: center;
    }

    .info-icon {
        width: 70px;
        height: 60px;
    }
}

/* ========================================
   Why Section — General Layout & Title
======================================== */

.why-section .section-title {
    display: flex;
    align-items: center;
    font-family: 'Nunito', serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(18px, 2vw, 21px);
    line-height: clamp(24px, 3vw, 29px);
    color: #1C313D;
    margin-bottom: 1.5rem;
    white-space: nowrap;
}

.why-section .section-title strong {
    font-weight: 900;
}

.why-section .title-line {
    display: inline-block;
    width: 70px;
    height: 5px;
    background-color: #7FA1B7;
    margin-right: 0.5rem;
    border-radius: 6px;
}

/* Container inside each Splide slide */
.why-section .slide-container {
    box-sizing: border-box;
    background: #FEFEFE;
    border: 2px solid #F5F5F5;
    border-radius: 31px;
    padding: 50px;
}

/* Feature card */
.why-section .feature-box {
    position: relative;
    background: #FFFFFF;
    padding: 26px;
    display: flex;
    align-items: stretch;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.09);
    border-radius: 20px;
}

.why-section .feature-content {
    padding-right: 120px;
    width: 100%;
}

.why-section .feature-title {
    font-family: 'Nunito', serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #404040;
}

.why-section .feature-text {
    font-family: 'Nunito', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #5F5F5F;
}

.why-section .feature-number {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 33px;
    color: #4D9B6F;
    background: #F2F9F5;
}

.why-section .feature-illustration {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    max-width: 35%;
}

/* Colors per item */
.why-section .item-1 .feature-number { background: #D2FFE4; color: #4D9B6F; }
.why-section .item-2 .feature-number { background: #FFDDCE; color: #D39859; }
.why-section .item-3 .feature-number { background: #C5E3F6; color: #618AA2; }
.why-section .item-4 .feature-number { background: #D1C9F9; color: #796DB3; }

/* ========== Why Section Media Queries ========== */
@media (max-width: 991.98px) {
    .why-section .feature-content { padding-right: 96px; }
    .why-section .feature-illustration { width: 90px; }
    .why-section .slide-container { padding: 35px; }
}

@media (max-width: 575.98px) {
    .why-section .feature-content { padding-right: 0; }
    .why-section .feature-illustration { display: none; }
    .why-section .slide-container { padding: 10px; }
}

/* ========================================
   Price Section — General Layout & Title
======================================== */

.price-section .section-title {
    display: flex;
    align-items: center;
    font-family: 'Nunito', serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(18px, 2vw, 21px);
    line-height: clamp(24px, 3vw, 29px);
    color: #1C313D;
    margin-bottom: 1.5rem;
}

.price-section .section-title strong {
    font-weight: 900;
}

.price-section .title-line {
    display: inline-block;
    width: 70px;
    height: 5px;
    background-color: #D2BB86;
    margin-right: 0.5rem;
    border-radius: 6px;
}

.plan-card {
    max-width: 400px;
    padding: 30px 40px;
    margin: auto;
}

/* Free Plan Card */
.free-plan {
    background: #fff;
    border: 1px solid #e5eaf0;
    border-top: 5px solid #9EBCD5;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Paid Plan Card */
.paid-plan {
    background: linear-gradient(180deg, #2E425E 0%, #456178 100%);
    border-top: 5px solid #022643;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Title */
.free-plan-title {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 800;
    font-size: 28px;
    line-height: 38px;

    color: #53A073;
}
.paid-plan-title {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 800;
    font-size: 28px;
    line-height: 38px;

    color: #FFFFFF;
}

/* Subtitle */
.free-plan-subtitle {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #3F3F3F;
    align-items: center;
}
.paid-plan-subtitle {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #DEDEDE;
    align-items: center;
}

/* Price */
.free-plan-price {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 65px;

    color: #000000;
}
.free-plan-price span {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;

    color: #626262;
}

.paid-plan-price {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 65px;
}
.paid-plan-price span {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;

    color: #E4E4E4;
}
.paid-plan-price strong {
    color: #53A073;
}

/* Features */
.free-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.paid-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.free-plan-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;

    color: #424242;
}
.paid-plan-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;

    color: #DEDEDE;
}

.free-plan-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23CEE6F6'/%3E%3Cpath d='M6 10.5L9 13.5L14 7' stroke='%2345789A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
}
.paid-plan-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%23CEE6F6'/%3E%3Cpath d='M6 10.5L9 13.5L14 7' stroke='%2345789A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
}

/* Button */
/*.free-plan-btn {*/
/*    display: inline-block;*/
/*    background: #CEE6F6;*/
/*    border: none;*/
/*    border-radius: 8px;*/
/*    padding: 14px 60px;*/
/*    cursor: pointer;*/
/*    transition: 0.2s;*/

/*    font-family: 'Nunito';*/
/*    font-style: normal;*/
/*    font-weight: 700;*/
/*    font-size: 18px;*/
/*    line-height: 21px;*/

/*    color: #274E68;*/
/*}*/
/*.paid-plan-btn {*/
/*    display: inline-block;*/
/*    background: #274E68;*/
/*    border: none;*/
/*    border-radius: 8px;*/
/*    padding: 14px 60px;*/
/*    cursor: pointer;*/
/*    transition: 0.2s;*/

/*    font-family: 'Nunito';*/
/*    font-style: normal;*/
/*    font-weight: 700;*/
/*    font-size: 18px;*/
/*    line-height: 21px;*/

/*    color: #E4E4E4;*/
/*}*/

/*.free-plan-btn:hover {*/
/*    background: #1A73E8;*/
/*    color: #fff;*/
/*    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);*/
/*    transform: translateY(-2px);*/
/*}*/
/*.paid-plan-btn:hover {*/
/*    background: #3EC27D;*/
/*    color: #fff;*/
/*    box-shadow: 0 4px 12px rgba(62, 194, 125, 0.35);*/
/*    transform: translateY(-2px);*/
/*}*/

/* ========================================
   Contact Section Styling
======================================== */

/* Section background */
.contact-section {
}

/* White card */
.contact-card {
    background: #F6FCFF;
    box-shadow: 0 4px 26px rgba(0, 0, 0, 0.07);
    border-radius: 26px;
    padding: 40px  100px 40px 30px;
}

/* Left panel */
.contact-left {
    position: relative;
    min-height: 350px;
}

/* Kid inside left panel */
.kid-illustration {
    position: absolute;
    bottom: -145px;
    left: -370px;
    max-height: 620px;
    z-index: 1;
    pointer-events: none;
}

.left-side-content-wrapper {
    background-color: #ECF7FF;
    border-radius: 18px;
}

.contact-text-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.contact-text-wrapper div {
    padding: 100px 50px 35px 50px;
}

.left-side-content-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #F6FCFF;
    width: 70px;
    height: 100px;
    z-index: 1;
    border-bottom-right-radius: 10px;
}

.left-side-content-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: #F6FCFF;
    width: 70px;
    height: 70px;
    z-index: 1;
    border-top-left-radius: 10px;
}

/* Text styles */
.contact-title {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    font-size: clamp(20px, 2vw + 1rem, 30px);
    line-height: clamp(28px, 3vw + 1rem, 41px);

    color: #1C313D;
}

.contact-title strong {
    font-weight: 900;
}

.contact-subtitle {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    font-size: clamp(16px, 1.2vw + 0.5rem, 21px);
    line-height: clamp(22px, 1.6vw + 0.5rem, 29px);

    color: #000000;
}

.contact-text {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    font-size: clamp(14px, 1vw + 0.5rem, 18px);
    line-height: clamp(20px, 1.4vw + 0.5rem, 25px);

    color: #4D4D4D;
}

/* Social icons */
.social-links a {
    font-size: 1.2rem;
    color: #1C313D;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: #0d6efd;
    transform: translateY(-2px);
}

.social-links {
    max-width: 360px;
    background-color: #E0F2FF;
    padding: 50px 50px 0 0;
    border-bottom-left-radius: 18px;
    border-top-right-radius: 18px;
}

.social-links div {
    background-color: #D8EFFF;
    padding: 20px 45px;
    border-bottom-left-radius: 18px;
    border-top-right-radius: 18px;
}

/* Right form */
.contact-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-right form {
    width: 100%;
}

.input-group-text {
    background: #f1f5f9;
    border: none;
    border-radius: 8px 0 0 8px;
    color: #6b7280;
    display: flex;
    align-items: center;
}

.input-group-textarea {
    align-items: unset;
    padding: 12px;
}

.form-control {
    border: none;
    background: #ECF7FF;
    border-radius: 0 8px 8px 0;
    padding: 12px;
}

.form-control:focus {
    box-shadow: 0 0 0 2px rgba(13,110,253,0.25);
    background: #fff;
}

.form-control input, .form-control textarea {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 23px;

    color: #426378;
}

.form-check {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;

    color: #486274;
}

.form-check-input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #486274;
    cursor: pointer;
    margin-top: -2px;
}

.form-check-input[type="checkbox"]:checked {
    background-color: #1C313D;
    border-color: #1C313D;
}

textarea.form-control {
    resize: none;
    min-height: 150px;
}

.contact-right .btn {
    background: #1C313D;
    border-radius: 6px;
    font-family: 'Nunito', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 23px;
    padding: 10px 60px;
    color: #FFFFFF;
    border: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-right .btn:hover {
    background: #274957;
    transform: translateY(-2px);
}

/* Responsive Tweaks */
@media (max-width: 1200px) {
    .contact-card {
        padding: 30px 40px;
    }

    .contact-text-wrapper div {
        padding: 70px 30px 30px;
    }

    .kid-illustration {
        max-height: 400px;
        left: -200px;
    }
}

@media (max-width: 992px) {
    .contact-card {
        flex-direction: column;
        padding: 30px 25px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-text-wrapper div {
        padding: 40px 60px;
    }

    .kid-illustration {
        display: none;
    }
}

@media (max-width: 768px) {
    .left-side-content-wrapper::before, .left-side-content-wrapper::after {
        display: none;
    }

    .contact-title {
        font-size: 22px;
        line-height: 30px;
    }

    .contact-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .contact-text {
        font-size: 14px;
        line-height: 21px;
    }

    .contact-text-wrapper div {
        padding: 20px 15px;
        text-align: center;
    }

    .contact-right .btn {
        width: 100%;
        margin-top: 15px;
        padding: 12px;
    }

    .form-check {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }

    .form-check-input {
        width: 16px;
        height: 16px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .social-links div {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .contact-card {
        border-radius: 16px;
        padding: 20px 15px;
    }

    .contact-right form .row > div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contact-left, .contact-right {
        margin: 10px auto
    }

    .input-group-text {
        font-size: 1rem;
        padding: 8px;
    }

    .form-control {
        font-size: 15px;
        padding: 10px;
    }

    textarea.form-control {
        min-height: 120px;
    }
}

/* ========================================
   Popup Wrapper
======================================== */

.modal-dialog {
    max-width: 720px;
}

.popup-container {
    border-radius: 16px;
    background: linear-gradient(to bottom, #ffffff, #e9f4ff);
    padding: clamp(16px, 4vw, 30px) clamp(24px, 6vw, 50px);
    position: relative;
    overflow: hidden;
    border: none;
}

/* Close button (top-right X) */
.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
}

/* Top decorative image */
.popup-top-img {
    margin-bottom: 15px;
}


/* ========================================
   Popup Typography
======================================== */

/* Brand / Logo text */
.brand {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 26px;
    line-height: 32px;
    color: #1C313D;
}
.brand strong {
    font-weight: 700;
}

/* Main heading */
.popup-text {
    font-family: 'Nunito';
    font-weight: 600;
    font-size: 21px;
    line-height: 29px;
    text-align: center;
    color: #1C313D;
}
.popup-text strong {
    font-weight: 700;
}

/* Highlighted message (blue box) */
.popup-message {
    font-family: 'Nunito';
    font-style: italic;
    font-weight: 600;
    font-size: 19px;
    line-height: 21px;
    text-align: center;
    max-width: 440px;
    color: #1C313D;
    padding: 8px 30px;
    border-radius: 6px;
    background: #E0F3FF;
    margin-left: auto;
    margin-right: auto;
}

/* Secondary text (below message) */
.popup-text-2 {
    font-family: 'Nunito';
    font-style: italic;
    font-weight: 600;
    font-size: 19px;
    line-height: 26px;
    text-align: center;
    max-width: 440px;
    color: #1C313D;
    margin-left: auto;
    margin-right: auto;
}


/* ========================================
   Popup Form (input + button)
======================================== */

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Email input wrapper */
.input-group {
    display: flex;
    align-items: center;
    max-width: 430px;
    width: 100%;
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    overflow: hidden;
}

/* Envelope icon */
.input-group-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    color: #7d8da1;
    background: #fff;
    border: none;
    font-size: 18px;
}

/* Email input field */
.popup-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 12px;
    border-radius: 0;
    background-color: white;

    font-family: 'Nunito';
    font-weight: 400;
    font-size: 17px;
    line-height: 23px;
    text-align: center;
    color: #7B99A9;
}
.popup-input::placeholder {
    color: #7B99A9;
    opacity: 0.8;
}

/* Submit button */
.popup-btn {
    background-color: #1C313D;
    border: 1px solid #3F7493;
    border-radius: 8px;
    padding: 16px 26px;

    font-family: 'Nunito';
    font-weight: 600;
    font-size: 17px;
    line-height: 23px;
    text-align: center;
    transition: background 0.2s ease;

    color: #FFFFFF;
}
.popup-btn:hover {
    background-color: #3F7493;
    border-color: #3F7493;
    color: #E6F4FF; /* lighter text */
}


/* ========================================
   Popup Bottom Image (Owl)
======================================== */

.popup-bottom-img .img-owl {
    position: absolute;
    bottom: 0;
    left: 0;
    max-height: 220px;
    width: auto;
    height: auto;
}

/* On tablets & smaller, scale down owl image */
@media (max-width: 768px) {
    .popup-bottom-img .img-owl {
        max-height: 150px;
    }
}

/* On phones, hide owl image completely */
@media (max-width: 480px) {
    .popup-bottom-img .img-owl {
        display: none;
    }
}

