/* ===================================
   ESTATE TEA - PREMIUM DESIGN
   Inspired by elegant winery aesthetics
   =================================== */

/* ===================================
   1. ROOT & RESET
   =================================== */
:root {
    --primary-color: #2c5530;
    --secondary-color: #8b7355;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f6f3;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Prevent horizontal scroll on all elements */
* {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* Better touch targets for mobile */
@media (hover: none) and (pointer: coarse) {
    .nav-menu a,
    .btn-primary,
    .btn-secondary,
    button,
    input[type="submit"] {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 500;
    line-height: 1.3;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===================================
   2. NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.logo .tagline {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===================================
   3. HERO SECTION
   =================================== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), 
                url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-title {
    font-size: 3.0rem;
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.0rem;
    opacity: 0.95;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background-color: var(--white);
    animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* ===================================
   4. BUTTONS
   =================================== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-weight: 500;
}

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

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
}

/* ===================================
   5. CONTAINERS
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   6. SECTIONS
   =================================== */
section {
    padding: 100px 0;
}

.section-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* ===================================
   7. INTRO SECTION
   =================================== */
.intro-section {
    padding: 12px 0px 12px 0px;
    background-color: var(--bg-light);
    text-align: center;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

/* ===================================
   8. FEATURES SECTION
   =================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 3rem;
}

.feature-card {
    background-color: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-image-placeholder {
    width: 100%;
    height: 300px;
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    background-size: cover;
    background-position: center;
}

.feature-content {
    padding: 2rem;
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   9. TERRITORIES SECTION
   =================================== */
.territories-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin-bottom: 3rem;
}

.territories-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.territory-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.territory-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.territory-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

/* ===================================
   10. CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(rgba(44, 85, 48, 0.9), rgba(44, 85, 48, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%232c5530" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===================================
   11. PAGE HEADER
   =================================== */
.page-header {
    height: 50vh;
    min-height: 400px;
    background: url('../images/tea/arial.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 80px;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

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

.header-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.header-title {
    font-size: 4rem;
    font-weight: 400;
}

/* ===================================
   12. STORY SECTION
   =================================== */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image-placeholder {
    width: 100%;
    height: 500px;
    background-image: url('../images/arialview.jpg');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

/* ===================================
   13. TIMELINE
   =================================== */
.timeline {
    position: relative;
    padding: 2rem 0;
    margin-top: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.timeline-year {
    grid-column: 2;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: var(--white);
    padding: 1rem;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content {
    background-color: var(--bg-light);
    padding: 2rem;
    border-left: 3px solid var(--accent-color);
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    grid-row: 1;
    border-left: none;
    border-right: 3px solid var(--accent-color);
    text-align: right;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--text-light);
}

/* ===================================
   14. VALUES SECTION
   =================================== */
.values-section {
    background-color: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.value-card {
    background-color: var(--white);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   15. TEAM SECTION
   =================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
}

.team-image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-role {
    font-size: 0.95rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.team-member p {
    color: var(--text-light);
}

/* ===================================
   16. PRODUCTS SECTION
   =================================== */
.products-intro {
    background-color: var(--bg-light);
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 3rem;
}

.product-card {
    background-color: var(--white);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #e5e5e5;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.product-type {
    font-size: 0.9rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.detail-item {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    background-color: var(--bg-light);
    color: var(--text-dark);
    border-radius: 20px;
}

/* ===================================
   17. PROCESSING SECTION
   =================================== */
.processing-section {
    background-color: var(--bg-light);
}

.processing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.processing-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.processing-list {
    list-style: none;
    margin: 2rem 0;
}

.processing-list li {
    padding: 0.8rem 0;
    color: var(--text-light);
    line-height: 1.8;
    border-bottom: 1px solid #e5e5e5;
}

.processing-list li:last-child {
    border-bottom: none;
}

.processing-list strong {
    color: var(--primary-color);
}

/* ===================================
   18. CONTACT SECTION
   =================================== */
.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-left: 3px solid var(--accent-color);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.info-card strong {
    color: var(--text-dark);
}

/* ===================================
   19. CONTACT FORM
   =================================== */
.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 3rem;
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.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 1rem;
    border: 1px solid #d5d5d5;
    background-color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* ===================================
   20. MAP SECTION
   =================================== */
.map-section {
    background-color: var(--bg-light);
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 2rem 0;
}

.map-text {
    text-align: center;
    color: var(--text-light);
}

.map-note {
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.directions-text {
    margin-top: 2rem;
}

.directions-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.directions-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.directions-text strong {
    color: var(--text-dark);
}

/* ===================================
   21. HOURS SECTION
   =================================== */
.hours-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hours-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
}

.hours-item {
    background-color: var(--bg-light);
    padding: 2rem;
}

.hours-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hours-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   22. FOOTER
   =================================== */
.footer {
    background-color: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.8;
    font-size: 0.95rem;
}

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

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

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

/* ===================================
   23. SITEMAP
   =================================== */
.sitemap-section {
    background-color: var(--bg-light);
}

.sitemap-intro {
    max-width: 840px;
    margin: 0 auto 3rem;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 2rem;
}

.sitemap-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-top: 3px solid var(--accent-color);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.sitemap-card .section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sitemap-list a {
    color: var(--primary-color);
    font-size: 1.05rem;
}

.sitemap-list a:hover {
    color: var(--accent-color);
}

/* ===================================
   24. RESPONSIVE DESIGN
   =================================== */

/* Tablet and smaller desktop */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }
    
    .container-wide {
        max-width: 100%;
        padding: 0 2rem;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-stats {
        padding: 0px 45px;
        font-size: 0.8rem !important;
    }
    
    .btn-outline{
        padding: 10px 11px !important;
    }
    .section-title {
        font-size: 2.5rem;
    }
    
    .territories-content,
    .story-grid,
    .processing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    /* Timeline adjustments */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        grid-template-columns: 100px 1fr;
        gap: 1.5rem;
    }
    
    .timeline-year {
        grid-column: 1;
    }
    
    .timeline-content {
        grid-column: 2;
        text-align: left !important;
        border-left: 3px solid var(--accent-color) !important;
        border-right: none !important;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Typography */
    .hero {
        height: 80vh;
        min-height: 410px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .header-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Grids - Force single column */
    .features-grid,
    .products-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* CTA */
    .cta-content h2 {
        font-size: 2rem;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    /* Timeline */
    .timeline-year {
        width: 80px;
        height: 80px;
        font-size: 1.2rem;
    }
    
    /* Image placeholders */
    .feature-image-placeholder,
    .product-image-placeholder {
        height: 250px;
    }
    
    .territory-image-placeholder,
    .story-image-placeholder,
    .processing-image-placeholder,
    .team-image-placeholder {
        height: 300px;
    }
    
    /* Contact form */
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Hours grid */
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Containers */
    .container,
    .container-wide {
        padding: 0 1.5rem;
    }
    
    /* Navigation */
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo .tagline {
        font-size: 0.7rem;
    }
    
    /* Typography */
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-label {
        font-size: 0.75rem;
    }
    
    .header-title {
        font-size: 2rem;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.8rem;
        font-size: 0.85rem;
    }
    
    /* Hero section */
    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .crop-content-grid{
        margin-bottom: 54px !important;
    }

    .crop-image-placeholder {
        height: unset !important;
    }

    .tea-processing-premium{
       padding-bottom: 0px !important;
        margin-bottom: 0px !important;
    }
    
    .page-header {
        height: 40vh;
        min-height: 300px;
        margin-top: 70px;
    }
    
    /* Sections */
    section {
        padding: 50px 0;
    }
    
    /* Intro text */
    .intro-text {
        font-size: 1rem;
    }
    
    /* Feature cards */
    .feature-content,
    .product-content {
        padding: 1.5rem;
    }
    
    .feature-content h3,
    .product-content h3 {
        font-size: 1.5rem;
    }
    
    /* Timeline */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        grid-template-columns: 70px 1fr;
        gap: 1rem;
    }
    
    .timeline-year {
        width: 70px;
        height: 70px;
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
    
    /* Value cards */
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .value-card h3 {
        font-size: 1.5rem;
    }
    
    /* CTA section */
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    /* Contact form */
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    /* Product details */
    .product-details {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .detail-item {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    
    /* Processing list */
    .processing-list li {
        font-size: 0.95rem;
    }
    
    /* Map */
    .map-placeholder {
        height: 300px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .container,
    .container-wide {
        padding: 0 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* Landscape mobile devices */
@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 400px;
    }
    
    .page-header {
        height: 60vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}


/* Stats Section */
.stats-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-card {
    padding: 1rem;
}

.stat-number {
    font-size: 2.0rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Crop Stats */
.crop-stats {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Text Link */
.text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--accent-color);
}

/* Experience Preview */
.experience-preview {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-list {
    list-style: none;
    margin: 2rem 0;
}

.experience-list li {
    padding: 0.8rem 0;
    color: var(--text-light);
    border-bottom: 1px solid #d5d5d5;
}

.experience-list li:last-child {
    border-bottom: none;
}

.experience-list strong {
    color: var(--text-dark);
}

.experience-image-placeholder {
    width: 100%;
    height: 500px;
    background-image: url('../images/experience.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

/* Hero Stats */
.hero-stats {
    font-size: 1.0rem;
    margin-bottom: 2%;
    opacity: 0.95;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-image-placeholder {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2rem;
    }
}


/* Estate Details Section */
.estate-details {
    padding: 100px 0;
    background-color: var(--white);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.detail-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-left: 3px solid var(--accent-color);
}

.detail-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.detail-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.detail-card strong {
    color: var(--text-dark);
}

/* Estate Map Section */
.estate-map-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.land-distribution {
    margin: 3rem 0;
}

.distribution-item {
    margin-bottom: 1.5rem;
}

.distribution-bar {
    background-color: var(--primary-color);
    padding: 1rem 1.5rem;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    min-width: 200px;
}

.distribution-bar:hover {
    transform: translateX(10px);
}

.distribution-bar-secondary {
    background-color: var(--secondary-color);
}

.distribution-bar-accent {
    background-color: var(--accent-color);
}

.distribution-bar-tertiary {
    background-color: #6b8e4e;
}

.bar-label {
    font-size: 0.95rem;
}

.map-placeholder {
    margin-top: 4rem;
    width: 100%;
    height: 500px;
    background-color: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
}

.map-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
}

/* People Section */
.people-section {
    padding: 100px 0;
}

.people-note {
    background-color: var(--bg-light);
    padding: 2.5rem;
    margin-top: 3rem;
    border-left: 3px solid var(--accent-color);
    font-style: italic;
}

.people-note p {
    color: var(--text-light);
    line-height: 1.8;
}


/* Crop Detail Sections */
.crop-detail-section {
    padding: 100px 0;
}

.crop-detail-section.alt-bg {
    background-color: var(--bg-light);
}

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

.crop-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.crop-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.crop-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.crop-stats-box {
    background-color: var(--bg-light);
    padding: 2rem;
    margin-top: 2rem;
    border-left: 3px solid var(--accent-color);
}

.crop-detail-section.alt-bg .crop-stats-box {
    background-color: var(--white);
}

.crop-stats-box p {
    margin-bottom: 0.8rem;
}

.crop-stats-box strong {
    color: var(--text-dark);
}

/* Tea Premium Section */
.tea-premium-section {
    background-color: var(--bg-light);
    padding: 3rem;
    margin: 4rem 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.premium-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.tea-formats {
    margin: 2rem 0;
}

.tea-formats h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.tea-formats ul {
    list-style: none;
    padding-left: 1.5rem;
}

.tea-formats li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
}

.tea-formats li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.tea-type {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--white);
    border-left: 3px solid var(--primary-color);
}

.premium-image-placeholder {
    width: 100%;
    height: 474px;
    background: url('../images/Bethel_Ad-print.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

/* Processing Overview */
.processing-overview {
    margin: 4rem 0;
}

.processing-overview h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.processing-overview p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    flex: 0 0 auto;
}

.step-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0;
}

.process-arrow {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex: 0 0 auto;
}

/* Tea CTA */
.tea-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .crop-content-grid {
        grid-template-columns: 1fr;
    }
    
    .tea-premium-section {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .tea-cta {
        flex-direction: column;
    }
}

.crop-image-placeholder{
    height: 100%;
    background-size: contain;
    background-position: center;
    height: 487px;
}

/* Experiences Intro */
.experiences-intro {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

/* Experience Detail Sections */
.experience-detail {
    padding: 100px 0;
}

.experience-detail.alt-bg {
    background-color: var(--bg-light);
}

.experience-grid.reverse {
    direction: rtl;
}

.experience-grid.reverse > * {
    direction: ltr;
}

.experience-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.experience-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.experience-highlight {
    background-color: var(--bg-light);
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 3px solid var(--accent-color);
}

.experience-detail.alt-bg .experience-highlight {
    background-color: var(--white);
}

.experience-highlight strong {
    color: var(--text-dark);
}

/* Process Flow */
.process-flow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.flow-item {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

.process-flow span {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Wildlife List */
.wildlife-list {
    margin: 2rem 0;
}

.wildlife-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.wildlife-list li {
    padding: 0.6rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.wildlife-list li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Visitor Info Section */
.visitor-info-section {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background-color: var(--bg-light);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Booking CTA */
.booking-cta {
    background: linear-gradient(rgba(44,85,48,0.9), rgba(44,85,48,0.9)),
                linear-gradient(135deg, #2c5530, #1a3a20);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.booking-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.booking-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

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

/* Responsive */
@media (max-width: 768px) {
    .experience-grid.reverse {
        direction: ltr;
    }
    
    .wildlife-list ul {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .booking-content h2 {
        font-size: 2rem;
    }
}

/* Careers Section */
.careers-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.careers-content {
    max-width: 900px;
    margin: 0 auto;
}

.careers-benefits {
    background-color: var(--white);
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 3px solid var(--primary-color);
}

.careers-benefits h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.careers-benefits ul {
    list-style: none;
    padding-left: 1.5rem;
}

.careers-benefits li {
    padding: 0.8rem 0;
    color: var(--text-light);
    position: relative;
}

.careers-benefits li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.careers-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--white);
}

.careers-email {
    font-size: 1.3rem;
    margin: 1.5rem 0;
    color: var(--primary-color);
}

/* Quick Contact Links */
.quick-contact-links {
    padding: 100px 0;
    background-color: var(--white);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.quick-link-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    transition: var(--transition);
    border-top: 3px solid var(--accent-color);
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quick-link-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.quick-link-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .careers-benefits {
        padding: 2rem;
    }
    
    .careers-email {
        font-size: 1.1rem;
    }
}

/* Image Gallery Section */
.image-gallery-section {
    padding: 100px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 450px;
    cursor: pointer;
    transition: var(--transition);
}

/* Featured large image */
.gallery-large {
    grid-column: span 2;
    height: 450px;
}

/* Wide image */
.gallery-wide {
    grid-column: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-large,
    .gallery-wide {
        grid-column: span 1;
        height: 300px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    }
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-btn.prev {
    left: 2rem;
}

.carousel-btn.next {
    right: 2rem;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background-color: var(--white);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-btn {
        font-size: 1.5rem;
        padding: 0.8rem 1rem;
    }
    
    .carousel-btn.prev {
        left: 1rem;
    }
    
    .carousel-btn.next {
        right: 1rem;
    }
    
    .carousel-dots {
        bottom: 80px;
    }
}

/* Tea Processing Premium Design */
.tea-processing-premium {
    padding: 4rem;
    margin: 4rem 0;
    border-radius: 8px;
}

.tea-processing-premium h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.processing-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.processing-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: rotate(360deg);
}

.process-icon i {
    font-size: 2rem;
    color: var(--white);
}

.process-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.process-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.process-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg-light);
    opacity: 0.3;
    transition: var(--transition);
}

.process-card:hover .process-number {
    color: var(--accent-color);
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .tea-processing-premium {
        padding: 2.5rem 1.5rem;
    }
    
    .tea-processing-premium h3 {
        font-size: 2rem;
    }
    
    .processing-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-card {
        padding: 2rem;
    }
    
    .process-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .process-icon {
        width: 60px;
        height: 60px;
    }
    
    .process-icon i {
        font-size: 1.5rem;
    }
    
    .process-content h4 {
        font-size: 1.3rem;
    }
}

/* Factory Detail Section */
.factory-detail-section {
    padding: 100px 0;
    background-color: var(--white);
}

.factory-hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.factory-hero-content {
    text-align: left;
}

.factory-title {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.factory-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.factory-hero-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

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

.factory-hero-image:hover img {
    transform: scale(1.05);
}

/* Factory Content */
.factory-content {
    max-width: 1200px;
    margin: 0 auto;
}

.factory-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.factory-intro p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
}

.factory-intro strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Factory Stats */
.factory-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.factory-stat-card {
    background: linear-gradient(135deg, var(--bg-light), var(--white));
    padding: 2.5rem;
    text-align: center;
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
    transition: var(--transition);
}

.factory-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-top-color: var(--primary-color);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.factory-stat-card:hover .stat-icon {
    background: var(--accent-color);
    transform: rotateY(360deg);
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.factory-stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.factory-stat-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Renovation Section */
.renovation-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 5rem 0;
    padding: 4rem;
    background: linear-gradient(135deg, #f8f6f3, #ffffff);
    border-radius: 8px;
}

.renovation-content h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.renovation-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.machinery-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.machinery-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--white);
    border-radius: 4px;
    transition: var(--transition);
}

.machinery-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

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

.renovation-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.renovation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Factory Impact */
.factory-impact {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
    margin: 5rem 0;
}

.impact-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.impact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-content h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.impact-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.impact-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.impact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.impact-item:hover {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transform: translateX(10px);
}

.impact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.impact-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .factory-hero,
    .renovation-section,
    .factory-impact {
        grid-template-columns: 1fr;
    }
    
    .factory-title {
        font-size: 3rem;
    }
    
    .machinery-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .factory-title {
        font-size: 2.5rem;
    }
    
    .factory-subtitle {
        font-size: 1.2rem;
    }
    
    .factory-hero-image,
    .renovation-image,
    .impact-image {
        height: 300px;
    }
    
    .factory-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .renovation-section {
        padding: 2.5rem 1.5rem;
    }
    
    .factory-stat-card h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .factory-stats {
        grid-template-columns: 1fr;
    }
    
    .factory-intro p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .experience-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    /* Force consistent order */
    .experience-image-placeholder {
        order: 1;
    }

    .experience-content {
        order: 2;
    }
}

.btn-outline{
    background-color: unset;
    border: 1px solid #fff;
    color: #fff;
    padding: 2% 10%;
    border-radius: 12px;
}