 

/* assets/css/style.css */



:root {

    --primary-color: #16a34a;

    --secondary-color: #059669;

    --accent-color: #fbbf24;

    --dark-color: #1f2937;

    --light-color: #f9fafb;

    --text-color: #374151;

    --border-color: #e5e7eb;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);

    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);

    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);

    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);

    --transition: all 0.3s ease;

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    font-family: 'Poppins', sans-serif;

    line-height: 1.6;

    color: var(--text-color);

    background: var(--light-color);

    overflow-x: hidden;

}



.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}



/* Navigation */

.navbar {

    background: white;

    box-shadow: var(--shadow-sm);

    position: fixed;

    top: 0;

    width: 100%;

    z-index: 1000;

    transition: var(--transition);

}



.navbar.scrolled {

    box-shadow: var(--shadow-md);

}



.nav-wrapper {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

/* Reorder navigation items */
.logo {
    flex-shrink: 0;
}

.nav-menu {
    flex: 1;
}

.nav-actions {
    margin-left: auto;
}



.logo {

    display: flex;

    align-items: center;

}



.logo a {

    display: flex;

    align-items: center;

    text-decoration: none;

    color: var(--dark-color);

    font-weight: 600;

    font-size: 1.5rem;

}



.logo img {

    width: 40px;

    height: 40px;

    margin-right: 10px;

    border-radius: 50%;

}



.nav-menu {

    display: flex;

}



.nav-list {

    display: flex;

    list-style: none;

    gap: 2rem;

}



.nav-link {

    text-decoration: none;

    color: var(--text-color);

    font-weight: 500;

    transition: var(--transition);

    position: relative;

}



.nav-link:hover,

.nav-link.active {

    color: var(--primary-color);

}



.nav-link::after {

    content: '';

    position: absolute;

    bottom: -5px;

    left: 0;

    width: 0;

    height: 2px;

    background: var(--primary-color);

    transition: var(--transition);

}



.nav-link:hover::after,

.nav-link.active::after {

    width: 100%;

}



.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-call {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .nav-actions {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        justify-content: center;
        z-index: 998;
    }

    .btn-call {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}



.btn-call:hover {

    background: var(--secondary-color);

    transform: translateY(-2px);

}



.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--dark-color);
    transition: all 0.3s ease-in-out;
    position: relative;
    transform-origin: 1px;
    border-radius: 2px;
}



/* Hero Section */

.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 120px; /* Added bottom padding for fixed nav-actions */
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 100px;
    }
}



.hero-bg {

    position: absolute;

    inset: 0;

    z-index: 0;

}



.floating-herbs {

    position: absolute;

    width: 100px;

    height: 100px;

    background: url('../images/herb-icon.png') no-repeat center;

    background-size: contain;

    opacity: 0.1;

    animation: float 6s ease-in-out infinite;

}



.herb-1 {

    top: 10%;

    left: 10%;

    animation-delay: 0s;

}



.herb-2 {

    top: 50%;

    right: 10%;

    animation-delay: 2s;

}



.herb-3 {

    bottom: 10%;

    left: 50%;

    animation-delay: 4s;

}



.hero-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 4rem;

    align-items: center;

    position: relative;

    z-index: 1;

}



.hero-badge {

    display: inline-block;

    background: var(--primary-color);

    color: white;

    padding: 0.5rem 1.5rem;

    border-radius: 50px;

    font-size: 0.875rem;

    font-weight: 500;

    margin-bottom: 1.5rem;

}



.hero-title {

    font-size: 3.5rem;

    font-weight: 700;

    line-height: 1.2;

    color: var(--dark-color);

    margin-bottom: 1.5rem;

}



.gradient-text {

    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}



.hero-description {

    font-size: 1.25rem;

    color: var(--text-color);

    margin-bottom: 2rem;

    line-height: 1.8;

}



.hero-buttons {

    display: flex;

    gap: 1rem;

    margin-bottom: 3rem;

}



.btn {

    padding: 1rem 2rem;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 500;

    transition: var(--transition);

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    border: none;

    cursor: pointer;

}



.btn-primary {

    background: var(--primary-color);

    color: white;

}



.btn-primary:hover {

    background: var(--secondary-color);

    transform: translateY(-3px);

    box-shadow: var(--shadow-lg);

}



.btn-secondary {

    background: white;

    color: var(--primary-color);

    border: 2px solid var(--primary-color);

}



.btn-secondary:hover {

    background: var(--primary-color);

    color: white;

    transform: translateY(-3px);

}



.btn-success {

    background: #25d366;

    color: white;

}



.btn-success:hover {

    background: #1ebe57;

    transform: translateY(-3px);

}



.btn-block {

    width: 100%;

    justify-content: center;

}



.hero-stats {

    display: flex;

    gap: 3rem;

}



.stat {

    text-align: center;

}



.stat h3 {

    font-size: 2rem;

    color: var(--primary-color);

    font-weight: 700;

    margin-bottom: 0.25rem;

}



.stat p {

    color: var(--text-color);

    font-size: 0.875rem;

}



.hero-image {

    position: relative;

}



.hero-image img {

    width: 100%;

    height: auto;

    border-radius: 20px;

    /* box-shadow: var(--shadow-xl); */

}



.hero-image-decoration {

    position: absolute;

    top: -20px;

    right: -20px;

    width: 100px;

    height: 100px;

    background: var(--accent-color);

    border-radius: 50%;

    opacity: 0.3;

    z-index: -1;

}



/* Section Styles */

.section-header {

    text-align: center;

    margin-bottom: 4rem;

}



.section-badge {

    display: inline-block;

    background: rgba(22, 163, 74, 0.1);

    color: var(--primary-color);

    padding: 0.5rem 1.5rem;

    border-radius: 50px;

    font-size: 0.875rem;

    font-weight: 500;

    margin-bottom: 1rem;

}



.section-title {

    font-size: 2.5rem;

    font-weight: 700;

    color: var(--dark-color);

    margin-bottom: 1rem;

}



.section-subtitle {

    font-size: 1.125rem;

    color: var(--text-color);

}



/* About Section */

.about-section {

    padding: 80px 0;

    background: white;

}



.about-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 4rem;

    align-items: center;

}



.about-image {

    position: relative;

}



.about-image img {

    width: 100%;

    border-radius: 20px;

    box-shadow: var(--shadow-lg);

}



.experience-badge {

    position: absolute;

    bottom: -20px;

    right: 30px;

    background: var(--primary-color);

    color: white;

    width: 100px;

    height: 100px;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    box-shadow: var(--shadow-lg);

}



.experience-badge span {

    font-size: 2rem;

    font-weight: 700;

}



.about-text h3 {

    font-size: 2rem;

    color: var(--dark-color);

    margin-bottom: 1.5rem;

}



.about-text p {

    font-size: 1.125rem;

    line-height: 1.8;

    margin-bottom: 2rem;

}



.about-features {

    display: flex;

    flex-direction: column;

    gap: 1.5rem;

    margin-bottom: 2rem;

}



.feature {

    display: flex;

    gap: 1rem;

    align-items: flex-start;

}



.feature i {

    font-size: 1.5rem;

    color: var(--primary-color);

    margin-top: 0.25rem;

}



.feature h4 {

    font-size: 1.125rem;

    color: var(--dark-color);

    margin-bottom: 0.25rem;

}



.feature p {

    color: var(--text-color);

    font-size: 0.875rem;

}



/* Treatments Section */

.treatments-section {

    padding: 80px 0;

    background: var(--light-color);

}



.treatments-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 2rem;

}



.treatment-card {

    background: white;

    border-radius: 20px;

    padding: 2rem;

    box-shadow: var(--shadow-md);

    transition: var(--transition);

}



.treatment-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-xl);

}



.treatment-icon {

    width: 80px;

    height: 80px;

    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(5, 150, 105, 0.1));

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 1.5rem;

}



.treatment-icon i {

    font-size: 2rem;

    color: var(--primary-color);

}



.treatment-card h3 {

    font-size: 1.5rem;

    color: var(--dark-color);

    margin-bottom: 1rem;

}



.treatment-card p {

    color: var(--text-color);

    line-height: 1.8;

    margin-bottom: 1.5rem;

}



.treatment-benefits {

    list-style: none;

    margin-bottom: 1.5rem;

}



.treatment-benefits li {

    color: var(--text-color);

    padding: 0.5rem 0;

    padding-left: 1.5rem;

    position: relative;

}



.treatment-benefits li::before {

    content: '✓';

    position: absolute;

    left: 0;

    color: var(--primary-color);

    font-weight: bold;

}



.btn-link {

    color: var(--primary-color);

    text-decoration: none;

    font-weight: 500;

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    transition: var(--transition);

}



.btn-link:hover {

    gap: 1rem;

}



/* Products Section */

.products-section {

    padding: 80px 0;

    background: white;

}



.products-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 2rem;

    margin-bottom: 3rem;

}



.product-card {

    background: white;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: var(--shadow-md);

    transition: var(--transition);

    position: relative;

}



.product-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-xl);

}



.product-badge {

    position: absolute;

    top: 20px;

    right: 20px;

    background: var(--accent-color);

    color: var(--dark-color);

    padding: 0.5rem 1rem;

    border-radius: 50px;

    font-size: 0.75rem;

    font-weight: 600;

    z-index: 1;

}



.product-image {

    height: 250px;

    overflow: hidden;

    background: linear-gradient(135deg, #f0fdf4, #dcfce7);

    display: flex;

    align-items: center;

    justify-content: center;

}



.product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: var(--transition);

}



.product-card:hover .product-image img {

    transform: scale(1.1);

}



.product-content {

    padding: 1.5rem;

}



.product-content h3 {

    font-size: 1.5rem;

    color: var(--dark-color);

    margin-bottom: 0.75rem;

}



.product-content p {

    color: var(--text-color);

    line-height: 1.6;

    margin-bottom: 1rem;

}



.product-features {

    display: flex;

    gap: 1rem;

    margin-bottom: 1.5rem;

}



.product-features span {

    font-size: 0.875rem;

    color: var(--primary-color);

    display: flex;

    align-items: center;

    gap: 0.25rem;

}



.product-price {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 1.5rem;

}



.price {

    font-size: 1.5rem;

    font-weight: 700;

    color: var(--primary-color);

}



.size {

    color: var(--text-color);

    font-size: 0.875rem;

}



/* Testimonials Section */

.testimonials-section {

    padding: 80px 0;

    background: var(--light-color);

}



.testimonials-slider {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

    gap: 2rem;

}



.testimonial-card {

    background: white;

    border-radius: 20px;

    padding: 2rem;

    box-shadow: var(--shadow-md);

    transition: var(--transition);

}



.testimonial-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-xl);

}



.stars {

    color: var(--accent-color);

    margin-bottom: 1.5rem;

}



.testimonial-text {

    color: var(--text-color);

    line-height: 1.8;

    font-style: italic;

    margin-bottom: 2rem;

}



.testimonial-author {

    display: flex;

    align-items: center;

    gap: 1rem;

}



.testimonial-author img {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    object-fit: cover;

}



.testimonial-author h4 {

    color: var(--dark-color);

    margin-bottom: 0.25rem;

}



.testimonial-author span {

    color: var(--text-color);

    font-size: 0.875rem;

}



/* Contact Section */

.contact-section {

    padding: 80px 0;

    background: white;

}



.contact-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 4rem;

    margin-bottom: 3rem;

}



.contact-info {

    display: flex;

    flex-direction: column;

    gap: 2rem;

}



.info-card {

    display: flex;

    align-items: flex-start;

    gap: 1.5rem;

}



.info-card i {

    font-size: 2rem;

    color: var(--primary-color);

    width: 60px;

    height: 60px;

    background: rgba(22, 163, 74, 0.1);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

}



.info-card h3 {

    color: var(--dark-color);

    margin-bottom: 0.5rem;

}



.info-card p {

    color: var(--text-color);

    line-height: 1.6;

}



.info-card a {

    color: var(--primary-color);

    text-decoration: none;

    font-weight: 500;

}



.contact-form {

    background: var(--light-color);

    border-radius: 20px;

    padding: 2rem;

}



.form-group {

    margin-bottom: 1.5rem;

}



.form-group input,

.form-group select,

.form-group textarea {

    width: 100%;

    padding: 1rem;

    border: 1px solid var(--border-color);

    border-radius: 10px;

    font-family: inherit;

    font-size: 1rem;

    transition: var(--transition);

}



.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus {

    outline: none;

    border-color: var(--primary-color);

    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);

}



.map-container {

    border-radius: 20px;

    overflow: hidden;

    box-shadow: var(--shadow-lg);

}



/* Footer */

.footer {

    background: var(--dark-color);

    color: white;

    padding: 60px 0 20px;

}



.footer-content {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 3rem;

    margin-bottom: 3rem;

}



.footer-logo {

    display: flex;

    align-items: center;

    gap: 1rem;

    margin-bottom: 1rem;

}



.footer-logo img {

    width: 40px;

    height: 40px;

    border-radius: 50%;

}



.footer-column h3,

.footer-column h4 {

    margin-bottom: 1.5rem;

}



.footer-column p {

    color: #9ca3af;

    line-height: 1.8;

    margin-bottom: 1.5rem;

}



.footer-column ul {

    list-style: none;

}



.footer-column ul li {

    margin-bottom: 0.75rem;

}



.footer-column ul li a {

    color: #9ca3af;

    text-decoration: none;

    transition: var(--transition);

}



.footer-column ul li a:hover {

    color: var(--primary-color);

}



.contact-list li {

    display: flex;

    align-items: center;

    gap: 0.75rem;

    color: #9ca3af;

}



.social-links {

    display: flex;

    gap: 1rem;

}



.social-links a {

    width: 40px;

    height: 40px;

    background: rgba(255, 255, 255, 0.1);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    transition: var(--transition);

}



.social-links a:hover {

    background: var(--primary-color);

    transform: translateY(-3px);

}



.footer-bottom {

    text-align: center;

    padding-top: 2rem;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: #9ca3af;

}



/* WhatsApp Float Button */

.whatsapp-float {

    position: fixed;

    bottom: 30px;

    right: 30px;

    width: 60px;

    height: 60px;

    background: #25d366;

    color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;

    box-shadow: var(--shadow-lg);

    transition: var(--transition);

    z-index: 999;

}



.whatsapp-float:hover {

    transform: scale(1.1);

    box-shadow: var(--shadow-xl);

}



/* Utility Classes */

.text-center {

    text-align: center;

}



.mt-4 {

    margin-top: 2rem;

}



/* Responsive Design */

/* Large Devices (Desktops) */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Small Devices (Mobile) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-wrapper {
        padding: 0.75rem 0;
        justify-content: space-between;
        position: relative;
    }

    .hamburger {
        display: flex;
        position: relative;
        margin-left: 1rem;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        box-shadow: var(--shadow-md);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1.1rem;
    }
    
    .nav-actions {
        margin-left: 0;
    }

    /* Hamburger animation styles */
    .hamburger span {
        transition: transform 0.3s ease-in-out,
                    opacity 0.2s ease-in-out;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
    
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    

    .hero-image {

        margin-top: 2rem;

    }

    

    .about-content,

    .contact-wrapper {

        grid-template-columns: 1fr;

    }

    

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-column {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .nav-actions {
        display: none;
    }

    .logo a {
        font-size: 1.25rem;
    }

    .logo img {
        width: 32px;
        height: 32px;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}