/* ============================================
   Reset and Base Styles
   ============================================ */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-image: url('../images/Rectangle_3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    color: #1a5f1a;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ============================================
   Header Styles
   ============================================ */
.header {
    padding: clamp(12px, 2.5vw, 20px) clamp(15px, 3vw, 30px);
    background: transparent;
    position: relative;
    z-index: 10;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: auto;
    max-width: clamp(120px, 20vw, 200px);
    width: auto;
    display: block;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 14px;
}

.icon-globe {
    width: clamp(24px, 4vw, 35px);
    height: clamp(24px, 4vw, 35px);
    display: inline-block;
    object-fit: contain;
}

.icon-ucom {
    height: auto;
    max-width: clamp(100px, 18vw, 170px);
    width: auto;
    display: inline-block;
    object-fit: contain;
}

/* ============================================
   Main Content Styles
   ============================================ */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(20px, 4vw, 40px) clamp(15px, 3vw, 30px);
    width: 100%;
}

.main-title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 500;
    color: #003F3A;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: clamp(15px, 3vw, 25px);
    padding: 0 15px;
}

/* ============================================
   Features Section Styles
   ============================================ */
.features-section {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.features-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2vw, 15px);
    margin-bottom: clamp(25px, 4vw, 40px);
    flex-wrap: wrap;
}

.features-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(40px, 6vw, 60px);
    height: clamp(40px, 6vw, 60px);
    flex-shrink: 0;
}

.features-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.features-title {
    font-size: clamp(16px, 3vw, 22px);
    font-weight: 500;
    color: #003F3A;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 3vw, 25px);
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: clamp(8px, 2vw, 20px);
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: clamp(12px, 2.5vw, 20px);
    padding: clamp(12px, 2.5vw, 20px);
    background: transparent;
    transition: transform 0.3s ease;
    width: 100%;
}

.feature-item:hover {
    transform: translateY(-2px);
}

.feature-icon {
    font-size: clamp(24px, 4vw, 32px);
    flex-shrink: 0;
    color: #1a5f1a;
    line-height: 1;
    width: clamp(30px, 5vw, 40px);
    min-width: clamp(30px, 5vw, 40px);
    text-align: center;
}

.feature-icon img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

.feature-text {
    font-size: clamp(13px, 2vw, 16px);
    color: #003F3A;
    font-weight: 600;
    flex: 1;
    min-width: 0;
    line-height: 1.65;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.highlight {
    background: #fff;
    padding: 0.15em 0.55em;
    border-radius: 1em;
    font-weight: 700;
    display: inline;
    color: #3ea11c;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    line-height: 1.65;
    white-space: normal;
}

/* Special styling for Ayurvedic feature */
.feature-ayurvedic {
    position: relative;
    padding-right: 80px;
}

.ayurvedic-icon {
    font-size: 48px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    color: #1a5f1a;
    line-height: 1;
    flex-shrink: 0;
    pointer-events: none;
}

.ayurvedic-icon img {
    display: block;
    width: clamp(36px, 10vw, 52px);
    height: auto;
    max-height: 52px;
    object-fit: contain;
}

/* ============================================
   Bottom Section with CTA Button - FIXED
   ============================================ */
.bottom-section {
    position: relative;
    width: 100%;
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: clamp(16px, 3vw, 28px) clamp(15px, 3vw, 30px) clamp(24px, 4vw, 40px);
    margin-top: 0;
    overflow: visible;
    clear: both;
    z-index: 2;
    background-image: url('../images/front-view-cinnamon-mint-alogn-with-fresh-tea-white-ingredients-spices-color 2.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

/* Alternative shorter path if the long one doesn't work */
/* Try this if image doesn't show:
.bottom-section {
    background-image: url('../images/wellness-background.png');
}
*/

.cta-button {
    position: relative;
    z-index: 2;
    background: #3EA11C;
    color: #fff;
    border: none;
    padding: clamp(14px, 3vw, 20px) clamp(40px, 15vw, 180px);
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 4px rgba(0, 0, 0, 0.25);
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.5);
    font-family: inherit;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: clamp(280px, 85vw, 500px);
    min-width: 200px;
}

.cta-button:hover {
    background: #3EA11C;
    transform: translateY(-2px);
    box-shadow: 0 6px 4px rgba(0, 0, 0, 0.25);
}

.cta-button:active {
    transform: translateY(0);
}

/* ============================================
   Mobile Input Section (Bottom Section)
   ============================================ */
.mobile-input-section {
    width: 100%;
    max-width: clamp(280px, 85vw, 500px);
    margin: 0 auto clamp(10px, 2vw, 16px);
    padding: 0 20px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

/* ============================================
   Subscription Form Styles
   ============================================ */
.subscription-form {
    width: 100%;
    max-width: clamp(280px, 85vw, 500px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.subscription-label {
    font-family: 'Lato', sans-serif;
    font-size: clamp(15px, 2.2vw, 18px);
    font-weight: 600;
    color: #003F3A;
    text-align: center;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.subscription-input-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 50px;
    border: 2px solid #ffffff;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.subscription-input-wrapper:focus-within {
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
    border-color: #3EA11C;
    background-color: #ffffff;
}

.subscription-prefix {
    font-family: 'Lato', sans-serif;
    font-size: clamp(15px, 2.2vw, 17px);
    font-weight: 700;
    color: #003F3A;
    white-space: nowrap;
    padding-right: 8px;
    border-right: 1px solid rgba(0, 63, 58, 0.2);
}

.subscription-input {
    flex: 1;
    padding: 8px 4px;
    border: none;
    font-family: 'Lato', sans-serif;
    font-size: clamp(15px, 2.2vw, 17px);
    color: #003F3A;
    outline: none;
    background-color: transparent;
    font-weight: 500;
}

.subscription-input::placeholder {
    color: rgba(0, 63, 58, 0.5);
    font-weight: 400;
}

.subscription-input:focus {
    outline: none;
}

.input-error {
    min-height: 1.2em;
    font-family: 'Lato', sans-serif;
    font-size: clamp(12px, 1.8vw, 14px);
    color: #ffeb3b;
    text-align: center;
    margin-top: 6px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* ============================================
   Responsive Design - Large Desktop
   ============================================ */
@media screen and (min-width: 1400px) {
    .main-content {
        max-width: 1400px;
    }
    
    .features-list {
        max-width: 1000px;
    }
}

/* ============================================
   Responsive Design - Tablet
   ============================================ */
@media screen and (max-width: 1024px) {
    .main-content {
        max-width: 100%;
        padding: clamp(25px, 4vw, 35px) clamp(20px, 3vw, 25px) 0;
    }

    .features-list {
        max-width: 100%;
        padding-bottom: clamp(30px, 5vw, 40px);
    }
}

/* ============================================
   Responsive Design - Mobile
   ============================================ */
@media screen and (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .logo-image {
        max-width: 160px;
    }

    .header-icons {
        font-size: 12px;
        gap: 10px;
    }

    .icon-globe {
        width: 30px;
        height: 30px;
    }

    .icon-ucom {
        max-width: 120px;
    }

    .main-content {
        padding: 30px 20px 8px;
    }

    .mobile-input-section {
        margin-bottom: clamp(18px, 3vw, 30px);
        padding: 0 clamp(10px, 2vw, 15px);
    }

    .subscription-form {
        max-width: 100%;
    }

    .features-header {
        flex-direction: flex;
        gap: 10px;
        margin-bottom: 30px;
    }

    .features-icon {
        width: clamp(35px, 5.5vw, 55px);
        height: clamp(35px, 5.5vw, 55px);
    }

    .features-title {
        font-size: 28px;
    }

    .features-list {
        gap: 16px;
        padding-bottom: 20px;
    }

    .bottom-section {
        margin-top: 0;
        min-height: auto;
        padding-top: 12px;
        padding-bottom: clamp(20px, 4vw, 28px);
    }

    .feature-item {
        padding: 10px 12px;
        gap: 12px;
        align-items: flex-start;
    }

    .feature-icon {
        font-size: 28px;
        width: 35px;
    }

    .feature-text {
        font-size: 16px;
    }

    .feature-ayurvedic {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        gap: 10px;
        padding-right: 8px;
    }

    .feature-ayurvedic .feature-text {
        flex: 1;
        min-width: 0;
    }

    .feature-ayurvedic .ayurvedic-icon {
        display: block;
        position: static;
        right: auto;
        top: auto;
        transform: none;
        align-self: center;
        margin-left: auto;
        opacity: 0.65;
    }

    .feature-ayurvedic .ayurvedic-icon img {
        width: 48px;
        max-height: 48px;
    }

    .bottom-section {
        background-size: cover;
    }
}


@media screen and (max-width: 576px) {
    .features-header {
        justify-content: flex-start;
        padding-left: 20px;
        margin-bottom: 0px;
    }

    .features-icon {
        margin-right: 10px;
    }

    .feature-ayurvedic .ayurvedic-icon img {
        width: 48px;
        max-height: 48px;
    }

    .mobile-input-section {
        margin-bottom: clamp(12px, 2vw, 15px);
        padding: 0 clamp(8px, 2vw, 12px);
    }
    
    .subscription-label {
        color: #003F3A;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }

    .subscription-form {
        max-width: 100%;
        gap: clamp(6px, 1.5vw, 8px);
    }

    .subscription-input-wrapper {
        padding: clamp(8px, 2vw, 10px) clamp(12px, 3vw, 14px);
    }

    .bottom-section {
        margin-top: 0;
        min-height: auto;
        padding: clamp(12px, 2.5vw, 16px) clamp(12px, 3vw, 20px) clamp(20px, 4vw, 28px);
    }

    .features-list {
        padding-bottom: 16px;
    }
}



/* ============================================
   Responsive Design - Small Mobile
   ============================================ */
@media screen and (max-width: 425px) {
    .header-content {
        flex-direction: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .logo-image {
        max-width: 140px;
    }

    .mobile-input-section {
        margin-bottom: clamp(10px, 2vw, 12px);
        padding: 0 clamp(8px, 2vw, 10px);
    }
    
    .subscription-label {
        color: #003F3A;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }

    .subscription-form {
        gap: clamp(5px, 1.5vw, 6px);
    }

    .subscription-input-wrapper {
        padding: clamp(8px, 2vw, 9px) clamp(10px, 2.5vw, 12px);
        border-width: 1.5px;
    }

    .features-header {
        justify-content: flex-start;
        /* padding-left: 20px; */
        margin-bottom: 0px;
    }

    .features-title {
        font-size: 20px;
    }

    .features-icon {
        width: clamp(30px, 5vw, 50px);
        height: clamp(30px, 5vw, 50px);
        margin-right: 10px;
    }

    .feature-item {
        flex-direction: row;
        align-items: flex-start;
        padding: 8px 10px !important;
    }

    .feature-icon {
        font-size: 28px;
        width: 32px;
        min-width: 32px;
    }

    .features-list {
        gap: 14px;
        padding-bottom: 18px;
    }

    .feature-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .highlight {
        padding: 0.12em 0.45em;
        line-height: 1.7;
    }

    .feature-ayurvedic {
        gap: 8px;
        padding-right: 6px;
    }

    .feature-ayurvedic .ayurvedic-icon img {
        width: 48px;
        max-height: 48px;
    }

    .bottom-section {
        margin-top: 0;
        min-height: auto;
        padding: clamp(12px, 2.5vw, 16px) clamp(10px, 2vw, 15px) clamp(20px, 4vw, 28px);
    }

    .subscription-label {
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .cta-button {
        width: 100%;
        max-width: clamp(250px, 90vw, 290px);
    }
}






/* ============================================
   Responsive Design - Extra Small Mobile
   ============================================ */
   @media screen and (max-width: 425px) {
    .bottom-section {
        margin-top: 0;
        padding: clamp(12px, 2.5vw, 16px) clamp(10px, 2vw, 15px) clamp(18px, 3vw, 24px);
    }
}


@media screen and (max-width: 375px) {
    .mobile-input-section {
        margin-bottom: clamp(8px, 2vw, 10px);
        padding: 0 clamp(6px, 2vw, 8px);
    }
    
    .subscription-label {
        color: #003F3A;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }

    .subscription-input-wrapper {
        padding: clamp(7px, 2vw, 8px) clamp(8px, 2.5vw, 10px);
    }

    .cta-button {
        max-width: clamp(240px, 90vw, 277px);
    }

    .bottom-section {
        margin-top: 0;
        padding: clamp(10px, 2.5vw, 14px) clamp(8px, 2vw, 15px) clamp(16px, 3vw, 22px);
    }

    .features-list {
        padding-bottom: 14px;
    }
}


/* ============================================
   Accessibility Enhancements
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
button:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .header-icons,
    .cta-button {
        display: none;
    }

    body {
        background: white;
    }

    .bottom-section {
        background: white;
        border: 1px solid #ccc;
    }
}