/* Modern Design Styles for Muhaba Ahmed Coffee and Global Ventures */

:root {
    --primary-coffee: #92400e;
    --secondary-coffee: #d97706;
    --primary-blue: #1e40af;
    --light-bg: #f8fafc;
    --dark-text: #0f172a;
    --light-text: #64748b;
    --accent: #f59e0b;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --gradient-blue: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    --gradient-coffee: linear-gradient(135deg, var(--primary-coffee), var(--secondary-coffee));
    --gradient-hero: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(146, 64, 14, 0.9));
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Poppins', sans-serif;
    --container-padding: 2rem;
    --section-padding: 6rem 0;
    --transition-fast: 0.15s ease-in-out;
    --transition-base: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-50);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

h1 { font-size: 3.5rem; margin-bottom: 2rem; }
h2 { font-size: 2.8rem; margin-bottom: 1.8rem; }
h3 { font-size: 2.2rem; margin-bottom: 1.5rem; }
h4 { font-size: 1.8rem; margin-bottom: 1.2rem; }
h5 { font-size: 1.4rem; margin-bottom: 1rem; }
h6 { font-size: 1.1rem; margin-bottom: 1rem; }

p {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.lead {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Containers & Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

.section-modern {
    padding: 6rem 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -0.5rem;
}

.col {
    flex: 1;
    padding: 0.5rem;
}

/* Contact page two-column layout tweak: increase gap and slightly reduce form column
   to avoid visual overlap between the message form and the map/find-us panel */
.section.about .row {
    gap: 2rem;
}

.section.about .row > .col-8 {
    flex: 0 0 62%;
    max-width: 62%;
}

.section.about .row > .col-4 {
    flex: 0 0 36%;
    max-width: 36%;
}

/* Grid System */
.col-1 { flex: 0 0 8.333333%; }
.col-2 { flex: 0 0 16.666667%; }
.col-3 { flex: 0 0 25%; }
.col-4 { flex: 0 0 33.333333%; }
.col-5 { flex: 0 0 41.666667%; }
.col-6 { flex: 0 0 50%; }
.col-7 { flex: 0 0 58.333333%; }
.col-8 { flex: 0 0 66.666667%; }
.col-9 { flex: 0 0 75%; }
.col-10 { flex: 0 0 83.333333%; }
.col-11 { flex: 0 0 91.666667%; }
.col-12 { flex: 0 0 100%; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* Keep navbar above overlays and content to ensure controls are clickable on mobile */
    z-index: 3000;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(248, 248, 248, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--container-padding);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1.25rem;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    position: relative;
    transition: all var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-blue);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    margin: 3px 0;
    transition: all var(--transition-base);
    border-radius: 2px;
}

/* Hero Section - Modern */
.hero-modern {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e40af 0%, #92400e 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-content-modern h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content-modern p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.hero-badges-modern {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-modern:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.badge-coffee-modern {
    border-color: rgba(217, 119, 6, 0.4);
}

.badge-trading-modern {
    border-color: rgba(59, 130, 246, 0.4);
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons - Modern */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    color: white;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-outline-modern {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-sm-modern {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Cards - Modern */
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--primary-blue);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-coffee));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.contact-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.contact-card p {
    color: var(--light-text);
    line-height: 1.7;
}

.contact-link-modern {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-link-modern:hover {
    text-decoration: underline;
}

/* Process Cards */
.process-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--primary-blue);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-coffee));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.process-card p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Business Cards */
.business-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.business-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.business-icon-header {
    padding: 2rem;
    color: white;
    text-align: center;
}

.business-icon-header.coffee {
    background: linear-gradient(135deg, var(--primary-coffee), var(--secondary-coffee));
}

.business-icon-header.trading {
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
}

.business-icon-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.business-content-modern {
    padding: 2rem;
}

.business-content-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.business-content-modern p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.business-features-modern {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.business-features-modern li {
    padding: 0.5rem 0;
    color: var(--light-text);
    position: relative;
    padding-left: 1.5rem;
}

.business-features-modern li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Gallery Styles */
.gallery-filter-modern {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn-modern {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn-modern.active,
.filter-btn-modern:hover {
    background: var(--primary-blue);
    color: white;
}

.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gallery-img-modern {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-content-modern {
    padding: 1.5rem;
}

.gallery-content-modern h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.gallery-content-modern p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Coffee Regions */
.coffee-regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.region-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--primary-coffee);
}

.region-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.region-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-coffee), var(--secondary-coffee));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.region-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.region-card p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Process Timeline */
.modern-timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.modern-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-blue);
    left: 50%;
    margin-left: -2px;
}

.timeline-item-modern {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-item-modern:nth-child(odd) {
    padding-right: calc(50% + 30px);
    text-align: right;
}

.timeline-item-modern:nth-child(even) {
    padding-left: calc(50% + 30px);
}

.timeline-dot-modern {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-blue);
    top: 15px;
    left: 50%;
    margin-left: -10px;
    box-shadow: 0 0 0 6px rgba(30, 64, 175, 0.2);
}

.timeline-content-modern {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.timeline-content-modern h4 {
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.timeline-content-modern ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.timeline-content-modern ul li {
    padding: 0.5rem 0;
    color: var(--light-text);
    position: relative;
    padding-left: 1.5rem;
}

.timeline-content-modern ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Process Gallery */
.process-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-gallery-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.process-gallery-content {
    padding: 1.5rem;
}

.process-gallery-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.process-gallery-content p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Quality Standards */
.quality-standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quality-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quality-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-coffee));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.quality-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.quality-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.quality-card ul li {
    padding: 0.4rem 0;
    color: var(--light-text);
    position: relative;
    padding-left: 1.5rem;
}

.quality-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Timeline Grid */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-coffee));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.timeline-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.timeline-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Form Styles */
.form-map-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-modern {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.form-group-modern {
    margin-bottom: 1.5rem;
}

.form-label-modern {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-text);
}

.form-input-modern {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-text);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input-modern:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-textarea-modern {
    resize: vertical;
    min-height: 150px;
}

.consent-label-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.map-container-modern {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.map-container-modern iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
}

.business-hours-modern {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-item:last-child {
    border-bottom: none;
}

/* Service Contact Grid */
.service-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-contact-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-content-modern {
    padding: 2rem;
}

.service-content-modern h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.service-content-modern p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin: 1.5rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* FAQ Grid */
.faq-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.faq-card h4 {
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.faq-card p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Accordion Styles */
.accordion-container {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    background: white;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    color: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header.coffee {
    background: linear-gradient(135deg, var(--primary-coffee), var(--secondary-coffee));
}

.accordion-header.trading {
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
}

.accordion-header:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.accordion-header i:first-child {
    font-size: 1.3rem;
}

.accordion-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.accordion-content.active {
    padding: 1.5rem;
    max-height: 500px;
}

.accordion-content p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Overview Grid */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
}

.overview-text-modern h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.overview-text-modern p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.stats-modern {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item-modern {
    text-align: center;
}

.stat-number-modern {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label-modern {
    font-size: 1rem;
    color: var(--light-text);
    margin-top: 0.5rem;
}

.overview-image-modern {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.overview-image-modern img {
    width: 100%;
    height: auto;
    display: block;
}

.business-showcase-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Operations Grid */
.operations-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.operation-item-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.operation-item-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.operation-image-modern {
    position: relative;
    height: 200px;
}

.operation-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.operation-overlay-modern {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.operation-tag-modern {
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.operation-tag-modern.coffee {
    background: linear-gradient(135deg, var(--primary-coffee), var(--secondary-coffee));
}

.operation-tag-modern.quality {
    background: linear-gradient(135deg, var(--success), #059669);
}

.operation-tag-modern.trading {
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
}

.operation-content-modern {
    padding: 1.5rem;
}

.operation-content-modern h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.operation-content-modern p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Metrics Grid */
.metrics-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.metric-item-modern {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.metric-number-modern {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    line-height: 1;
}

.metric-label-modern {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.metric-desc-modern {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

/* Gateway Grid */
.gateway-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
}

.gateway-text-modern h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.gateway-text-modern p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.contact-methods-modern {
    margin-bottom: 2rem;
}

.contact-method-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.contact-icon-modern {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    color: white;
    font-size: 1rem;
}

.contact-method-modern span {
    color: var(--dark-text);
    font-weight: 500;
}

/* CTA Section */
.cta-modern {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-coffee));
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-modern h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-modern p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.lightbox-image-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.lightbox img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 1rem;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    margin-top: 1rem;
}

.lightbox-caption h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: white;
}

.lightbox-caption p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -10px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

/* Hero Section - Legacy */
.hero {
    position: relative;
    min-height: 109vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/adult-harvesting-coffee.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    line-height: 1.1;
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

/* Badges - Legacy */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-base);
}

.badge-coffee {
    background: rgba(217, 119, 6, 0.2);
    color: var(--secondary-coffee);
    border: 1px solid rgba(217, 119, 6, 0.3);
}

.badge-trading {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Buttons - Legacy */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--white);
}

.btn-coffee {
    background: var(--gradient-coffee);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

/* Cards - Legacy */
.card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.card-icon.coffee {
    background: var(--gradient-coffee);
}

.card-icon.trading {
    background: var(--gradient-blue);
}

.card h3 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Features Section */
.features {
    background: var(--white);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

/* About Section */
.about {
    background: var(--gray-50);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Process Section */
.process {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 30px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--gray-300);
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

/* Gallery Section - Legacy */
.gallery {
    background: var(--gray-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-content {
    padding: 2rem;
}

.gallery-item h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.gallery-item p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* CTA Section - Legacy */
.cta {
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-700);
    font-size: 1.2rem;
    transition: all var(--transition-base);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-section a:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1rem;
    text-align: center;
    color: var(--gray-400);
}

/* Extracted from contact.html inline styles */
.hero-min-85vh {
    min-height: 85vh;
}

.hero-bg-coffee {
    background-image: url('../img/coffee-beans-levitate-white-background.jpg');
}

.contact-link {
    color: inherit;
    text-decoration: none;
}

.consent-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-hours {
    line-height: 1.8;
}

.footer-logo {
    height: 40px;
}

/* Contact Form Styles extracted from contact.html */
.contact-form {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23374151" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.contact-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-icon.coffee {
    background: var(--gradient-coffee);
}

.contact-icon.trading {
    background: var(--gradient-blue);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.success-message {
    background: var(--success);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
}

.error-message {
    background: var(--error);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
        --section-padding: 3rem 0;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .navbar-nav {
        display: flex;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        z-index: 2000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        pointer-events: none;
        opacity: 0;
    }
    .navbar-nav.active {
        transform: translateY(0);
        pointer-events: auto;
        opacity: 1;
    }
    /* Optional: Add overlay when menu is open (kept below navbar and menu) */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.3);
        /* overlay should be below the nav and menu but above page content */
        z-index: 1800;
        pointer-events: auto;
    }
    
    .navbar-nav li {
        width: 100%;
        margin: 0.25rem 0;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        color: var(--gray-700);
        font-weight: 500;
        text-decoration: none;
        border-radius: 8px;
        transition: all var(--transition-base);
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-blue);
        background: var(--light-bg);
    }
    
    .nav-link.active {
        position: relative;
    }
    
    .nav-link.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 20px;
        background: var(--primary-blue);
        border-radius: 2px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .navbar-toggle {
        display: flex;
        /* Make sure the toggle is clickable above the overlay */
        position: relative;
        z-index: 3100;
        touch-action: manipulation;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .hero-content-modern h1 {
        font-size: 2.5rem;
    }
    
    .hero-content-modern p {
        font-size: 1.2rem;
    }
    
    .overview-grid,
    .gateway-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-modern {
        justify-content: center;
        gap: 2rem;
    }
    
    .business-showcase-modern,
    .operations-grid-modern,
    .metrics-grid-modern,
    .form-map-section,
    .service-contact-grid,
    .process-overview-grid,
    .coffee-regions-grid,
    .quality-standards-grid,
    .timeline-grid,
    .gallery-grid-modern,
    .process-gallery-grid,
    .faq-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .metric-number-modern {
        font-size: 2.5rem;
    }
    
    .modern-timeline:before {
        left: 30px;
    }
    
    .timeline-item-modern:nth-child(odd),
    .timeline-item-modern:nth-child(even) {
        padding: 0 0 0 60px;
        text-align: left;
    }
    
    .timeline-dot-modern {
        left: 30px;
    }
    
    .lightbox-content {
        max-width: 98vw;
        max-height: 98vh;
        padding: 0 1rem;
        flex-direction: column;
    }
    
    .lightbox img {
        max-height: 70vh;
        max-width: 95vw;
    }
    
    .lightbox-image-container {
        max-width: 95vw;
    }
    
    .lightbox-caption {
        max-width: 95vw;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .lightbox-caption {
        padding: 0.75rem;
    }
    
    .lightbox-caption h3 {
        font-size: 1.2rem;
    }
    
    .lightbox-caption p {
        font-size: 0.9rem;
    }
    
    .lightbox-close {
        top: -45px;
        right: 5px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav {
        font-size: 1.5rem;
        padding: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .lightbox-prev {
        left: -60px;
    }
    
    .lightbox-next {
        right: -60px;
    }
    
    @media (max-width: 480px) {
        .lightbox-nav {
            font-size: 1.2rem;
            padding: 0.8rem;
            width: 40px;
            height: 40px;
        }
        
        .lightbox-prev {
            left: -50px;
        }
        
        .lightbox-next {
            right: -50px;
        }
        
        .lightbox-close {
            top: -40px;
            right: 0;
            font-size: 1.8rem;
            width: 35px;
            height: 35px;
        }
    }
    
    .section.about .row {
        gap: 1rem;
    }
    
    .section.about .row > .col-8,
    .section.about .row > .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Utility helpers */
.ml-1rem { margin-left: 1rem !important; }
.mt-3rem { margin-top: 3rem !important; }
.logo-40 { height: 40px !important; }

/* Background utilities */
.bg-light { background: var(--light-bg) !important; }
.bg-primary-gradient { background: linear-gradient(135deg, var(--primary-blue), var(--secondary-coffee)) !important; color: white !important; }