/* ============================================
   TSAKY HEALTHY ORGANICS - PREMIUM WEBSITE
   ============================================ */

/* CSS Variables */
:root {
    --forest-green: #0A5C36;
    --emerald-green: #1F8A4D;
    --white: #FFFFFF;
    --light-cream: #F9F8F4;
    --charcoal: #1A1A1A;
    --gold: #C9A227;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --border-radius-small: 12px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 24px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    align-items: flex-start;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--forest-green);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--emerald-green);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-img {
    max-width: 80px;
    height: auto;
    transition: var(--transition-smooth);
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition-smooth);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-green);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--emerald-green);
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f0f7f3 0%, #e8f5e9 50%, #f1f8f2 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(31, 138, 77, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(10, 92, 54, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(201, 162, 39, 0.04) 0%, transparent 40%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231F8A4D' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid rgba(31, 138, 77, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest-green);
    box-shadow: var(--shadow-soft);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background: linear-gradient(135deg, var(--emerald-green) 0%, var(--forest-green) 100%);
    color: var(--white);
}

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

.btn-secondary {
    background: var(--white);
    color: var(--forest-green);
    border: 2px solid var(--emerald-green);
}

.btn-secondary:hover {
    background: var(--emerald-green);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(31, 138, 77, 0.1) 0%, rgba(10, 92, 54, 0.05) 100%);
    border: 2px dashed rgba(31, 138, 77, 0.3);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.image-placeholder.circular {
    border-radius: 50%;
    aspect-ratio: 1;
    max-width: 300px;
}

.placeholder-content {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}

.placeholder-content.small {
    padding: 20px;
}

.placeholder-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    color: var(--emerald-green);
    opacity: 0.5;
}

.placeholder-content.small .placeholder-icon {
    width: 40px;
    height: 40px;
}

.placeholder-content p {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero and Founder Images */
.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.hero-img:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.founder-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 50%;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    aspect-ratio: 1;
    object-fit: cover;
}

.founder-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    object-fit: cover;
}

.about-img:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--light-cream);
}

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

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-intro {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--forest-green);
    font-weight: 600;
}

/* ============================================
   STORY SECTION
   ============================================ */
.story {
    background: var(--white);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder {
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--white) 100%);
}

.founder-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-image {
    text-align: center;
}

.founder-title {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--emerald-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-quote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--charcoal);
    font-style: italic;
    margin-bottom: 30px;
    padding-left: 30px;
    border-left: 4px solid var(--emerald-green);
}

.founder-signature {
    margin-top: 30px;
}

.signature-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--emerald-green) 100%);
    margin-bottom: 12px;
}

.founder-name {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 1.1rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    border: 1px solid rgba(31, 138, 77, 0.1);
    border-radius: var(--border-radius-small);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--emerald-green);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(31, 138, 77, 0.1) 0%, rgba(10, 92, 54, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--emerald-green);
}

.benefit-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
}

/* ============================================
   FLAVOURS SECTION
   ============================================ */
.flavours {
    background: var(--light-cream);
}

.flavours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 32px;
}

.flavour-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.flavour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.flavour-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flavour-image .image-placeholder {
    border: none;
    background: transparent;
    box-shadow: none;
    max-width: 200px;
}

.flavour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.flavour-card:hover .flavour-img {
    transform: scale(1.08);
}

.lifestyle-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.lifestyle-img:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.flavour-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 20px 20px 8px;
}

.flavour-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0 20px 20px;
    line-height: 1.6;
}

.flavour-card .btn {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
    justify-content: center;
}

.flavour-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--emerald-green);
    margin: 0 20px 16px;
    font-family: 'Manrope', sans-serif;
}

.flavour-card--reseller {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0%, rgba(201, 162, 39, 0.02) 100%);
}

.flavour-card--reseller .flavour-name {
    color: var(--gold);
}

.flavour-card--reseller .flavour-desc {
    color: var(--text-dark);
    font-weight: 500;
}

/* ============================================
   RESELLER SECTION
   ============================================ */
.reseller-section {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--charcoal) 100%);
    padding: 100px 0;
}

.reseller-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    box-shadow: var(--shadow-hover);
}

.reseller-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--emerald-green) 0%, var(--forest-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reseller-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.reseller-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.reseller-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reseller-card .btn-primary {
    background: linear-gradient(135deg, var(--emerald-green) 0%, var(--forest-green) 100%);
    color: var(--white);
}

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

@media (max-width: 768px) {
    .reseller-card {
        padding: 40px 24px;
    }

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

    .reseller-desc {
        font-size: 1rem;
    }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-us {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid rgba(31, 138, 77, 0.1);
    border-radius: var(--border-radius-small);
    padding: 32px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--emerald-green);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--emerald-green) 0%, var(--forest-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   HOW TO ENJOY SECTION
   ============================================ */
.how-to {
    background: var(--light-cream);
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.usage-card {
    background: var(--white);
    border-radius: var(--border-radius-small);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.usage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.usage-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usage-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.usage-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.usage-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.recommendation {
    background: linear-gradient(135deg, var(--emerald-green) 0%, var(--forest-green) 100%);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
    box-shadow: var(--shadow-medium);
}

.recommendation h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.recommendation p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.lifestyle-image {
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(31, 138, 77, 0.1);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--emerald-green) 0%, var(--forest-green) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-name {
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.author-location {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    background: var(--light-cream);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(31, 138, 77, 0.1);
    border-radius: var(--border-radius-small);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--emerald-green);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--emerald-green);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background: linear-gradient(135deg, var(--forest-green) 0%, #083d24 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-text {
    font-size: 1.15rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--forest-green);
}

.cta .btn-primary:hover {
    background: var(--light-cream);
    transform: translateY(-2px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(31, 138, 77, 0.1) 0%, rgba(10, 92, 54, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--emerald-green);
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.contact-details a,
.contact-details p {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-details a:hover {
    color: var(--emerald-green);
}

.social-links h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(31, 138, 77, 0.1) 0%, rgba(10, 92, 54, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--emerald-green) 0%, var(--forest-green) 100%);
    transform: translateY(-4px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    color: var(--emerald-green);
    transition: var(--transition-smooth);
}

.social-icon:hover svg {
    color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 24px;
}

.logo-placeholder {
    display: inline-block;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
    transition: var(--transition-smooth);
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-tagline {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-image {
        order: -1;
    }

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

    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .founder-quote {
        padding-left: 0;
        border-left: none;
        border-top: 4px solid var(--emerald-green);
        padding-top: 24px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow-medium);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .benefits-grid,
    .flavours-grid,
    .features-grid,
    .usage-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }
}

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

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

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

    section {
        padding: 60px 0;
    }

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

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

    .badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    z-index: 9999;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    background: #20bd5a;
}

.whatsapp-float__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.whatsapp-float__text {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    font-family: 'Manrope', sans-serif;
}

@media (max-width: 768px) {
    .whatsapp-float {
        padding: 10px 16px;
        gap: 6px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float__icon {
        width: 22px;
        height: 22px;
    }

    .whatsapp-float__text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        padding: 8px 14px;
        gap: 6px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float__icon {
        width: 20px;
        height: 20px;
    }

    .whatsapp-float__text {
        font-size: 0.8rem;
    }
}
.mt-0 {
    margin-top: 0;
}
