:root {
    /* Primary Colors */
    --primary-purple: #812097;
    --primary-purple-light: #6b2d7a;
    --primary-purple-dark: #2e0f3a;
    --herbal-green: #7cb342;
    --herbal-green-light: #9ccc65;
    --herbal-green-dark: #558b2f;
    
    /* Secondary Colors */
    --eye-blue: #64b5f6;
    --eye-blue-light: #90caf9;
    --retina-gold: #ffb74d;
    --iris-purple: #9575cd;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #424242;
    --text-dark: #212121;
    --text-light: #757575;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
    --gradient-herbal: linear-gradient(135deg, var(--herbal-green) 0%, var(--herbal-green-light) 100%);
    --gradient-eye: linear-gradient(135deg, var(--eye-blue) 0%, var(--iris-purple) 100%);
    
    --shadow-light: 0 2px 10px rgba(74, 26, 92, 0.1);
    --shadow-medium: 0 4px 20px rgba(74, 26, 92, 0.15);
    --shadow-heavy: 0 8px 30px rgba(74, 26, 92, 0.2);
    
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', serif;
    
    --container-max-width: 1350px;
    --section-padding: 80px 0;
    --element-spacing: 2rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: var(--primary-purple-dark);
}

h2 {
    font-size: 2.5rem;
    color: var(#4a1a5c);
}

h3 {
    font-size: 1.8rem;
    color: var(#4a1a5c);
}

h4 {
    font-size: 1.3rem;
    color: var(--primary-purple-light);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: var(--gradient-herbal);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-outline {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-outline:hover {
    background: var(--primary-purple);
    color: var(--white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0 1rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 3.2rem;
    font-weight: bold;
    color: var(--primary-purple);
    font-family: "Bell MT", serif;
}

.nav-logo img {
    width: 50px;
    height: 50px;
}
.nav-logo2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-purple);
}

.nav-logo2 img {
    max-width: 25%;
    height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-purple);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.section.overview-section {
    padding: var(--section-padding);
    background: var(--light-gray);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    margin-top: 40px;
}


/* Intro Section */
.about-container {
    display: flex;
    flex-direction: column;
    gap: var(--element-spacing);
    margin-top: 40px;
    margin-bottom: 20px;
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    align-items: center;
    gap: 2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.about-text {
    background: #fff; 
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-light, 0 2px 6px rgba(0,0,0,0.1));
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-text:hover{
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.about-text h2 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.about-more {
    font-size: 1.05rem;
    line-height: 1.8;
    background: #fff; 
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-light, 0 2px 6px rgba(0,0,0,0.1));
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}


/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f4ff 0%, #f0fff4 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%234a1a5c" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(124, 179, 66, 0.1);
    border-radius: 50px;
    color: var(--herbal-green-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-badge img {
    width: 20px;
    height: 20px;
}

.hero-container > .composition-grid:last-of-type {
    align-self: end;     
    margin-top: 0;       
    transform: none;
}


.composition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.composition-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.composition-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.composition-item p{
    color: white;
}

.composition-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.composition-icon img{
    max-width: 100%;
    height: auto;
}

.composition-amount {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

/* comp Visual */
.comp-visual {
    position: relative;
    height: 500px;
}

.product-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-bottle {
    width: 290px;   
    height: auto;  
    display: flex;  
    justify-content: center;
    align-items: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.product-bottle img {
    width: 90%;  
    height: auto;
    display: block;
    margin: 0 auto;
}
.product-bottle::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    animation: orbit 12s linear infinite;
}

.element.bilberry {
    background: var(rgba(69, 69, 199, 0.842));
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element.marigold {
    background: var(rgba(245, 120, 4, 0.959));
    top: 20%;
    right: 20%;
    animation-delay: -4s;
}

.element.carrot {
    background: linear-gradient(135deg, var(--retina-gold) 0%, rgba(245, 161, 4, 0.959) 100%);
    bottom: 20%;
    left: 20%;
    animation-delay: -8s;
}

.element.tomatos {
    background: linear-gradient(135deg, var(--retina-gold) 0%, rgba(221, 31, 31, 0.959) 100%);
    bottom: 20%;
    left: 20%;
    animation-delay: -8s;
}

.element.spinach {
    background: linear-gradient(135deg, var(--retina-gold) 0%, rgba(25, 156, 7, 0.959) 100%);
    bottom: 20%;
    left: 20%;
    animation-delay: -8s;
}

/* Sections */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Features Section */
.features {
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

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

.feature-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(#4a1a5c);
}

/* Ingredients Section */
.ingredients {
    background: linear-gradient(135deg, var(--primary-purple-dark) 0%, var(--primary-purple) 100%);
    color: var(--white);
}

.ingredients .section-title,
.ingredients .section-subtitle {
    color: var(--white);
}

.ingredients-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.ingredient-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ingredient-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.ingredient-name {
    font-weight: 600;
    color: var(--herbal-green-light);
}

.ingredient-benefit {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.vitamin-chart {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.vitamin-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.vitamin-item {
    padding: 1rem;
    background: rgba(124, 179, 66, 0.2);
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--herbal-green-light);
}

/* CTA Section */
.cta {
    background: var(--gradient-herbal);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.story-icon {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 4s ease-in-out infinite;
}

.story-icon img {
    max-width: 100%;
    height: auto;
}

.company-info {
    background: var(--light-gray);
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.company-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.company-card h3 {
    color: var(#4a1a5c);
    margin-bottom: 1rem;
}

.vision-mission {
    padding: 80px 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.vm-card {
    text-align: center;
    padding: 2rem;
}

.vm-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.values {
    background: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border-top: 4px solid var(--herbal-green);
}

.value-item h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

/* Product Page Styles */
.product-overview {
    padding: 80px 0;
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-bottle-large {
    width: 250px;
    height: 350px;
    border-radius: 125px 125px 25px 25px;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.product-bottle-large img{
    max-width: 100%;
    height: auto;
}

.product-bottle-large::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
}

.product-certification {
    margin: 1rem 0;
}

.bpom-badge {
    display: inline-block;
    background: var(--herbal-green);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-features table {
    width: 100%;
    margin-top: 1rem;
    border-collapse: collapse;
    box-shadow: var(--shadow-light);
    background: white;
    border-radius: 10px;
    overflow: hidden;
    font-size: 1rem;
}

.product-features thead {
    background-color: var(--primary-purple);
    color: var(--white);
    text-align: left;
}

.product-features thead th {
    padding: 14px 18px;
    font-size: 1.1rem;
    border-right: 2px solid var(--medium-gray); 
}

.product-features thead th:last-child {
    border-right: none; 
}

.product-features tbody td {
    padding: 14px 18px;
    font-size: 1rem;
    border-right: 1px solid var(--medium-gray); 
}

.product-features tbody td:last-child {
    border-right: none;
    text-align: left;   
    font-weight: 600;
    color: var(--dark-gray);
}

.product-features tbody tr {
    border-bottom: 1px solid var(--medium-gray);
}

.product-features tbody tr:nth-child(even) {
    background-color: var(--light-gray);
}

.product-features tbody td:first-child {
    font-style: italic;
    color: var(--primary-purple-dark);
}


.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.feature-icon {
    color: var(--herbal-green);
    font-weight: bold;
    line-height: 1;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 5px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.detail-label {
    font-weight: 600;
    color: var(--primary-purple);
}

.detail-value {
    color: var(--text-light);
}

.product-composition {
    padding: 80px 0;
    background: var(--light-gray);
}

.usage-instructions {
    background: var(--light-gray);
}

.usage-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.usage-rules {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.usage-item,
.usage-warning {
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--white);
    box-shadow: var(--shadow-light);
}

.usage-warning {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

.usage-item h4,
.usage-warning h4 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.storage-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.storage-rules {
    margin-top: 1rem;
}

.storage-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    padding: 10px;
    background: var(--light-gray);
    border-radius: 10px;
}

.storage-icon {
    font-size: 1.2rem;
}

/* Benefits Page Styles */
.main-benefits {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefits-grid h3{
    font-size: 1.4rem;
}

.benefit-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    outline: 2px solid #a646dd;
    transition: all 0.3s ease;
}

.benefit-card p {
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}


.benefit-icon img {
    max-width: 100%;
    height: auto;
    width: 100px;

}

.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.user-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    outline: 2px solid #a646dd;
}

.user-card p {
    text-align: left;
}

.user-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}
.user-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-icon img{
    width: 100px; 
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 7px solid #6b2d7a;
}

/* FAQ Page Styles */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--medium-gray);
}

.faq-question h3 {
    margin: 0;
    color: black;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-purple);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;   
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem 2rem;
}

.contact-cta {
    background: var(--gradient-herbal);
    color: var(--white);
    text-align: center;
}

.contact-cta h2 {
    color: var(--white);
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-form-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* push content down */
    gap: 2rem; /* spacing between sertifikasi & ikuti kami */
    height: 100%; /* make sure it fills the grid cell */
}

.contact-form-container h2 {
    margin-bottom: 2rem;
    color: var(#4a1a5c);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-purple);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(74, 26, 92, 0.1);
}

.contact-info h2 {
    margin-bottom: 2rem;
    color: var(#4a1a5c);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}

.contact-details h3 {
    color: var(#4a1a5c);
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.social-media {
    background-color: var(--light-gray); 
    padding: 1rem;
    border-radius: 20px; 
    text-align: left;
    height: fit-content; 
    width: 100%;   
}

.social-media h3 {
    color: black; 
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: white; 
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); 
    text-decoration: none;   /* remove underline */
    color: black;            /* make link text black */
}

.social-link span {
    color: black;            /* ensure span text is black */
    text-decoration: none;   /* remove underline if applied */
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15); 
}

.social-link img {
    border-radius: 4px;
}

.social-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.social-info small {
    color: white; 
    font-size: 0.8rem;
}


.certification-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.certification-info h3 {
    color: var(#4a1a5c);
    margin-bottom: 1rem;
}

.cert-badge {
    margin: 1rem 0;
}

.quick-actions {
    background: var(--light-gray);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.action-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.action-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

/* Footer */
.footer {
    background: #762f86;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--herbal-green-light);
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-certification {
    background: rgba(124, 179, 66, 0.2);
    padding: 10px 15px;
    border-radius: 20px;
    display: inline-block;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--herbal-green-light);
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}


@media (max-width: 1200px) {
    html, body {
        overflow-x: hidden;
    }
    .nav-container {
        padding: 0 16px;
    }
    .nav-logo {
        font-size: 2rem;
    }
    .about-row {
        grid-template-columns: 1fr; 
        text-align: center;
    }

    .hamburger {
        margin-right: 0; /* remove extra push */
        padding-right: 10px; /* optional small spacing */
    }
    .about-text {
        margin-top: 1rem;
    }
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 2rem;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

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

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

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

    .hero-visual {
        height: 300px;
    }

    .ingredients-content,
    .about-content,
    .product-main,
    .contact-grid,
    .scientific-content,
    .usage-content,
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons,
    .cta-buttons,
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    /* Grid adjustments */
    .features-grid,
    .benefits-grid,
    .users-grid,
    .composition-grid,
    .company-grid,
    .values-grid,
    .actions-grid {
        grid-template-columns: 1fr;
    }

    /* Card padding */
    .feature-card,
    .benefit-card,
    .user-card,
    .company-card,
    .value-item,
    .action-card {
        padding: 1.5rem;
    }

    /* Element sizing */
    .hero-visual {
        height: 250px;
    }

    .product-bottle {
        width: 150px;
        height: 225px;
    }

    .product-bottle-large {
        width: 200px;
        height: 280px;
    }

    .element {
        width: 40px;
        height: 40px;
    }

    /* Icon sizing */
    .feature-icon,
    .benefit-icon,
    .vm-icon {
        width: 60px;
        height: 60px;
    }

    .user-icon,
    .action-icon,
    .composition-icon {
        width: 60px;
        height: 60px;
    }

    /* Footer adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .footer {
        font-size: 0.9rem; 
    }

    .footer-logo span {
        font-size: 1.2rem; 
    }

    .footer-section h3 {
        font-size: 1rem; 
    }

    .footer-bottom p {
        font-size: 0.8rem; 
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    section {
        padding: 40px 0;
    }

    .hero {
        padding: 90px 0 40px;
    }

    .feature-card,
    .benefit-card,
    .user-card,
    .company-card,
    .value-item,
    .action-card {
        padding: 1rem;
    }

    .contact-form,
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
    }

    .product-bottle {
        width: 120px;
        height: 180px;
    }

    .product-bottle-large {
        width: 150px;
        height: 210px;
    }
}

@media print {
    .navbar,
    .hamburger,
    .floating-elements,
    .btn,
    .footer {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .hero,
    .page-header {
        background: white !important;
        color: black !important;
        padding: 20px 0 !important;
    }

    section {
        padding: 20px 0 !important;
        page-break-inside: avoid;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --primary-purple: #000080;
        --herbal-green: #008000;
        --text-dark: #000000;
        --text-light: #333333;
    }

    .btn,
    .feature-card,
    .benefit-card {
        border: 2px solid var(--primary-purple);
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --white: #1a1a1a;
        --light-gray: #2d2d2d;
        --medium-gray: #404040;
        --text-dark: #ffffff;
        --text-light: #cccccc;
    }

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

    .feature-card,
    .benefit-card,
    .user-card,
    .company-card,
    .value-item,
    .action-card,
    .composition-item,
    .contact-item,
    .faq-item {
        background: var(--light-gray);
        border: 1px solid var(--medium-gray);
    }
}
