/* ===== ORGANIC SPICE BLENDS - MAIN STYLES ===== */

/* Color Palette - 5 primary colors with light/dark shades */
:root {
    /* Primary Colors */
    --primary-sage: #87A96B;
    --primary-terracotta: #D4A574;
    --primary-paprika: #B85C57;
    --primary-turmeric: #E8B86D;
    --primary-cardamom: #6B7A4F;
    
    /* Light Shades */
    --light-sage: #C5D4B1;
    --light-terracotta: #E8D3B5;
    --light-paprika: #D18B87;
    --light-turmeric: #F2D4A3;
    --light-cardamom: #A8B585;
    
    /* Dark Shades */
    --dark-sage: #5A6B47;
    --dark-terracotta: #B8894F;
    --dark-paprika: #934741;
    --dark-turmeric: #C99A4B;
    --dark-cardamom: #4A5237;
    
    /* Neutral Colors */
    --neutral-cream: #F9F7F4;
    --neutral-gray: #6C757D;
    --neutral-dark: #212529;
    --neutral-white: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-terracotta) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-paprika) 0%, var(--primary-turmeric) 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary-cardamom) 0%, var(--primary-sage) 100%);
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: Georgia, 'Times New Roman', Times, serif;
    
    /* Conservative Font Sizes */
    --fs-h1: 1.8rem;
    --fs-h2: 1.5rem;
    --fs-h3: 1.25rem;
    --fs-h4: 1.125rem;
    --fs-h5: 1rem;
    --fs-body: 0.9rem;
    --fs-small: 0.8rem;
    --fs-navbar-brand: 1.3rem;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 15px;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-body);
    line-height: 1.6;
    color: var(--neutral-dark);
    background-color: var(--neutral-cream);
    padding-top: 80px; /* Account for fixed navbar */
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-cardamom);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 1rem;
    color: var(--neutral-gray);
}

.text-primary { color: var(--primary-sage) !important; }
.text-secondary { color: var(--primary-terracotta) !important; }
.text-accent { color: var(--primary-paprika) !important; }

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    color: var(--primary-cardamom);
    margin-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

/* ===== NAVIGATION ===== */
.navbar {
    background: var(--neutral-white);
    box-shadow: var(--shadow-light);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-medium);
}

.navbar-brand {
    font-size: var(--fs-navbar-brand);
    font-weight: 700;
    color: var(--primary-cardamom);
    text-decoration: none;
    font-family: var(--font-secondary);
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
}

.nav-link {
    color: var(--neutral-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-sage);
}

.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 {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: calc(100vh - 80px);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../FUD_images/hero-bg.webp') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--neutral-white);
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: var(--fs-body);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--neutral-white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--neutral-white);
    color: var(--primary-sage);
    border: 2px solid var(--primary-sage);
}

.btn-secondary:hover {
    background: var(--primary-sage);
    color: var(--neutral-white);
}

/* ===== CARDS ===== */
.card {
    background: var(--neutral-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: var(--fs-h4);
    margin-bottom: 0.75rem;
    color: var(--primary-cardamom);
}

.card-text {
    color: var(--neutral-gray);
    margin-bottom: 1rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--neutral-white);
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: var(--neutral-cream);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-sage);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-sage);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-paprika);
    margin-top: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.25rem 0;
    color: var(--neutral-gray);
}

.service-features li::before {
    content: "✓";
    color: var(--primary-sage);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--gradient-secondary);
    color: var(--neutral-white);
}

.testimonials .section-title h2 {
    color: var(--neutral-white);
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    min-width: 300px;
    background: var(--neutral-white);
    color: var(--neutral-dark);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    scroll-snap-align: start;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-cardamom);
}

/* ===== TEAM SECTION ===== */
.team {
    background: var(--neutral-white);
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    background: var(--neutral-cream);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--primary-sage);
}

.team-name {
    font-size: var(--fs-h4);
    margin-bottom: 0.5rem;
    color: var(--primary-cardamom);
}

.team-role {
    color: var(--neutral-gray);
    font-style: italic;
}

/* ===== FAQ SECTION ===== */
.faq {
    background: var(--neutral-cream);
}

.faq-grid {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--neutral-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.faq-question {
    padding: 1.5rem;
    background: var(--primary-sage);
    color: var(--neutral-white);
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--dark-sage);
}

.faq-answer {
    padding: 1.5rem;
    color: var(--neutral-gray);
    border-top: 1px solid var(--light-sage);
    display: none;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: var(--neutral-white);
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--gradient-accent);
    color: var(--neutral-white);
}

.contact .section-title h2 {
    color: var(--neutral-white);
}

.contact-form {
    background: var(--neutral-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-cardamom);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--light-sage);
    border-radius: var(--radius-md);
    font-size: var(--fs-body);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-sage);
    box-shadow: 0 0 0 3px rgba(135, 169, 107, 0.1);
}

.form-control.error {
    border-color: var(--primary-paprika);
    box-shadow: 0 0 0 3px rgba(184, 92, 87, 0.1);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-check-input {
    width: 18px;
    height: 18px;
}

.form-check-label {
    color: var(--neutral-gray);
    font-size: var(--fs-small);
}

.contact-info {
    margin-top: 2rem;
    text-align: center;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--neutral-white);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--neutral-dark);
    color: var(--neutral-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-sage);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--neutral-white);
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-sage);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom small {
    color: var(--neutral-white);
    opacity: 0.7;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pb-5 { padding-bottom: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fadeIn { animation: fadeIn 0.6s ease-out; }
.animate-slideInLeft { animation: slideInLeft 0.6s ease-out; }
.animate-slideInRight { animation: slideInRight 0.6s ease-out; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 1rem 0;
    background: var(--neutral-cream);
    border-bottom: 1px solid var(--light-sage);
}

.breadcrumbs img {
    height: 20px;
    width: auto;
}

/* ===== NAVIGATION MOBILE TOGGLE ===== */
.nav-toggle {
    background: none;
    border: none;
    color: var(--primary-cardamom);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    color: var(--primary-sage);
    background: var(--light-sage);
}

/* ===== FEATURE ITEMS ===== */
.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--neutral-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-item h4 {
    color: var(--primary-cardamom);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--neutral-gray);
}

/* ===== QUALITY STANDARDS ===== */
.quality-standard {
    padding: 1.5rem;
    background: var(--neutral-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.quality-standard:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.quality-standard h4 {
    color: var(--primary-cardamom);
    margin-bottom: 0.75rem;
}

.quality-standard p {
    color: var(--neutral-gray);
    margin-bottom: 0;
}

/* ===== HEALTH BENEFITS ===== */
.health-benefit {
    text-align: center;
    padding: 1.5rem;
    background: var(--neutral-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.health-benefit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.health-benefit h4 {
    color: var(--primary-cardamom);
    margin-bottom: 0.75rem;
}

.health-benefit p {
    color: var(--neutral-gray);
    margin-bottom: 0;
}

/* ===== CAREER ITEMS ===== */
.career-item {
    padding: 1.5rem;
    background: var(--neutral-cream);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.career-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.career-item h4 {
    color: var(--primary-cardamom);
    margin-bottom: 0.75rem;
}

.career-item p {
    color: var(--neutral-gray);
    margin-bottom: 0.5rem;
}

.career-item small {
    color: var(--primary-sage);
    font-weight: 600;
}

/* ===== PROCESS STEPS ===== */
.process-step {
    padding: 1.5rem;
    background: var(--neutral-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.process-step::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

.process-step h4 {
    color: var(--primary-cardamom);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--neutral-gray);
    margin-bottom: 0;
}

/* ===== TIMELINE ITEMS ===== */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    padding: 1.5rem;
    background: var(--neutral-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    margin-bottom: 1.5rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 1.5rem;
    width: 12px;
    height: 12px;
    background: var(--primary-sage);
    border-radius: 50%;
    border: 3px solid var(--neutral-white);
    box-shadow: var(--shadow-light);
}

.timeline-item h4 {
    color: var(--primary-cardamom);
    margin-bottom: 0.75rem;
}

.timeline-item p {
    color: var(--neutral-gray);
    margin-bottom: 0;
}

/* ===== RESPONSIVE GRID UTILITIES ===== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.col-1 { flex: 0 0 8.333333%; }
.col-2 { flex: 0 0 16.666667%; }
.col-3 { flex: 0 0 25%; }
.col-4 { flex: 0 0 33.333333%; }
.col-5 { flex: 0 0 41.666667%; }
.col-6 { flex: 0 0 50%; }
.col-7 { flex: 0 0 58.333333%; }
.col-8 { flex: 0 0 66.666667%; }
.col-9 { flex: 0 0 75%; }
.col-10 { flex: 0 0 83.333333%; }
.col-11 { flex: 0 0 91.666667%; }
.col-12 { flex: 0 0 100%; } 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
