/* The Soothing Treasure - Aromatherapy Website Styles */

/* CSS Variables for Brand Colors */
:root {
    --primary-brown: #8B4513;
    --warm-beige: #D2B48C;
    --light-cream: #F5F5DC;
    --soft-white: #FEFEFE;
    --accent-gold: #DAA520;
    --text-dark: #3E2723;
    --text-medium: #5D4E75;
    --gradient-bg: linear-gradient(135deg, var(--light-cream) 0%, var(--warm-beige) 100%);
    --shadow-light: 0 2px 10px rgba(139, 69, 19, 0.1);
    --shadow-medium: 0 4px 20px rgba(139, 69, 19, 0.15);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--soft-white);
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

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

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

.nav-container {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    top: 10px;
    left: 0;
}

.logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-brown);
}

.nav-menu {
    display: flex;
    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-brown);
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-brown);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../images/why-aroma.jpg') no-repeat;
    background-size: cover;
    background-position: 0px 32px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    opacity: 0.5;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-tagline {
    font-size: 1.8rem;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 1px #000000;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-medium);
    text-shadow: 1px 1px 1px #000000;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-brown);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.cta-button:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.2);
}

.cta-button.primary {
    background: var(--primary-brown);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-brown);
    border: 2px solid var(--primary-brown);
}

.cta-button.secondary:hover {
    background: var(--primary-brown);
    color: white;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

/* Sections */
.brand-story,
.why-aromatherapy,
.cta-section {
    padding: 5rem 0;
}

.brand-story {
    background: var(--soft-white);
    padding-top: 0;
}

.section-content,
.aromatherapy-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.story-image img{
    height: 350px;
    width: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
@media (max-width: 768px) {
  .story-image {
    display: none;
  }
}

.story-icon {
    width: 200px;
    height: 200px;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-brown);
    box-shadow: var(--shadow-medium);
}

.story-text h2 {
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Why Aromatherapy Section */
.why-aromatherapy {
    background: var(--gradient-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary-brown);
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    margin: 1rem auto;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.benefit-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.aromatherapy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.essential-oils-display {
    position: relative;
    width: 500px;
    height: 500px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 15px;
}

.oil-bottle {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.oil-bottle:hover {
    transform: scale(1.1);
}

.bottle-1 {
    top: 0;
    left: 50%;
    background: var(--primary-brown);
}

.bottle-2 {
    bottom: 0;
    left: 0;
    background: var(--accent-gold);
}

.bottle-3 {
    bottom: 0;
    right: 0;
    background: var(--warm-beige);
    color: var(--text-dark);
}

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

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

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

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

.cta-section .cta-button {
    background: var(--accent-gold);
    color: var(--text-dark);
}

.cta-section .cta-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

/* Footer */
.footer {
    /* background: var(--text-dark); */
    background: #eee8cc;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    /* color: var(--accent-gold); */
    color: #8b4512;
    margin-bottom: 1rem;
}

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

.footer-section p {
    font-size: 14px;
}

.footer-logo-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-brown);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(0, 0, 0, 0.8);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--soft-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-medium);
    }

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

    .nav-toggle {
        display: block;
    }

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

    .hero-tagline {
        font-size: 1.4rem;
    }

    .section-content {
        flex-direction: column-reverse;
    }

    .aromatherapy-content {
        flex-direction: column;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .essential-oils-display {
        width: 200px;
        height: 200px;
    }

    .oil-bottle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .contact-cards{
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero {
    background-position: 61% 0;
}
    .container {
        padding: 0 15px;
    }

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

    .hero-tagline,
    .hero-description {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .story-icon {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    .nav-brand {
        display: none;
    }

    .hero-content {
        padding-top: 85px;
    }

    .cta-button {
        padding: 0.5rem 2rem;
    }

    .intro-content, .choose-content, .safety-content, .custom-blends-content, .form-content {
        flex-direction: column;
        gap: 1rem !important;
    }

    .timeline-item {
        gap: 1rem !important;
    }

    .timeline-icon {
        width: 50px !important;
        height: 50px !important;
    }
    .mission-statement {
    font-size: 1rem !important;
    }
}

/* Page Header */
.page-header {
    background: url('../images/About\ us.png');
    background-repeat: no-repeat;
    padding: 12rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    opacity: 0.5;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-content h1 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 1px #000000;
}

.header-content p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 1px #000000;
}

/* About Page Styles */
.about-intro {
    padding: 5rem 0;
    background: var(--soft-white);
}

.intro-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-style: italic;
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.image-placeholder {
    background: var(--gradient-bg);
    border-radius: 50%;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.image-placeholder span {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Timeline Styles */
.our-journey {
    padding: 5rem 0;
    background: var(--gradient-bg);
}

.journey-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: 60px;
    background: var(--accent-gold);
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-medium);
}

.timeline-content h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

/* Mission Section */
.our-mission {
    padding: 5rem 0;
    background: var(--soft-white);
}

.mission-statement {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-brown);
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--accent-gold);
}

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

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-content h4 {
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

/* Certifications */
.certifications {
    padding: 5rem 0;
    background: var(--gradient-bg);
}

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

.cert-card {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-10px);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.cert-card h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: var(--soft-white);
}

.choose-content, .safety-content, .custom-blends-content, .form-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    margin: 2rem 0;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.benefit i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.wellness-circle {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.circle-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.circle-item:hover {
    transform: scale(1.1);
}

.circle-item span {
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.circle-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.circle-2 {
    bottom: 0;
    left: 0;
    background: var(--accent-gold);
}

.circle-3 {
    bottom: 0;
    right: 0;
    background: var(--warm-beige);
    color: var(--text-dark);
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow-medium);
}

.center-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Page Styles */
.contact-info {
    padding: 3rem 0;
    /* background: var(--soft-white); */
}

.contact-cards {
   display: flex;
    gap: 2rem;
}

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

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.contact-card h3 {
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Contact Form */
.contact-form-section {
    padding: 5rem 0;
    background: var(--gradient-bg);
}

.form-info h2 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.radio-group label{
    display: flex;
}
.consultation-types {
    margin: 2rem 0;
}

.consultation-types h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.help-list {
    margin-left: 0;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.help-item i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.expert-info {
    margin-top: 2rem;
}

.expert-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border-left: 4px solid var(--accent-gold);
}

.expert-badge i {
    color: var(--primary-brown);
    font-size: 1.5rem;
}

.expert-badge strong {
    color: var(--primary-brown);
}

.expert-badge p {
    margin: 0;
    color: var(--text-medium);
}

/* Form Styles */
.form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    /* display: block; */
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.radio-group,
.checkbox-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-custom,
.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-custom {
    border-radius: 4px;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    display: none;
}

.radio-label input:checked+.radio-custom {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
}

.radio-label input:checked+.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.checkbox-label input:checked+.checkbox-custom {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
}

.checkbox-label input:checked+.checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-brown);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--soft-white);
}

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

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(218, 165, 32, 0.1);
}

.faq-question h3 {
    color: var(--primary-brown);
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* .faq-item.active .faq-question i {
    transform: rotate(45deg);
} */

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Business Hours */
.business-hours {
    padding: 3rem 0;
    background: var(--primary-brown);
    color: white;
    text-align: center;
}

.business-hours h2 {
    color: white;
    margin-bottom: 2rem;
}

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

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.day {
    font-weight: 600;
}

.time {
    color: var(--accent-gold);
}

.hours-note {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.hours-note i {
    margin-right: 0.5rem;
}

/* Product Page Styles */
.product-categories {
    padding: 5rem 0;
    background: var(--soft-white);
}

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

.category-card {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

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

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.category-card h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.category-btn:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

/* Product Section */
.product-section {
    padding: 5rem 0;
}

.product-section.alt-bg {
    background: var(--gradient-bg);
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.product-image {
    height: 150px;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-brown);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-benefits,
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.benefit-tag,
.feature-tag {
    background: rgba(218, 165, 32, 0.2);
    color: var(--primary-brown);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.product-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-brown);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

/* Custom Blends */

.blend-process {
    margin: 2rem 0;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-text h4 {
    color: var(--primary-brown);
    margin-bottom: 0.25rem;
}

.step-text p {
    margin: 0;
    font-size: 0.95rem;
}

.blend-types {
    margin: 2rem 0;
}

.blend-types h4 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.blend-types ul {
    list-style: none;
    padding: 0;
}

.blend-types li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.blend-types i {
    color: var(--accent-gold);
}

.custom-pricing {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 10px;
    text-align: center;
}

.price-info {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.blend-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blend-bottles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.bottle {
    width: 80px;
    height: 80px;
    background: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.bottle:hover {
    transform: scale(1.1);
}

.bottle span {
    font-size: 0.7rem;
    margin-top: 0.25rem;
}

.bottle-2,
.bottle-4 {
    background: var(--accent-gold);
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.bottle-5 {
    background: var(--warm-beige);
    color: var(--text-dark);
}

/* Quality Assurance */
.quality-assurance {
    padding: 5rem 0;
    background: var(--gradient-bg);
}

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

.quality-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.quality-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.quality-item h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

/* Products CTA */
.products-cta {
    padding: 4rem 0;
    background: var(--primary-brown);
    color: white;
    text-align: center;
}

.products-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

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

.products-cta .cta-button {
    background: var(--accent-gold);
    color: var(--text-dark);
}

.products-cta .cta-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

/* Aromatherapy Page Styles */
.aromatherapy-intro {
    padding: 5rem 0;
    background: var(--soft-white);
}

.aromatherapy-elements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 300px;
    margin: 0 auto;
}

.element-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--gradient-bg);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
    width: 150px;
}

.element-item:hover {
    transform: translateY(-5px);
}

.element-item i {
    font-size: 2rem;
    color: var(--primary-brown);
}

.element-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.aromatherapy-benefits {
    padding: 5rem 0;
    background: var(--gradient-bg);
}

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

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

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.benefit-card h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--soft-white);
}

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

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

/* Essential Oils Grid */
.essential-oils {
    padding: 5rem 0;
    background: var(--gradient-bg);
}

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

.oil-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.oil-card:hover {
    transform: translateY(-5px);
}

.oil-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.oil-card h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.oil-card p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.oil-card strong {
    color: var(--primary-brown);
}

/* Methods Section */
.aromatherapy-methods {
    padding: 5rem 0;
    background: var(--soft-white);
}

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

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.method-item:hover {
    transform: translateY(-5px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-text h3 {
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.method-text p {
    margin: 0;
    font-size: 0.95rem;
}

/* Safety Guidelines */
.safety-guidelines {
    padding: 5rem 0;
    background: var(--gradient-bg);
}

.guidelines-list {
    margin: 2rem 0;
}

.guideline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.guideline-item i {
    color: #e74c3c;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.guideline-item h4 {
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.guideline-item p {
    margin: 0;
    font-size: 0.95rem;
}

.consultation-cta {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.cta-content h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content>* {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-tagline {
    animation-delay: 0.4s;
}

.hero-description {
    animation-delay: 0.6s;
}

.cta-button {
    animation-delay: 0.8s;
}