/**
 * Haky Coffee - Redesigned with Varied Layouts
 * Breaking the Monotony with Dynamic Sections
 */

:root {
    /* Haky Coffee Brand Colors */
    --forest-green: #2d5016;
    --dark-green: #1a3010;
    --medium-green: #3d6b1f;
    --light-green: #5a9b2e;
    --cream: #f5f0e1;
    --cream-dark: #e8ddc7;
    --copper: #a0694f;
    --copper-light: #b8826a;
    --coffee-brown: #5d3a1a;
    --accent-gold: #d4a574;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-600: #757575;
    --gray-800: #424242;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #e8f5e3 0%, var(--cream) 50%, #fff8e7 100%);
    min-height: 100vh;
    color: var(--gray-800);
    overflow-x: hidden;
}

/* Glassmorphism Base */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 0 20px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2),
                inset 0 0 30px rgba(255, 255, 255, 0.3);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--medium-green), var(--copper), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Section Headers */
.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(61, 107, 31, 0.15), rgba(90, 155, 46, 0.1));
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--medium-green);
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--medium-green), var(--light-green));
    color: white;
    box-shadow: 0 8px 25px rgba(61, 107, 31, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(61, 107, 31, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--copper), var(--accent-gold));
    color: white;
    box-shadow: 0 8px 25px rgba(160, 105, 79, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(160, 105, 79, 0.6);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Hero Section (Keeping original styles) */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-carousel {
    position: relative;
    height: 550px;
    overflow: hidden;
    cursor: pointer;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: none;
}

.carousel-item.active {
    opacity: 1;
    z-index: 1;
}

.carousel-item.shatter-out {
    animation: shatterOut 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    z-index: 2;
}

.carousel-item.shatter-in {
    animation: shatterIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    z-index: 3;
}

@keyframes shatterOut {
    0% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0px) brightness(1);
    }
    20% {
        transform: scale(1.08) rotate(1deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.92) rotate(-4deg);
        filter: blur(5px) brightness(0.8);
    }
    100% {
        opacity: 0;
        transform: scale(0.6) rotate(8deg) translateY(30px);
        filter: blur(15px) brightness(0.5);
    }
}

@keyframes shatterIn {
    0% {
        opacity: 0;
        transform: scale(1.4) rotate(-8deg) translateY(-30px);
        filter: blur(20px) brightness(1.5);
    }
    30% {
        opacity: 0.4;
        transform: scale(1.15) rotate(3deg);
        filter: blur(10px) brightness(1.2);
    }
    60% {
        opacity: 0.8;
        transform: scale(0.96) rotate(-2deg);
        filter: blur(3px) brightness(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg) translateY(0);
        filter: blur(0px) brightness(1);
    }
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--forest-green);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.sparkle {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(61, 107, 31, 0.2) 0%, rgba(160, 105, 79, 0.15) 50%, rgba(212, 165, 116, 0.2) 100%);
    opacity: 0.5;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--copper), var(--coffee-brown));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--accent-gold), var(--medium-green));
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--light-green), var(--medium-green));
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--medium-green), var(--light-green));
    top: 30%;
    right: 25%;
    animation-delay: 9s;
}

.shape-5 {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, var(--copper-light), var(--accent-gold));
    bottom: 40%;
    right: 40%;
    animation-delay: 12s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(30px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text {
    padding: 60px;
    text-align: center;
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--forest-green);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--copper);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.mobile-carousel {
    display: none !important;
}

/* ============================================
   ABOUT SECTION - SPLIT LAYOUT
   ============================================ */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    margin: 80px 0;
}

.about-image-half {
    position: relative;
    overflow: hidden;
}

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

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.6), rgba(61, 107, 31, 0.4));
}

.about-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.about-badge span {
    font-size: 2.5rem;
}

.about-badge strong {
    display: block;
    font-size: 1.2rem;
    color: var(--forest-green);
    margin-bottom: 5px;
}

.about-badge p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.about-content-half {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: rgba(255, 255, 255, 0.5);
}

.about-inner {
    max-width: 600px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.highlight-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border-left: 4px solid var(--light-green);
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(61, 107, 31, 0.15);
}

.highlight-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.2rem;
    color: var(--forest-green);
    margin-bottom: 8px;
}

.highlight-content p {
    color: var(--gray-600);
    line-height: 1.5;
}

/* ============================================
   SOURCING REGIONS - BENTO GRID
   ============================================ */
.sourcing-bento {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.3);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 25px;
}

.bento-card {
    position: relative;
    overflow: hidden;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(61, 107, 31, 0.15), rgba(90, 155, 46, 0.1));
}

.bento-medium {
    grid-column: span 2;
}

.bento-small {
    grid-column: span 2;
}

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

.bento-flag {
    font-size: 4rem;
    margin-bottom: 15px;
}

.bento-card h3 {
    font-size: 1.8rem;
    color: var(--forest-green);
    margin-bottom: 15px;
}

.bento-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

.bento-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.bento-features span {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--medium-green);
    font-weight: 600;
}

/* ============================================
   COFFEE GRADES - MODERN CARDS GRID
   ============================================ */
.coffee-grades-modern {
    padding: 100px 0;
}

.grades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.grade-card-modern {
    padding: 45px 35px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.grade-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    transition: all 0.3s ease;
}

.grade-card-modern:hover {
    transform: translateY(-15px);
}

/* Premium Grade */
.grade-premium::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.grade-premium:hover {
    box-shadow: 0 20px 60px rgba(255, 165, 0, 0.3);
}

/* Popular Grade */
.grade-popular::before {
    background: linear-gradient(90deg, #5a9b2e, #3d6b1f);
}

.grade-popular:hover {
    box-shadow: 0 20px 60px rgba(90, 155, 46, 0.3);
}

/* Specialty Grade */
.grade-specialty::before {
    background: linear-gradient(90deg, #a0694f, #d4a574);
}

.grade-specialty:hover {
    box-shadow: 0 20px 60px rgba(160, 105, 79, 0.3);
}

/* Exclusive Grade */
.grade-exclusive::before {
    background: linear-gradient(90deg, #2d5016, #1a3010);
}

.grade-exclusive:hover {
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.3);
}

.grade-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.grade-badge-modern {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.grade-badge-modern.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #5d3a1a;
}

.grade-badge-modern.popular {
    background: linear-gradient(135deg, #5a9b2e, #3d6b1f);
    color: white;
}

.grade-badge-modern.specialty {
    background: linear-gradient(135deg, #a0694f, #d4a574);
    color: white;
}

.grade-badge-modern.exclusive {
    background: linear-gradient(135deg, #2d5016, #1a3010);
    color: var(--accent-gold);
}

.grade-icon-modern {
    font-size: 3.5rem;
    opacity: 0.9;
}

.grade-card-modern h3 {
    font-size: 2rem;
    color: var(--forest-green);
    margin-bottom: 20px;
}

.grade-card-modern .grade-description {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.7;
}

.grade-specs-modern {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
    padding: 25px 0;
    border-top: 2px solid rgba(61, 107, 31, 0.1);
    border-bottom: 2px solid rgba(61, 107, 31, 0.1);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-label {
    font-weight: 600;
    color: var(--medium-green);
    font-size: 0.95rem;
}

.spec-value {
    color: var(--gray-800);
    font-weight: 500;
}

.grade-card-modern .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   PROCESSING - HORIZONTAL TIMELINE
   ============================================ */
.processing-timeline {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.3);
}

.timeline-container {
    overflow-x: auto;
    padding: 40px 0;
}

.timeline-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-width: max-content;
    padding: 0 50px;
}

.timeline-item {
    flex: 0 0 350px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.timeline-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.timeline-item h4 {
    font-size: 1.4rem;
    color: var(--forest-green);
    margin-bottom: 15px;
}

.timeline-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

.timeline-connector {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--light-green), transparent);
    position: relative;
}

.timeline-connector::before {
    content: '→';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--light-green);
}

/* ============================================
   QUALITY SECTION - IMPROVED FLOW
   ============================================ */
.quality-section {
    padding: 100px 0;
}

.quality-flow-modern {
    padding: 60px 40px;
    margin-bottom: 60px;
}

.flow-steps-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.flow-step-modern {
    flex: 1;
    text-align: center;
}

.step-number-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--medium-green), var(--light-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(61, 107, 31, 0.3);
}

.flow-step-modern h4 {
    font-size: 1.3rem;
    color: var(--forest-green);
    margin-bottom: 10px;
}

.flow-step-modern p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.flow-arrow-modern {
    font-size: 2.5rem;
    color: var(--light-green);
    flex-shrink: 0;
}

/* Quality Metrics - Overlapping Style */
.quality-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.metric-card {
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-10px) rotate(-2deg);
}

.metric-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.metric-card h4 {
    font-size: 1.3rem;
    color: var(--forest-green);
    margin-bottom: 12px;
}

.metric-card p {
    color: var(--gray-600);
    line-height: 1.5;
}

/* ============================================
   EXPORT - FULL WIDTH BACKGROUND
   ============================================ */
.export-fullwidth {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.export-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.export-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.export-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.9), rgba(61, 107, 31, 0.85));
}

.export-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.section-eyebrow-light {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.section-title-light {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.export-lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.export-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.export-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.export-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px);
}

.export-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.export-card h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 12px;
}

.export-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* ============================================
   SUSTAINABILITY - OVERLAPPING CARDS
   ============================================ */
.sustainability-overlap {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.3);
}

.overlap-cards-container {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlap-card {
    position: absolute;
    width: 450px;
    padding: 45px 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.overlap-card:hover {
    transform: translateY(-20px) scale(1.05) !important;
    z-index: 100 !important;
}

.overlap-1 {
    top: 0;
    left: 10%;
    transform: rotate(-5deg);
    z-index: 4;
}

.overlap-2 {
    top: 80px;
    right: 10%;
    transform: rotate(5deg);
    z-index: 3;
}

.overlap-3 {
    bottom: 80px;
    left: 15%;
    transform: rotate(3deg);
    z-index: 2;
}

.overlap-4 {
    bottom: 0;
    right: 15%;
    transform: rotate(-3deg);
    z-index: 1;
}

.overlap-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.overlap-card h3 {
    font-size: 1.6rem;
    color: var(--forest-green);
    margin-bottom: 15px;
}

.overlap-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   CONTACT - MODERN LAYOUT
   ============================================ */
.contact-modern {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card-modern {
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.contact-icon-modern {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-card-modern h4 {
    font-size: 1.2rem;
    color: var(--forest-green);
    margin-bottom: 10px;
}

.contact-card-modern a,
.contact-card-modern p {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-modern a:hover {
    color: var(--light-green);
}

.contact-form-modern {
    padding: 50px;
}

.contact-form-modern h3 {
    font-size: 2rem;
    color: var(--forest-green);
    margin-bottom: 35px;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group-modern {
    position: relative;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(61, 107, 31, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--light-green);
    background: white;
}

.form-group-modern label {
    position: absolute;
    top: 16px;
    left: 20px;
    color: var(--gray-600);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group-modern input:focus + label,
.form-group-modern textarea:focus + label,
.form-group-modern input:not(:placeholder-shown) + label,
.form-group-modern textarea:not(:placeholder-shown) + label,
.form-group-modern select + label {
    top: -10px;
    left: 15px;
    font-size: 0.85rem;
    background: white;
    padding: 2px 8px;
    border-radius: 5px;
    color: var(--medium-green);
}

.form-group-modern select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233d6b1f' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
}

.form-group-modern select:invalid {
    color: var(--gray-600);
}

.form-group-modern select option {
    color: var(--gray-800);
}

.form-group-modern select option[value=""] {
    color: var(--gray-600);
}

.form-group-modern textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--forest-green), var(--medium-green));
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop */
@media (min-width: 1400px) {
    .section-title {
        font-size: 3.5rem;
    }
}

/* Desktop & Laptop */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .zigzag-image {
        height: 400px;
    }
}

/* Tablet & Below */
@media (max-width: 992px) {
    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .left-carousel,
    .right-carousel {
        display: none !important;
    }
    
    .mobile-carousel {
        display: block !important;
        height: 400px;
        margin: 30px 0;
    }
    
    .hero-text {
        padding: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* About Split */
    .about-split {
        grid-template-columns: 1fr;
    }
    
    .about-image-half {
        min-height: 400px;
    }
    
    /* Bento Grid */
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .bento-large {
        grid-column: span 2;
    }
    
    .bento-medium,
    .bento-small {
        grid-column: span 1;
    }
    
    /* Coffee Grades Grid */
    .grades-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    /* Timeline */
    .timeline-track {
        flex-direction: column;
        align-items: stretch;
    }
    
    .timeline-item {
        flex: 1 1 auto;
    }
    
    .timeline-connector {
        width: 4px;
        height: 60px;
        margin: 0 auto;
    }
    
    .timeline-connector::before {
        content: '↓';
        right: auto;
        left: 50%;
        top: auto;
        bottom: -30px;
        transform: translateX(-50%);
    }
    
    /* Quality Flow */
    .flow-steps-modern {
        flex-direction: column;
    }
    
    .flow-arrow-modern {
        transform: rotate(90deg);
    }
    
    .quality-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Export */
    .export-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Sustainability */
    .overlap-cards-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        min-height: auto;
    }
    
    .overlap-card {
        position: relative !important;
        width: 100% !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: rotate(0deg) !important;
    }
    
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form-modern {
        padding: 40px 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .mobile-carousel {
        height: 350px !important;
    }
    
    /* About */
    .about-content-half {
        padding: 50px 30px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    /* Bento */
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large,
    .bento-medium,
    .bento-small {
        grid-column: span 1;
    }
    
    /* Coffee Grades */
    .grades-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .grade-card-modern {
        padding: 35px 25px;
    }
    
    .grade-card-modern h3 {
        font-size: 1.6rem;
    }
    
    /* Quality */
    .quality-metrics {
        grid-template-columns: 1fr;
    }
    
    /* Export */
    .export-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title-light {
        font-size: 2rem;
    }
    
    /* Sustainability */
    .overlap-cards-container {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-modern {
        padding: 30px 20px;
    }
}

/* Extra Small Mobile */
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .mobile-carousel {
        height: 280px !important;
    }
    
    .about-badge {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}