* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple: #3B2463;
    --dark-purple: #2D1B4E;
    --pink: #E91E8C;
    --light-pink: #FFB6D9;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation Menu */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(59, 36, 99, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

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

.logo-image {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: var(--pink);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links li a:hover {
    color: var(--pink);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: width 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-btn {
    background: var(--pink);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--white);
    color: var(--purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 140, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero Section with Background */
.hero {
    background: url('WhatsApp Image 2026-06-21 at 11.29.16 AM (2).jpeg') center/cover no-repeat;
    position: relative;
    padding: 150px 0 200px;
    min-height: 600px;
    margin-top: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 36, 99, 0.95) 0%, rgba(45, 27, 78, 0.9) 100%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.brand-name {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 0;
    line-height: 1;
}

.brand-subtitle {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 6px;
    color: var(--pink);
    margin-bottom: 30px;
    line-height: 1;
}

.divider {
    width: 200px;
    height: 3px;
    background: var(--white);
    margin: 30px 0;
}

.tagline {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 25px;
    color: var(--white);
}

.tagline .pink {
    color: var(--pink);
    font-weight: 500;
}

.description {
    font-size: 17px;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.medication-image {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Wave Dividers - Smooth Curves */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.wave-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.wave-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.custom-shape-divider-bottom-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-2 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 60px;
    letter-spacing: 3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.service-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(233, 30, 140, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon svg {
    stroke: var(--white);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: #666;
    font-weight: 300;
    line-height: 1.7;
}

/* We Provide Section */
.we-provide {
    background: var(--purple);
    color: var(--white);
    padding: 150px 0 180px;
    position: relative;
}

.section-title-white {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 50px;
    letter-spacing: 3px;
}

.provide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
}

.provide-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s;
}

.provide-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.provide-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.provide-icon svg {
    stroke: var(--white);
}

.provide-item span {
    font-size: 16px;
    font-weight: 400;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 25px;
}

.about-lead {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item svg {
    stroke: var(--pink);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.about-kit-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(59, 36, 99, 0.3);
}

/* Contact Section */
.contact-section {
    background: var(--purple);
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-bottom: 50px;
}

.contact-icon {
    width: 110px;
    height: 110px;
    background: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(233, 30, 140, 0.4);
}

.contact-icon svg {
    stroke: var(--white);
}

.contact-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--pink);
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.phone-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    display: block;
    transition: all 0.3s;
}

.phone-number:hover {
    color: var(--pink);
    transform: scale(1.05);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.badge svg {
    stroke: var(--white);
}

/* Form Section */
.form-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.form-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 15px;
}

.form-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    font-weight: 300;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(233, 30, 140, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--purple);
}

.form-privacy svg {
    stroke: var(--pink);
    flex-shrink: 0;
}

.form-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #dc2626;
    text-align: center;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--pink);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    background: var(--purple);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.3);
}

.submit-btn svg {
    stroke: var(--white);
}

/* Footer */
.footer {
    background: var(--purple);
    color: var(--white);
    padding: 150px 0 40px;
    position: relative;
    text-align: center;
}

.footer-copyright {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-disclaimer {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        background: var(--purple);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-btn {
        display: none;
    }

    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
        text-align: center;
    }

    .medication-image {
        max-width: 350px;
    }

    .brand-name {
        font-size: 48px;
        letter-spacing: 4px;
    }

    .brand-subtitle {
        font-size: 38px;
        letter-spacing: 3px;
    }

    .tagline {
        font-size: 26px;
    }

    .description {
        font-size: 16px;
    }

    .section-title,
    .section-title-white,
    .form-title {
        font-size: 32px;
    }

    .contact-title {
        font-size: 36px;
    }

    .phone-number {
        font-size: 40px;
    }

    .contact-header {
        flex-direction: column;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 25px;
    }

    .services-grid,
    .provide-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .brand-name {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .brand-subtitle {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 22px;
    }

    .section-title,
    .section-title-white,
    .form-title {
        font-size: 28px;
    }

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

    .phone-number {
        font-size: 32px;
    }

    .medication-image {
        max-width: 280px;
    }

    .about-content h2 {
        font-size: 28px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.provide-item,
.feature-item {
    animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }
