/* Complete Color Scheme Redesign Based on Logo */
:root {
    /* Primary Colors from Logo */
    --navy: #2b325e;
    --mint-green: #8cc9a3;
    --light-green: #9ddbb4;
    --dark-green: #6aaa85;
    --white: #ffffff;
    --light-gray: #f0f2f8;

    /* Secondary & Supporting Colors */
    --navy-light: #3d4576;
    --navy-dark: #1e2445;
    --green-pale: #e5f2eb;
    --green-tint: #f4f9f6;
    --text-dark: #242a4e;
    --text-medium: #556080;

    /* Font Sizes */
    --big-font: clamp(2rem, 4vw, 4.3rem);
    --h2-font: clamp(1.5rem, 2.5vw, 2.2rem);
    --p-font: clamp(0.85rem, 1.1vw, 1rem);

    /* Custom Properties for Tagline */
    --tagline-font-size: clamp(0.65rem, 0.8vw, 0.8rem);
    --tagline-font-weight: 300;
    --tagline-color: #b4c6b9;
    --tagline-letter-spacing: 0.05em;
}

/* Base Reset */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
}

body {
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--navy);
    padding: clamp(0.5rem, 1.5vw, 1rem) clamp(1rem, 4%, 5rem);
    transition: all 0.45s ease;
    flex-wrap: wrap;
    box-shadow: 0 2px 15px rgba(30, 36, 69, 0.25);
}

header.sticky {
    background: var(--navy);
    padding: clamp(0.3rem, 1vw, 0.8rem) clamp(1rem, 4%, 5rem);
    box-shadow: 0 2px 10px rgba(30, 36, 69, 0.4);
}

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

.logo img {
    border-radius: 50%;
    width: clamp(45px, 7vw, 80px);
    height: clamp(45px, 7vw, 80px);
    object-fit: cover;
    transition: all 0.3s ease;
}

/* Navigation */
.navbar {
    display: flex;
    gap: clamp(0.2rem, 0.5vw, 0.5rem);
    flex-wrap: wrap;
    justify-content: center;
}

.navbar a {
    font-size: clamp(0.75rem, 0.9vw, 1rem);
    color: var(--white);
    font-weight: 400;
    padding: clamp(0.3rem, 0.7vw, 0.6rem) clamp(0.7rem, 1.2vw, 1.2rem);
    border-radius: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.navbar a:hover,
.navbar a.active {
    background: var(--mint-green);
    color: var(--navy);
    font-weight: 500;
}

/* Icons */
.icons {
    display: flex;
    align-items: center;
    gap: clamp(0.2rem, 0.7vw, 0.8rem);
}

.icons i {
    height: clamp(30px, 4.5vw, 45px);
    width: clamp(30px, 4.5vw, 45px);
    background: var(--mint-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--navy);
    font-size: clamp(0.9rem, 1.3vw, 1.2rem);
    transition: all 0.3s ease;
}

.icons i:hover {
    transform: scale(0.95);
    background: var(--light-green);
}

#menu-icon {
    display: none;
    color: var(--white);
    font-size: clamp(1.3rem, 1.8vw, 1.8rem);
    cursor: pointer;
    z-index: 10001;
    background: transparent;
}

/* Section Base */
section {
    padding: clamp(4rem, 6vw, 6rem) clamp(3%, 5vw, 5%);
}

/* Home Section */
.home {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    gap: clamp(1.5rem, 2vw, 2rem);
    position: relative;
}

.home-text {
    order: 1;
}

.home-img {
    order: 2;
    display: flex;
    justify-content: center;
}

.home-img img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    max-height: clamp(400px, 50vh, 500px);
    object-fit: cover;
    border: 3px solid var(--mint-green);
    box-shadow: 0 8px 25px rgba(30, 36, 69, 0.2);
}

.home-text h4 {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 500;
    color: var(--mint-green);
    margin-bottom: 0.5rem;
}

.home-text h1 {
    font-size: var(--big-font);
    color: var(--white);
    line-height: 1.2;
    margin: 1rem 0 0.5rem;
}

.home-text p {
    font-size: var(--p-font);
    color: var(--light-green);
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: var(--tagline-letter-spacing);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: clamp(0.8rem, 1.5vw, 1rem) clamp(1.5rem, 2.5vw, 1.8rem);
    background: var(--mint-green);
    color: var(--navy);
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn:hover {
    letter-spacing: 2px;
    background: var(--light-green);
}

/* Feature Section */
.feature {
    background-color: var(--green-tint);
}

.middle-text {
    text-align: center;
    margin-bottom: clamp(2rem, 3vw, 3rem);
}

.middle-text h2 {
    font-size: var(--h2-font);
    color: var(--navy);
    font-weight: 600;
}

span {
    color: var(--dark-green);
}

.feature-content,
.product-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1rem, 1.5vw, 1.5rem);
}

.row {
    padding: clamp(1.5rem, 2vw, 2rem);
    background: var(--white);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--green-pale);
    box-shadow: 0 5px 15px rgba(106, 170, 133, 0.08);
}

.main-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.row-img img {
    width: 100%;
    max-width: clamp(150px, 20vw, 170px);
    height: auto;
    margin: 0 auto;
}

.row-text {
    text-align: center;
}

.row-text h6 {
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    font-weight: 500;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.row-text h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--navy);
}

.row-text p {
    font-size: var(--p-font);
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.row-btn {
    display: inline-block;
    padding: clamp(0.5rem, 1vw, 0.7rem) clamp(1rem, 1.5vw, 1.5rem);
    background: var(--navy);
    color: var(--white);
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.row-btn:hover {
    letter-spacing: 1px;
    background: var(--navy-light);
}

.row:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(106, 170, 133, 0.12);
    border-color: var(--mint-green);
}

/* Product Section */
.product {
    background-color: var(--white);
}

.box {
    position: relative;
    padding: 1rem;
    transition: all 0.3s ease;
    background: var(--green-tint);
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(106, 170, 133, 0.05);
}

.box-img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--green-pale);
}

.box h3 {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.box h4 {
    font-size: var(--p-font);
    color: var(--text-medium);
    font-weight: 500;
    margin-bottom: 1rem;
}

.inbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    display: inline-block;
    padding: 0.3rem 1rem;
    border: 2px solid var(--mint-green);
    color: var(--navy);
    border-radius: 8px;
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    font-weight: 600;
    transition: all 0.3s ease;
}

.price:hover {
    letter-spacing: 1px;
    background: var(--mint-green);
}

.rating a {
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    color: var(--dark-green);
    margin-right: 0.2rem;
}

.heart i {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--navy);
    font-size: 1.2rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.heart i:hover {
    color: var(--white);
    background: var(--navy);
}

.box:hover {
    transform: translateY(-5px);
}

.box:hover .box-img img {
    transform: scale(1.02);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    min-height: clamp(350px, 40vh, 400px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding: clamp(1.5rem, 2vw, 2rem);
    box-shadow: 0 10px 30px rgba(30, 36, 69, 0.15);
    border: 1px solid var(--navy-light);
}

.cta-text {
    max-width: clamp(500px, 60vw, 600px);
    text-align: center;
}

.cta-text .logo img {
    width: clamp(100px, 15vw, 120px);
    height: auto;
    margin-bottom: 1.5rem;
    border: 3px solid var(--mint-green);
}

.cta-text h3 {
    font-size: var(--h2-font);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-text p {
    font-size: var(--p-font);
    color: var(--light-green);
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    padding: clamp(3rem, 5vw, 5rem) 5%;
    background-color: var(--navy);
    text-align: center;
}

.main-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 2vw, 2rem);
}

.contact-content h5 {
    font-size: clamp(1.8rem, 4vw, 3.3rem);
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-content li {
    margin-bottom: 1.5rem;
    display: inline-block;
    margin: 0 1rem;
}

.contact-content li a {
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--mint-green);
    transition: all 0.3s ease;
}

.contact-content li a:hover {
    color: var(--light-green);
    transform: translateY(-5px);
}

/* Footer */
.end-text {
    text-align: center;
    padding: clamp(1rem, 1.5vw, 1.5rem);
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    color: var(--mint-green);
    background: var(--navy);
}

/* Responsive Design */
@media (max-width: 1024px) {
    header {
        padding: clamp(0.5rem, 1.5vw, 1rem) 3%;
    }

    .navbar {
        gap: clamp(0.1rem, 0.3vw, 0.5rem);
    }

    .navbar a {
        font-size: clamp(0.7rem, 0.8vw, 0.9rem);
        padding: clamp(0.3rem, 0.6vw, 0.5rem) clamp(0.6rem, 1vw, 1rem);
    }
}

@media (max-width: 768px) {
    header {
        padding: clamp(0.4rem, 1vw, 0.8rem) 2%;
    }

    #menu-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: clamp(35px, 5vw, 45px);
        height: clamp(35px, 5vw, 45px);
        background: var(--mint-green);
        border-radius: 50%;
        color: var(--navy);
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 75vw);
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 1rem;
        transition: all 0.5s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        gap: 1rem;
    }

    .navbar.open {
        right: 0;
    }

    .navbar a {
        margin: 0.5rem 0;
        display: block;
        text-align: center;
        width: 100%;
        font-size: clamp(0.9rem, 1.2vw, 1rem);
    }

    .logo img {
        width: clamp(40px, 6vw, 60px);
        height: clamp(40px, 6vw, 60px);
    }

    .icons i {
        width: clamp(28px, 4vw, 40px);
        height: clamp(28px, 4vw, 40px);
        font-size: clamp(0.8rem, 1vw, 1rem);
    }
}

@media (max-width: 480px) {
    header {
        padding: clamp(0.3rem, 0.8vw, 0.5rem) 1rem;
    }

    .icons {
        gap: clamp(0.2rem, 0.5vw, 0.3rem);
    }

    #menu-icon {
        width: clamp(30px, 5vw, 35px);
        height: clamp(30px, 5vw, 35px);
    }

    .navbar {
        width: 100%;
        padding: clamp(1rem, 2vw, 1.5rem) 1rem;
    }

    .home {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-img img {
        max-height: clamp(300px, 40vh, 400px);
    }
}

@media (max-width: 360px) {
    .logo img {
        width: clamp(35px, 6vw, 50px);
        height: clamp(35px, 6vw, 50px);
    }

    .icons i {
        width: clamp(25px, 4vw, 35px);
        height: clamp(25px, 4vw, 35px);
        font-size: clamp(0.7rem, 1vw, 0.9rem);
    }

    .contact-content li a {
        font-size: clamp(1.5rem, 2.5vw, 2rem);
    }
}