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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* =====================
   Sticky Mobile Call Bar
   ===================== */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: #D2691E;
    text-align: center;
}

.mobile-call-bar a {
    display: block;
    padding: 16px 20px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .mobile-call-bar {
        display: block;
    }
    body {
        padding-bottom: 58px;
    }
}

/* =====================
   Header & Navigation
   ===================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B4513;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8B4513;
}

.nav-call-btn {
    background: #D2691E;
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700 !important;
    white-space: nowrap;
    transition: background 0.3s, transform 0.2s !important;
}

.nav-call-btn:hover {
    background: #A0522D !important;
    color: white !important;
    transform: translateY(-1px);
}

/* =====================
   Hero Section
   ===================== */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('images/hero-bg.jpg') center top/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 18px 44px;
    background: #D2691E;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: #A0522D;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* =====================
   About Section
   ===================== */
.about {
    padding: 100px 0;
    background: #f9f7f4;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5530;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 3rem;
    color: #4a7c59;
    margin-bottom: 15px;
}

.feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.feature p {
    color: #666;
}

.farm-story {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.farm-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.farm-story p:last-child {
    margin-bottom: 0;
}

.farm-story strong {
    color: #2c5530;
}

.products {
    text-align: center;
    padding: 30px;
    background: #2c5530;
    color: white;
    border-radius: 10px;
}

.products h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.products ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.products li {
    font-size: 1.1rem;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* =====================
   Gallery Section
   ===================== */
.gallery {
    padding: 100px 0;
    background: white;
}

.gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5530;
}

.carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 30px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-counter {
    text-align: center;
    margin-top: 16px;
    font-size: 0.95rem;
    color: #888;
    font-weight: 600;
    letter-spacing: 1px;
}

/* =====================
   Testimonials
   ===================== */
.testimonials {
    padding: 100px 0;
    background: #f9f7f4;
}

.testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5530;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.testimonial .quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial .author {
    font-weight: 600;
    color: #2c5530;
}

/* =====================
   Contact Section
   ===================== */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 10px;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 1.1rem;
}

.phone-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    border-bottom: 2px solid rgba(255,255,255,0.4);
    transition: border-color 0.3s;
}

.phone-link:hover {
    border-color: white;
}

.contact-note {
    margin-bottom: 30px;
    font-size: 1rem;
    opacity: 0.9;
}

.map-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.map-button {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.map-button.google {
    background: #4285F4;
    color: white;
}

.map-button.google:hover {
    background: #3367D6;
    transform: translateY(-2px);
}

.map-button.apple {
    background: #000;
    color: white;
}

.map-button.apple:hover {
    background: #333;
    transform: translateY(-2px);
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 55px;
    background: #D2691E;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
}

.contact-button:hover {
    background: #A0522D;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.contact-button span {
    font-size: 1.5rem;
}

.contact-number {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.95;
    margin-top: 5px;
}

/* =====================
   Footer
   ===================== */
footer {
    background: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 40px 20px;
}

footer p {
    margin: 5px 0;
}

/* =====================
   Responsive
   ===================== */
@media (max-width: 900px) {
    .nav-call-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 10px;
        padding: 12px 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .tagline {
        font-size: 1rem;
    }

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

    .cta-button {
        font-size: 1rem;
        padding: 15px 30px;
    }

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

    .products ul {
        flex-direction: column;
        gap: 15px;
    }

    .carousel {
        padding: 0 40px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-button {
        padding: 16px 40px;
        font-size: 1.1rem;
    }

    .contact-number {
        font-size: 1.4rem;
    }
}

/* =====================
   Share Section
   ===================== */
.share-section {
    padding: 80px 0;
    background: #1a1a1a;
    text-align: center;
    color: white;
}

.share-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.share-section p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 35px;
}

.share-buttons,
.contact-share {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-share {
    margin-top: 25px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 1rem;
    padding: 14px 30px;
}

.share-btn.large {
    font-size: 1.1rem;
    padding: 16px 36px;
}

.share-btn.facebook {
    background: #1877F2;
    color: white;
}

.share-btn.facebook:hover {
    background: #0d65d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24,119,242,0.4);
}

.share-btn.sms {
    background: #34C759;
    color: white;
}

.share-btn.sms:hover {
    background: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52,199,89,0.4);
}

@media (max-width: 768px) {
    .share-buttons,
    .contact-share {
        flex-direction: column;
        align-items: center;
    }
    .share-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
