/* Hero Section Styles */
.hero-section {
    background-color: #b30000;
    overflow: hidden;
    min-height: 100vh;
}

    /* Container adjustments */
/*    .hero-section .container-fluid {
        height: 100%;
    }

    .hero-section .row {
        min-height: auto;
    }*/

@media (min-width: 992px) {
/*    .hero-section .row {
        min-height: 100vh;
    }*/
}

/* Hero heading styles */
.hero-heading {
    font-size: calc(1.5rem + 2vw);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0;
}

@media (min-width: 1200px) {
    .hero-heading {
        font-size: 2.75rem;
    }
}

.hero-heading em {
    font-style: italic;
}

/* Text column */
.hero-text-col {
    padding-top: 2.5rem;
    padding-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-text-col h1 {
        text-align: center;
    }

@media (min-width: 992px) {
    .hero-text-col {
        padding-top: 0;
        padding-bottom: 0;
        justify-content: flex-start;
        min-height: 100vh;
    }

        .hero-text-col h1 {
            text-align: left;
        }
}

/* Image column */
.hero-image-col {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0 !important;
}

@media (min-width: 992px) {
    .hero-image-col {
        justify-content: flex-end;
        align-items: flex-end;
    }
}

/* Image wrapper - for positioning the badge */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}

@media (min-width: 992px) {
    .hero-image-wrapper {
        height: 100vh;
        justify-content: flex-end;
    }
}

/* Lady with phone image */
.hero-lady-image {
    display: block;
    width: 80%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    object-position: bottom;
}

@media (min-width: 992px) {
    .hero-lady-image {
        max-width: none;
        width: auto;
        height: 100%;
        max-height: 100vh;
        object-fit: contain;
        object-position: bottom right;
    }
}

/* Gift badge positioning */
.gift-badge {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 150px;
    height: auto;
    z-index: 2;
}

@media (min-width: 576px) {
    .gift-badge {
        max-width: 170px;
        bottom: 12%;
    }
}

@media (min-width: 992px) {
    .gift-badge {
        max-width: 200px;
        bottom: 10%;
        left: auto;
        right: 25%;
        transform: none;
    }
}

/* Metrics Section Styles */


.metrics-section {
    padding: 60px 0 80px;
    background-color: #ffffff;
}

.section-title {
    color: #820000;
}

.metric-card {
    padding: 10px 0;
}

.metric-number-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.metric-number {
    font-size: 100px;
    color: #AD0000;
    line-height: 50px;
    letter-spacing: -0.03em;
}

.metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-img {
    width: 24px;
    height: 24px;
}

.metric-title {
    margin-bottom: 8px;
    color: #820000;
}

.metric-description {
    line-height: 1.5;
    color: #820000;
    margin-bottom: 0;
    max-width: 220px;
}

/* Desktop adjustments */
@media (min-width: 992px) {
    .icon-img {
        width: 28px;
        height: 28px;
    }

    .metric-title {
        font-size: 1.125rem;
    }

    .metric-description {
        font-size: 0.9375rem;
    }
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .metrics-section {
        padding: 40px 0 60px;
    }

    .metric-card {
        padding: 5px 0;
    }

    .metric-number-wrapper {
        margin-bottom: 12px;
    }

    .metric-number {
        font-size: 60px;
        line-height: 30px;
    }

    .icon-img {
        width: 18px;
        height: 18px;
    }

    .metric-description {
        max-width: 100%;
    }
}




.customer-enjoy-section {
    background-color: #ffffff;
}

.customer-enjoy-wrapper {
    max-width: 1200px;
}

.customer-enjoy-container {
    gap: 12px; /*  Gap between columns on desktop */
}


.customer-enjoy-image-col {
    /*width: 400px;*/ /*  Image column width */
    height: 680px; /*  Image column height */
    background-color: #b30000;
    border-radius: 20px; /* 20px 0 0; */
    overflow: hidden;
    flex-shrink: 0;
}

.customer-enjoy-image {
    object-fit: cover;
    object-position: center top;
}


.customer-enjoy-content-col {
    width: 600px; /*  Text column width */
    height: 680px; /*  Text column height */
    background: linear-gradient(180deg, #B30000 0%, #730909 100%);
    border-radius: 20px;
    flex-shrink: 0;
}

.customer-enjoy-content {
    padding: 60px 50px;
}

/* List bullet styling */
.customer-enjoy-list li {
    margin-bottom: 14px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

    .customer-enjoy-list li::before {
        content: "•";
        position: absolute;
        left: 0;
    }


@media (max-width: 1199.98px) and (min-width: 992px) {
    .customer-enjoy-image-col {
        /*width: 340px;*/ /* Medium desktop image width */
        height: 580px; /* Medium desktop image height */
    }

    .customer-enjoy-content-col {
        width: 500px; /*  Medium desktop text width */
        height: 580px; /*  Medium desktop text height */
    }

    .customer-enjoy-content {
        padding: 40px 35px;
    }

    .customer-enjoy-list li {
        margin-bottom: 12px;
    }
}


@media (max-width: 991.98px) {
    .customer-enjoy-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    /* Image - narrower with white space around */
    .customer-enjoy-image-col {
        /*width: 90%;*/ /*  Image width (% for white space) */
         /*  Image height on mobile */
        border-radius: 20px 20px 0 0;
        z-index: 1;
    }

    /* Text - FULL WIDTH, overlaps image */
    .customer-enjoy-content-col {
        width: 100%;
        height: auto;
        border-radius: 0;
        margin-top: -20px; /*  Overlap amount */
        z-index: 2;
        margin-top: -300px !important;
    }

    .customer-enjoy-content {
        padding: 40px 30px;
    }

    .customer-enjoy-list li {
        margin-bottom: 10px;
        padding-left: 20px;
    }
}


@media (max-width: 575.98px) {
    .customer-enjoy-image-col {
        /*width: 88%;*/ /* Image width on small mobile */
        /*height: 260px;*/ /* Image height on small mobile */
        border-radius: 16px 16px 0 0;
    }

    .customer-enjoy-content-col {
        margin-top: -10px; /*  Overlap on small mobile */
        margin-top: -300px !important;
    }

    .customer-enjoy-content {
        padding: 30px 20px;
    }

    .customer-enjoy-list li {
        margin-bottom: 8px;
        padding-left: 18px;
    }
}

/* Register Form Styles */

/* Wrapper Container */
.wrapper-container {
    background-color: #f6f6f6;
    min-height: 100vh;
    padding: 60px 20px;
    display: flex;
    align-items: center;
}

/* Register Content Container */
.register-content {
    background-color: transparent;
    max-width: 580px;
    margin: 0 auto;
}

/* Register Title */
.register-title {
    color: #000000;
    margin-bottom: 24px;
}

/* Info Banner */
.info-banner {
    background-color: #ffffff;
    border-radius: 50px;
    padding: 12px 20px;
    margin-bottom: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.warning-icon-wrapper {
    flex-shrink: 0;
}

    .warning-icon-wrapper img,
    .warning-icon-wrapper svg {
        width: 20px;
        height: 20px;
    }

.text-blue {
    color: #1671d9;
}

/* Form Styles */
.register-form {
    margin-top: 8px;
}

    .register-form .form-control,
    .register-form .form-select {
        height: 56px;
        padding: 16px 20px;
        border: 1px solid var(--grey-200);
        border-radius: 8px;
        background-color: #ffffff;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .register-form .form-select {
        background-image: url("icons/chevron-down.svg");
        background-repeat: no-repeat;
        background-position: right 16px center;
        background-size: 16px 12px;
        padding-right: 45px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

        .register-form .form-select:not([value=""]):valid {
            color: var(--grey-700);
        }

        .register-form .form-select option {
            color: var(--grey-700);
        }

        .register-form .form-control:focus,
        .register-form .form-select:focus {
            border-color: #1671d9;
            box-shadow: 0 0 0 3px rgba(22, 113, 217, 0.1);
            outline: none;
        }

    .register-form .mb-3 {
        margin-bottom: 16px !important;
    }

    .register-form .mb-4 {
        margin-bottom: 20px !important;
    }

/* Submit Button */
.btn-register {
    background-color: #be2626;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    height: 52px;
    padding: 14px 24px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

    .btn-register:hover {
        background-color: #a82020;
        color: #ffffff;
    }

    .btn-register:active {
        background-color: #921c1c;
        transform: scale(0.99);
    }

    .btn-register:focus {
        box-shadow: 0 0 0 3px rgba(190, 38, 38, 0.3);
        outline: none;
    }

/* Responsive Adjustments */
@media (max-width: 576px) {
    .wrapper-container {
        padding: 40px 16px;
    }

    .register-title {
        margin-bottom: 20px;
    }

    .info-banner {
        padding: 10px 16px;
        border-radius: 40px;
        margin-bottom: 24px;
    }

    .register-form .form-control,
    .register-form .form-select {
        height: 50px;
        padding: 14px 16px;
    }

    .btn-register {
        height: 48px;
    }
}

@media (min-width: 768px) {
    .wrapper-container {
        padding: 80px 24px;
    }

    .info-banner {
        padding: 14px 24px;
    }
}

/* Fix for select color when value is selected */
.register-form .form-select.selected {
    color: var(--grey-700);
}