/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #1d1d1f;
    font-weight: 600;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #8b4513;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8b4513;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #1d1d1f;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6e6e73;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #8b4513;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
    background: #6b3410;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(139, 69, 19, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
}

.btn-secondary:hover {
    background: #8b4513;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-10px);
}

.hero-card i {
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.hero-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.hero-card p {
    color: #6e6e73;
    line-height: 1.5;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #6e6e73;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #f5f7fa;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6e6e73;
    font-size: 0.9rem;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-placeholder i {
    font-size: 4rem;
    color: white;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f5f7fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b4513, #6b3410);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6e6e73;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #8b4513;
    margin-top: 0.25rem;
    width: 24px;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #6e6e73;
    line-height: 1.5;
}

.contact-form {
    background: #f5f7fa;
    padding: 2.5rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e5e7;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-content {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-content:hover {
    transform: translateY(-10px);
}

.gallery-image {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.8), rgba(107, 52, 16, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gallery-info h3 {
    font-size: 1.3rem;
    color: #1d1d1f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gallery-info p {
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.gallery-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.gallery-stats span {
    background: #f5f7fa;
    color: #8b4513;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.gallery-stats i {
    font-size: 0.8rem;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: #f5f7fa;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 1rem);
    background: #8b4513;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #8b4513;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.step-content p {
    color: #6e6e73;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f5f7fa;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #1d1d1f;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: #8b4513;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #6e6e73;
    font-size: 0.9rem;
}

/* News Section */
.news {
    padding: 80px 0;
    background: #f5f7fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    gap: 1.5rem;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-date {
    background: #8b4513;
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
    height: fit-content;
}

.news-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.news-date .month {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.news-content h3 {
    color: #1d1d1f;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.news-content p {
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #8b4513;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #6b3410;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
    text-align: center;
}

.map-section h3 {
    font-size: 2rem;
    color: #1d1d1f;
    margin-bottom: 2rem;
}

.map-container {
    max-width: 600px;
    margin: 0 auto;
}

.map-placeholder {
    background: linear-gradient(135deg, #f8f9f5, #e8f5e8);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder i {
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.map-placeholder h4 {
    font-size: 1.5rem;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #6e6e73;
    margin-bottom: 0.5rem;
}

/* Certifications Section */
.certifications {
    padding: 80px 0;
    background: white;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-card {
    background: #f5f7fa;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-10px);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b4513, #6b3410);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cert-icon i {
    font-size: 2rem;
    color: white;
}

.cert-card h3 {
    font-size: 1.3rem;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.cert-card p {
    color: #6e6e73;
    line-height: 1.6;
}

/* Shop Preview Section */
.shop-preview {
    padding: 80px 0;
    background: #f5f7fa;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8b4513, #6b3410);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.product-image i {
    font-size: 2.5rem;
    color: white;
}

.product-info h3 {
    font-size: 1.3rem;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.product-description {
    color: #6e6e73;
    margin-bottom: 1.5rem;
}

.product-price {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b4513;
}

.old-price {
    font-size: 1.1rem;
    color: #6e6e73;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.shop-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature i {
    font-size: 2rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.feature h4 {
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #6e6e73;
    font-size: 0.9rem;
}

/* Educational Section */
.educational {
    padding: 80px 0;
    background: white;
}

.educational-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.education-card {
    background: #f5f7fa;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.education-card:hover {
    transform: translateY(-5px);
}

.education-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b4513, #6b3410);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.education-icon i {
    font-size: 1.5rem;
    color: white;
}

.education-card h3 {
    font-size: 1.3rem;
    color: #1d1d1f;
    margin-bottom: 1rem;
}

.education-card ul {
    list-style: none;
    padding: 0;
}

.education-card li {
    color: #6e6e73;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.education-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
}

/* Seasonal Section */
.seasonal {
    padding: 80px 0;
    background: #f5f7fa;
}

.seasonal-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.season-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.season-item:hover {
    transform: translateY(-5px);
}

.season-month {
    background: #8b4513;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 2rem;
    min-width: 120px;
    text-align: center;
}

.season-content h3 {
    font-size: 1.3rem;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}

.season-content p {
    color: #6e6e73;
    line-height: 1.6;
}

/* Awards Section */
.awards {
    padding: 80px 0;
    background: #f5f7fa;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8b4513, #6b3410);
}

.award-card:hover {
    transform: translateY(-10px);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b4513, #6b3410);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.award-icon i {
    font-size: 2rem;
    color: white;
}

.award-content h3 {
    color: #1d1d1f;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.award-content p {
    color: #6e6e73;
    margin-bottom: 1rem;
}

.award-year {
    background: #8b4513;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Timeline Section */
.timeline {
    padding: 80px 0;
    background: white;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #8b4513;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #8b4513;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: #f5f7fa;
    padding: 2rem;
    border-radius: 20px;
    margin: 0 2rem;
    flex: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: #1d1d1f;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #6e6e73;
    line-height: 1.6;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: #f5f7fa;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.partner-category h3 {
    color: #1d1d1f;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.partner-logos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partner-logo {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partner-logo i {
    font-size: 2rem;
    color: #8b4513;
    width: 40px;
}

.partner-logo span {
    color: #1d1d1f;
    font-weight: 500;
}

/* Events Section */
.events {
    padding: 80px 0;
    background: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: #f5f7fa;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    gap: 1.5rem;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-date {
    background: #8b4513;
    color: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    min-width: 80px;
    height: fit-content;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.event-content h3 {
    color: #1d1d1f;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.event-content p {
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-location {
    color: #8b4513;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background: linear-gradient(135deg, #8b4513, #6b3410);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.play-button i {
    font-size: 2rem;
    margin-left: 4px;
}

.video-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.video-placeholder p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.video-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Blog Preview Section */
.blog-preview {
    padding: 80px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #f5f7fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    background: linear-gradient(135deg, #8b4513, #6b3410);
    padding: 2rem;
    text-align: center;
}

.blog-image i {
    font-size: 3rem;
    color: white;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-date {
    color: #8b4513;
    font-size: 0.9rem;
}

.blog-category {
    background: #8b4513;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.blog-content h3 {
    color: #1d1d1f;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.blog-content p {
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: #8b4513;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #6b3410;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e5e5e7;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    background: #f5f7fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e8f5e8;
}

.faq-question h3 {
    color: #1d1d1f;
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: #8b4513;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #6e6e73;
    line-height: 1.6;
    margin: 0;
}

/* Wholesale Section */
.wholesale {
    padding: 80px 0;
    background: #f5f7fa;
}

.wholesale-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.wholesale-info h3 {
    color: #1d1d1f;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.wholesale-info p {
    color: #6e6e73;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.wholesale-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.wholesale-info li {
    color: #6e6e73;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.wholesale-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
}

.wholesale-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.wholesale-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #8b4513;
}

.wholesale-feature i {
    font-size: 1rem;
}

.wholesale-contact {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wholesale-contact h3 {
    color: #1d1d1f;
    margin-bottom: 1.5rem;
}

.wholesale-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e5e7;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: border-color 0.3s ease;
}

.wholesale-form select:focus {
    outline: none;
    border-color: #8b4513;
}

/* Recipes Section */
.recipes {
    padding: 80px 0;
    background: white;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.recipe-card {
    background: #f5f7fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-10px);
}

.recipe-image {
    background: linear-gradient(135deg, #8b4513, #6b3410);
    padding: 2rem;
    text-align: center;
}

.recipe-image i {
    font-size: 3rem;
    color: white;
}

.recipe-content {
    padding: 2rem;
}

.recipe-content h3 {
    color: #1d1d1f;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.recipe-content p {
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.recipe-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.recipe-meta span {
    color: #8b4513;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.recipe-link {
    color: #8b4513;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.recipe-link:hover {
    color: #6b3410;
}

/* Sustainability Section */
.sustainability {
    padding: 80px 0;
    background: #f5f7fa;
}

.sustainability-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sustainability-text h3 {
    color: #1d1d1f;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sustainability-text p {
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.sustainability-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sustainability-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sustainability-feature i {
    font-size: 2rem;
    color: #8b4513;
    width: 50px;
}

.sustainability-feature h4 {
    color: #1d1d1f;
    margin-bottom: 0.25rem;
}

.sustainability-feature p {
    color: #6e6e73;
    font-size: 0.9rem;
    margin: 0;
}

.sustainability-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item h4 {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6e6e73;
    font-size: 1.1rem;
    margin: 0;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, #8b4513, #6b3410);
    color: white;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.newsletter-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    min-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #8b4513;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: #6b3410;
    transform: translateY(-2px);
}

.back-to-top.show {
    display: flex;
}

/* Footer */
.footer {
    background: #1d1d1f;
    color: 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,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #a1a1a6;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #a1a1a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8b4513;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links h5 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #8b4513;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #424245;
    padding-top: 1rem;
    text-align: center;
    color: #a1a1a6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .step-number {
        margin: 0 auto 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }

    .shop-features {
        grid-template-columns: 1fr;
    }

    .educational-content {
        grid-template-columns: 1fr;
    }

    .season-item {
        flex-direction: column;
        text-align: center;
    }

    .season-month {
        margin: 0 auto 1rem;
    }

    .wholesale-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .recipes-grid {
        grid-template-columns: 1fr;
    }

    .sustainability-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 4rem;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        min-width: 60px;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .timeline-content {
        margin: 0;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cold-extraction-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        padding: 1rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .video-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-placeholder {
        padding: 2rem 1rem;
        min-height: 300px;
    }
    
    .video-placeholder h3 {
        font-size: 1.5rem;
    }
    
    .video-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-item {
        margin: 0 1rem;
    }
    
    .tour-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tour-thumbnails {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .tour-image img {
        height: 300px;
    }
    
    .tour-description-content {
        padding: 1.5rem;
    }
}

/* Quick Info Section */
.quick-info {
    padding: 60px 0;
    background: #f5f7fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b4513, #6b3410);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-content h3 {
    color: #1d1d1f;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #6e6e73;
    font-size: 0.95rem;
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #8b4513 0%, #6b3410 100%);
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Active Navigation Link */
.nav-link.active {
    color: #8b4513;
    font-weight: 600;
}

/* Product Features */
.product-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: #6e6e73;
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
}

/* Page System */
.page {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animation */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #8b4513;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-container p {
    color: #6e6e73;
    font-size: 1.1rem;
}

/* Error Container */
.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: #6e6e73;
}

.error-container h2 {
    color: #1d1d1f;
    margin-bottom: 1rem;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease-out;
}

.notification-success {
    border-left: 4px solid #4CAF50;
}

.notification-error {
    border-left: 4px solid #f44336;
}

.notification-info {
    border-left: 4px solid #2196F3;
}

.notification-content {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-message {
    color: #1d1d1f;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6e6e73;
    cursor: pointer;
    margin-left: 1rem;
}

.notification-close:hover {
    color: #1d1d1f;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Video Production Section */
.video-production {
    padding: 80px 0;
    background: #f8f9f5;
}

.video-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 600px;
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.video-placeholder {
    background: linear-gradient(135deg, #8b4513, #6b3410);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.video-placeholder > * {
    position: relative;
    z-index: 2;
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-placeholder h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.video-placeholder p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.video-play-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-play-btn:hover {
    background: white;
    color: #8b4513;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.video-info h4 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.video-features {
    list-style: none;
    padding: 0;
}

.video-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 1.1rem;
}

.video-features li:last-child {
    border-bottom: none;
}

.video-features i {
    color: #8b4513;
    font-size: 1.2rem;
}

.video-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.video-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.video-stats .stat i {
    color: #8b4513;
    font-size: 1rem;
}

.video-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.video-duration i {
    font-size: 0.8rem;
}

/* Facebook Videos Grid */
.facebook-videos-grid {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #eee;
}

.facebook-videos-grid h4 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px 20px 0 0;
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-info h5 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-info p {
    color: #666;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.video-link {
    display: inline-block;
    color: #27ae60;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.video-link:hover {
    color: #2ecc71;
    text-decoration: underline;
}

/* Virtual Tour Section */
.virtual-tour {
    padding: 80px 0;
    background: white;
}

.tour-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.tour-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tour-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tour-image {
    position: relative;
    display: none;
}

.tour-image.active {
    display: block;
}

.tour-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-image:hover img {
    transform: scale(1.02);
}

.tour-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
}

.tour-info-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tour-info-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.tour-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.tour-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.tour-thumb.active {
    border-color: #8b4513;
    transform: scale(1.05);
}

.tour-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tour-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-thumb:hover img {
    transform: scale(1.1);
}

.tour-thumb span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem;
    font-size: 0.8rem;
    text-align: center;
    font-weight: 600;
}

.tour-description {
    position: relative;
}

.tour-description-content {
    display: none;
    padding: 2rem;
    background: #f8f9f5;
    border-radius: 20px;
    border-left: 4px solid #8b4513;
}

.tour-description-content.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.tour-description-content h4 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-description-content h4 i {
    color: #8b4513;
    font-size: 1.3rem;
}

.tour-description-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.tour-description-content ul {
    list-style: none;
    padding: 0;
}

.tour-description-content li {
    color: #666;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tour-description-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
    font-size: 1.1rem;
}


/* Cold Extraction Section */
.cold-extraction {
    padding: 80px 0;
    background: #ffffff;
}

.cold-extraction-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.cold-extraction-text h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cold-extraction-text h4 {
    color: #8b4513;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.cold-extraction-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.extraction-benefits {
    list-style: none;
    padding: 0;
}

.extraction-benefits li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
    line-height: 1.6;
}

.extraction-benefits li:last-child {
    border-bottom: none;
}

.extraction-benefits strong {
    color: #8b4513;
    font-weight: 600;
}

.cold-extraction-process h4 {
    color: #8b4513;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9f5;
    border-radius: 15px;
    border-left: 4px solid #8b4513;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: #8b4513;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h5 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact & Social Section */
.contact-social {
    padding: 80px 0;
    background: #f8f9f5;
}

.contact-social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-social-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-social-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-social-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b4513, #6b3410);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.contact-social-content h3 {
    color: #1d1d1f;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-social-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-social-link {
    color: #8b4513;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-social-link:hover {
    color: #6b3410;
}

.phone-numbers {
    font-weight: 500;
    color: #1d1d1f !important;
    margin-top: 1rem;
}

/* Recipe Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 10001;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e5e7;
}

.modal-header h2 {
    color: #1d1d1f;
    font-size: 1.8rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #6e6e73;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f5f7fa;
    color: #1d1d1f;
}

.modal-body {
    padding: 2rem;
}

.recipe-image-modal {
    text-align: center;
    margin-bottom: 2rem;
}

.recipe-image-modal i {
    font-size: 4rem;
    color: #8b4513;
    background: linear-gradient(135deg, #f8f9f5, #e8f5e8);
    padding: 2rem;
    border-radius: 50%;
    display: inline-block;
}

.recipe-description {
    color: #6e6e73;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.recipe-meta-modal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.recipe-meta-modal span {
    color: #8b4513;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f5f7fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.recipe-ingredients,
.recipe-instructions {
    margin-bottom: 2rem;
}

.recipe-ingredients h3,
.recipe-instructions h3 {
    color: #1d1d1f;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recipe-ingredients h3::before {
    content: '🥘';
    font-size: 1.2rem;
}

.recipe-instructions h3::before {
    content: '👨‍🍳';
    font-size: 1.2rem;
}

.recipe-ingredients ul,
.recipe-instructions ol {
    list-style: none;
    padding: 0;
}

.recipe-ingredients li {
    color: #6e6e73;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.recipe-ingredients li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
}

.recipe-instructions li {
    color: #6e6e73;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.recipe-instructions li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background: #8b4513;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.recipe-instructions ol {
    counter-reset: step-counter;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid #e5e5e7;
}

.modal-close-btn {
    background: #8b4513;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: #6b3410;
    transform: translateY(-2px);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .recipe-meta-modal {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .recipe-image-modal i {
        font-size: 3rem;
        padding: 1.5rem;
    }
}

/* Loading Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Loading States */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.loading-delay-1 {
    animation-delay: 0.1s;
}

.loading-delay-2 {
    animation-delay: 0.2s;
}

.loading-delay-3 {
    animation-delay: 0.3s;
}

.loading-delay-4 {
    animation-delay: 0.4s;
}

/* Lazy Loading */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Image Loading Placeholder */
.image-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #8b4513;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b3410;
}

/* Video and Tour Modals */
.video-modal, .tour-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.video-modal-content, .tour-modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-modal-close, .tour-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.video-modal-close:hover, .tour-modal-close:hover {
    color: #8b4513;
}

.video-container-modal, .tour-container-modal {
    text-align: center;
    padding: 2rem 0;
}

.video-placeholder-modal, .tour-placeholder-modal {
    background: linear-gradient(135deg, #f8f9f5, #e8f5e8);
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 2px dashed #8b4513;
}

.video-placeholder-modal i, .tour-placeholder-modal i {
    font-size: 4rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.video-placeholder-modal h3, .tour-placeholder-modal h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.video-placeholder-modal p, .tour-placeholder-modal p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}
