/* ============================================
   ANGO COFFEE ETHIOPIA - STYLESHEET
   Modern, Professional Design with Cool Effects
   ============================================ */

/* CSS Variables - Brand Colors (Adjust based on logo) */
:root {
    --primary-brown: #6B4423;
    --dark-brown: #4A2C1A;
    --light-brown: #8B6F47;
    --gold: #D4A574;
    --cream: #F5E6D3;
    --green: #2D5016;
    --dark-green: #1A3009;
    --white: #FFFFFF;
    --off-white: #FAF8F5;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 5rem 0;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: var(--gold);
    color: var(--dark-brown);
}

::-moz-selection {
    background: var(--gold);
    color: var(--dark-brown);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--off-white);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-brown);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-brown);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.section-title {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title.text-center {
    display: block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--primary-brown) 100%);
    margin-top: 0.75rem;
    border-radius: 2px;
}

.section-title.text-center::after {
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px var(--shadow-hover);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logo-img:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.logo-img-small {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-brown);
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-brown);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Welcome Hero Section */
.welcome-hero {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-brown) 50%, var(--green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

.welcome-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.welcome-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.welcome-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.4s both;
}

.welcome-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.6s both;
}

.welcome-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.welcome-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.welcome-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.welcome-feature:hover .feature-icon-circle {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--gold);
}

.welcome-feature span:last-child {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.scroll-arrow-down {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.6);
    position: relative;
}

.scroll-arrow-down::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
}

/* Hero Map Section - New Cool Design */
.hero-top-bar {
    height: 8px;
    background: var(--dark-green);
    width: 100%;
}

.hero-map-section {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: var(--white);
}

.hero-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 70vh;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.hero-logo-container {
    width: 120px;
    height: 120px;
    padding: 15px;
    background: var(--off-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.hero-brand-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-green);
    margin: 0;
    letter-spacing: -0.5px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    color: var(--green);
    margin: 0;
    position: relative;
    padding-left: 1.5rem;
}

.hero-tagline::before {
    content: '☕';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.hero-intro-text {
    margin-top: 2rem;
}

.hero-intro-text p {
    font-size: 1.2rem;
    color: var(--dark-green);
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
}

.hero-map-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.ethiopia-map {
    width: 100%;
    max-width: 600px;
    position: relative;
    background: var(--off-white);
    border-radius: 25px;
    padding: 1.5rem;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.ethiopia-map:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
}

.ethiopia-map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    object-fit: contain;
}

.map-markers-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    pointer-events: none;
}

.map-markers-overlay .coffee-marker {
    position: absolute;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    z-index: 10;
}

.map-markers-overlay .coffee-marker:hover {
    transform: scale(1.5);
    animation: none;
}

.map-markers-overlay .coffee-marker.active {
    transform: scale(1.8);
    animation: pulse 1s infinite;
}

.marker-dot {
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 3px solid var(--dark-green);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.marker-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--dark-green);
    border-radius: 50%;
}

.map-markers-overlay .coffee-marker:hover .marker-dot {
    background: var(--gold);
    border-color: var(--dark-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.map-markers-overlay .coffee-marker.active .marker-dot {
    background: var(--gold);
    border-color: var(--dark-green);
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.6);
}

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

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.regions-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-green);
    margin: 0;
    letter-spacing: -0.5px;
}

.regions-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.region-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--off-white);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.region-item:hover {
    background: var(--white);
    border-color: var(--green);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.region-item.active {
    background: var(--green);
    border-color: var(--dark-green);
}

.region-item.active .region-name {
    color: var(--white);
}

.region-item.active .region-arrow {
    color: var(--white);
    transform: translateX(5px);
}

.region-arrow {
    font-size: 1.2rem;
    color: var(--green);
    font-weight: bold;
    transition: all 0.3s ease;
}

.region-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-green);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

/* Regions Detail Section */
.regions-detail-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.regions-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.region-detail-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.region-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--green);
}

.region-card-header {
    background: linear-gradient(135deg, var(--green) 0%, var(--dark-green) 100%);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.region-card-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.5rem;
}

.region-badge {
    background: var(--gold);
    color: var(--dark-brown);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.region-card-body {
    padding: 2rem;
}

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

.region-specs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--cream);
}

.spec-item {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.spec-item::before {
    content: '📍';
    margin-right: 0.5rem;
}

/* Hero Section - Old (keeping for other pages) */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-brown) 50%, var(--green) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--white);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark-brown);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.btn-primary:hover {
    background: var(--light-brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-brown);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.85);
    color: var(--dark-brown);
    border: 2px solid var(--primary-brown);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: var(--primary-brown);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--primary-brown);
}

.home-cta .btn-outline,
.export-cta .btn-outline,
.coffee-cta .btn-outline,
.export-cta-modern .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.home-cta .btn-outline:hover,
.export-cta .btn-outline:hover,
.coffee-cta .btn-outline:hover,
.export-cta-modern .btn-outline:hover {
    background: var(--white);
    color: var(--dark-brown);
    border-color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--dark-brown);
}

.btn-light:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--off-white);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary-brown));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px var(--shadow);
    border-color: var(--gold);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-brown);
}

/* About Preview */
.about-preview {
    padding: var(--section-padding);
    background: var(--off-white);
}

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

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gold) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 10px 40px var(--shadow);
}

.image-placeholder.large {
    height: 500px;
}

.story-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

/* Coffee Preview */
.coffee-preview {
    padding: var(--section-padding);
    background: var(--white);
}

.coffee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.coffee-card {
    background: var(--off-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.coffee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px var(--shadow);
    border-color: var(--gold);
}

.coffee-card-header {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.coffee-card-body {
    padding: 2rem;
}

.coffee-notes {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.coffee-notes li {
    background: var(--gold);
    color: var(--dark-brown);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Export CTA */
.export-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--green) 100%);
    color: var(--white);
    text-align: center;
}

.export-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.export-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Page Hero */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-brown) 40%, var(--green) 100%);
    color: var(--white);
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212, 165, 116, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.page-hero p {
    color: var(--gold);
    font-size: 1.3rem;
    position: relative;
}

/* Export Process */
.export-process {
    padding: var(--section-padding);
    background: var(--white);
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--off-white);
    border-radius: 20px;
    border-left: 5px solid var(--gold);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px var(--shadow);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--dark-brown);
}

.step-content ul {
    list-style: none;
    margin-top: 1rem;
}

.step-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.step-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Export Info */
.export-info {
    padding: var(--section-padding);
    background: var(--off-white);
}

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

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--shadow);
}

.info-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-brown);
}

.info-card ul {
    list-style: none;
    margin-top: 1rem;
}

.info-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.info-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.5rem;
}

.export-cta-section {
    padding: var(--section-padding);
    background: var(--white);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Coffee Detail */
.coffee-detail {
    padding: 6rem 0;
    background: var(--white);
}

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

.coffee-intro h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.coffee-varieties {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.variety-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.variety-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.variety-card.featured {
    border: 2px solid var(--gold);
}

.variety-image {
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    width: 100%;
    position: relative;
}

.variety-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.variety-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.variety-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark-brown);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    width: fit-content;
}

.variety-content h3 {
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-weight: 600;
}

.variety-description {
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.variety-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 0;
}

.variety-specs .spec {
    padding: 0.75rem;
    background: var(--off-white);
    border-radius: 10px;
    text-align: center;
}

.variety-specs .spec strong {
    display: block;
    color: var(--green);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.variety-specs .spec {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
}

.tasting-notes {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream);
}

.tasting-notes h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notes-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.note-tag {
    background: var(--off-white);
    color: var(--text-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.85rem;
    border: 1px solid var(--cream);
}

/* Coffee Specs */
.coffee-specs {
    padding: 6rem 0;
    background: var(--off-white);
}

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

@media (max-width: 968px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.spec-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.spec-card h3 {
    margin-bottom: 2rem;
    color: var(--dark-brown);
    font-size: 1.5rem;
    font-weight: 700;
}

.spec-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-card ul li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    border-bottom: 1px solid var(--cream);
    font-size: 0.95rem;
    line-height: 1.6;
}

.spec-card ul li::before {
    content: '☕';
    position: absolute;
    left: 0;
    font-size: 1rem;
    color: var(--dark-brown);
}

.spec-card ul li:last-child {
    border-bottom: none;
}

.coffee-cta {
    padding: 6rem 0;
    background: var(--dark-green);
    text-align: center;
}

.coffee-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
}

.coffee-cta .cta-content h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-family: var(--font-heading);
}

.coffee-cta .cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400;
}

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

.coffee-cta .btn-outline-light {
    background: transparent;
    color: var(--primary-brown);
    border: 2px solid var(--primary-brown);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.coffee-cta .btn-outline-light:hover {
    background: var(--primary-brown);
    color: var(--white);
    transform: translateY(-2px);
}

/* Quality */
.quality-intro {
    padding: var(--section-padding);
    background: var(--white);
}

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

.quality-process {
    padding: var(--section-padding);
    background: var(--off-white);
}

.quality-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quality-step {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quality-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--green) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quality-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px var(--shadow);
}

.quality-step:hover::after {
    transform: scaleX(1);
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.certifications {
    padding: var(--section-padding);
    background: var(--white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-card {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cert-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px var(--shadow);
}

.cert-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.cert-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-brown);
}

.cert-card ul {
    list-style: none;
    margin-top: 1rem;
}

.cert-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.cert-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.quality-standards {
    padding: var(--section-padding);
    background: var(--off-white);
}

.standards-table {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    margin-top: 3rem;
}

.standard-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--cream);
}

.standard-row:last-child {
    border-bottom: none;
}

.standard-row.header {
    background: var(--primary-brown);
    color: var(--white);
    font-weight: 600;
}

.standard-row.header .standard-cell {
    color: var(--white);
}

.standard-cell {
    color: var(--text-dark);
    font-weight: 500;
}

/* Gallery */
.gallery-section {
    padding: var(--section-padding);
    background: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: 25px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--dark-brown);
    border-color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-image .image-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

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

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

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

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Contact */
.contact-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.info-cards {
    margin-top: 2rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold);
}

.info-card:nth-child(2) {
    border-left-color: var(--green);
}

.info-card:nth-child(3) {
    border-left-color: var(--primary-brown);
}

.info-card:nth-child(4) {
    border-left-color: var(--dark-green);
}

.info-card:nth-child(5) {
    border-left-color: var(--light-brown);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px var(--shadow);
    background: var(--white);
}

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

.info-content h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-brown);
}

.info-content p {
    margin: 0.25rem 0;
    color: var(--text-light);
}

.contact-form-wrapper {
    background: var(--off-white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px var(--shadow);
    border-top: 4px solid var(--gold);
}

.contact-form h2 {
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-brown);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--cream);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

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

.map-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.map-container {
    margin-top: 3rem;
}

.map-placeholder {
    height: 400px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 5px 20px var(--shadow);
}

.map-placeholder p {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.map-note {
    font-size: 0.9rem !important;
    color: var(--text-light) !important;
}

.map-container iframe {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 20px;
}

.map-address-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    margin-top: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.map-address-bar span {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.map-address-bar p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    min-width: 200px;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* About Detail */
.about-detail {
    padding: var(--section-padding);
    background: var(--white);
}

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

.story-content h2 {
    margin-bottom: 1.5rem;
}

.story-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--primary-brown) 100%);
    margin-top: 0.75rem;
    border-radius: 2px;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-content p:first-of-type::first-letter {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-brown);
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
}

.values {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
}

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

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--green) 100%);
}

.value-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--green) 0%, var(--dark-green) 100%);
}

.value-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--primary-brown) 0%, var(--gold) 100%);
}

.value-card:nth-child(4)::before {
    background: linear-gradient(90deg, var(--dark-green) 0%, var(--gold) 100%);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px var(--shadow);
    border-color: var(--gold);
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-brown);
}

.location {
    padding: var(--section-padding);
    background: var(--white);
}

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

.location-details {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.detail-item {
    padding: 1rem;
    background: var(--off-white);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.detail-item strong {
    color: var(--dark-brown);
    display: block;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--dark-brown);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 40px var(--shadow);
        transition: left 0.3s ease;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-map-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-left {
        align-items: center;
    }

    .hero-logo-container {
        margin: 0 auto;
    }

    .hero-brand-name {
        text-align: center;
    }

    .hero-tagline {
        text-align: center;
    }

    .hero-intro-text {
        text-align: center;
    }

    .hero-map-container {
        order: 2;
    }

    .hero-right {
        order: 3;
    }

    .regions-heading {
        text-align: center;
    }

    .about-content,
    .about-story,
    .location-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .variety-card {
        grid-template-columns: 1fr;
    }

    .variety-image {
        min-height: 300px;
        height: 300px;
    }

    .variety-content {
        padding: 2rem;
    }

    .variety-specs {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .home-hero {
        padding: 6rem 0 4rem;
        min-height: auto;
        background-attachment: scroll;
    }

    .home-hero-content {
        padding: 0 1.5rem;
    }

    .home-hero-logo {
        width: 120px;
        height: 120px;
        margin-bottom: 1.5rem;
    }

    .home-hero-content h1 {
        font-size: 2.2rem;
    }

    .home-hero-subtitle {
        font-size: 1.1rem;
    }

    .home-hero-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .home-hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .home-hero-buttons .btn {
        width: 100%;
    }

    .coffee-intro h2 {
        font-size: 2rem;
    }

    .coffee-intro p {
        font-size: 1rem;
    }

    .coffee-cta .cta-content h2 {
        font-size: 2.5rem;
    }

    .coffee-cta .cta-content p {
        font-size: 1.1rem;
    }

    .coffee-cta .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .coffee-cta .cta-buttons .btn {
        width: 100%;
    }

    .map-container-simple {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ethiopia-map-simple {
        padding: 1.5rem;
    }

    .ethiopia-map-img {
        border-radius: 12px;
    }

    .home-regions-list {
        width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .home-region-item {
        padding: 1rem;
    }

    .home-region-num {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .home-region-item h3 {
        font-size: 1rem;
    }

    .home-region-item p {
        font-size: 0.8rem;
    }

    .home-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .location-details {
        grid-template-columns: 1fr;
    }

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 75vh;
        min-height: 480px;
    }

    .slider-content h1 {
        font-size: 2rem;
    }

    .slider-subtitle {
        font-size: 1rem;
    }

    .slider-desc {
        font-size: 0.95rem;
    }

    .slider-logo {
        width: 80px;
        height: 80px;
    }

    .slider-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .slider-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .welcome-hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }

    .welcome-title {
        font-size: 3rem;
    }

    .welcome-description {
        font-size: 1.1rem;
    }

    .welcome-features {
        gap: 2rem;
    }

    .welcome-title {
        font-size: 2.5rem;
    }

    .welcome-description {
        font-size: 1rem;
    }

    .welcome-buttons {
        flex-direction: column;
    }

    .welcome-buttons .btn {
        width: 100%;
    }

    .welcome-features {
        gap: 1.5rem;
    }

    .feature-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .hero-map-section {
        padding: 6rem 0 3rem;
    }

    .hero-map-wrapper {
        min-height: auto;
    }

    .hero-logo-container {
        width: 100px;
        height: 100px;
    }

    .hero-brand-name {
        font-size: 2rem;
    }

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

    .hero-intro-text p {
        font-size: 1rem;
    }

    .ethiopia-map {
        max-width: 100%;
        padding: 1rem;
    }

    .regions-heading {
        font-size: 2rem;
    }

    .regions-detail-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .coffee-grid,
    .info-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }

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

    .variety-card {
        border-radius: 15px;
    }

    .variety-content h3 {
        font-size: 1.5rem;
    }

    .variety-description {
        font-size: 0.95rem;
    }

    .home-hero-content h1 {
        font-size: 1.8rem;
    }

    .home-hero-subtitle {
        font-size: 1rem;
    }

    .home-hero-desc {
        font-size: 0.9rem;
    }

    .home-hero-logo {
        width: 100px;
        height: 100px;
    }

    .home-hero-content {
        padding: 0 1rem;
    }

    .coffee-intro h2 {
        font-size: 1.8rem;
    }

    .coffee-cta .cta-content h2 {
        font-size: 2rem;
    }

    .coffee-cta .cta-content p {
        font-size: 1rem;
    }

    .key-points-grid {
        grid-template-columns: 1fr;
    }

    .home-feature {
        padding: 2rem 1.5rem;
    }

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

    .page-hero p {
        font-size: 1.1rem;
    }

    .coffee-detail {
        padding: 4rem 0;
    }

    .coffee-specs {
        padding: 4rem 0;
    }

    .coffee-cta {
        padding: 4rem 0;
    }

    .home-map {
        padding: 3.5rem 0;
    }

    .home-map h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .home-map-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .home-map-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        display: flex !important;
        flex-direction: column;
        width: 100%;
    }

    .home-map-image {
        padding: 1rem;
        width: 100%;
        order: 1;
        position: relative;
        overflow: visible;
        box-sizing: border-box;
    }

    .home-map-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .map-markers-simple {
        top: 1rem;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        width: calc(100% - 2rem);
        height: calc(100% - 2rem);
    }

    .map-marker {
        position: absolute;
    }

    .marker-dot-simple {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }

    .marker-pulse {
        width: 16px;
        height: 16px;
    }

    .home-regions-list {
        width: 100%;
        order: 2;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .home-region-item {
        padding: 0.85rem;
        gap: 0.75rem;
        flex-wrap: nowrap;
        min-height: auto;
        width: 100%;
    }

    .home-region-item > div {
        flex: 1;
        min-width: 0;
    }

    .home-region-num {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
        flex-shrink: 0;
        border-radius: 8px;
    }

    .home-region-item h3 {
        font-size: 0.9rem;
        margin-bottom: 0.15rem;
    }

    .home-region-item p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .home-region-item:hover {
        transform: translateY(-2px);
    }

    .home-features {
        padding: 3.5rem 0;
    }

    .home-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .home-feature {
        padding: 2rem 1.5rem;
    }

    .home-cta {
        padding: 3.5rem 0;
    }

    .home-cta h2 {
        font-size: 2rem;
    }

    .home-cta p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .home-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .home-cta-buttons .btn {
        width: 100%;
    }

    .step-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 1rem;
    }

    .standard-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .standard-row.header {
        display: none;
    }

    .standard-row::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-brown);
        margin-bottom: 0.5rem;
    }

    /* Footer Mobile */
    .footer-content-unified {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-logo-section {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-logo-unified {
        width: 45px;
        height: 45px;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-links-unified {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .footer-links-unified a {
        font-size: 0.9rem;
    }

    .footer-unified {
        padding: 2rem 0 1.25rem;
    }

    .footer-bottom-unified {
        padding-top: 1.25rem;
    }

    .footer-bottom-unified p {
        font-size: 0.8rem;
    }

    .footer-social-unified {
        gap: 1rem;
        padding: 1rem 0;
    }

    .footer-social-unified a {
        width: 34px;
        height: 34px;
    }

    .footer-social-unified svg {
        width: 16px;
        height: 16px;
    }

    .station-header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .map-address-bar {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
    }

    .map-address-bar p {
        min-width: unset;
    }

    .map-address-bar .btn {
        width: 100%;
    }

    /* Map Section Mobile - Already handled above */

    /* Coffee Cards Mobile */
    .variety-image {
        min-height: 250px;
        height: 250px;
    }

    .variety-content {
        padding: 1.5rem;
    }

    .variety-content h3 {
        font-size: 1.4rem;
    }

    .variety-description {
        font-size: 0.95rem;
    }

    .variety-specs {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .variety-specs .spec {
        padding: 0.75rem;
        text-align: left;
    }

    /* Spec Cards Mobile */
    .spec-card {
        padding: 2rem 1.5rem;
    }

    .spec-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .spec-card ul li {
        font-size: 0.9rem;
        padding: 0.75rem 0;
    }

    /* CTA Mobile */
    .coffee-cta .cta-content {
        padding: 0 1rem;
    }

    .coffee-cta .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .coffee-cta .cta-buttons .btn {
        width: 100%;
        padding: 1rem 2rem;
    }

    /* Hero Mobile */
    .simple-hero-content {
        padding: 2rem 1rem;
    }

    .hero-logo-main-img {
        width: 100px;
        height: 100px;
    }

    /* Key Points Mobile */
    .home-feature {
        padding: 2rem 1.5rem;
    }

    .home-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .home-feature h3 {
        font-size: 1.2rem;
    }

    .home-feature p {
        font-size: 0.95rem;
    }

    /* Page Hero Mobile */
    .page-hero {
        padding: 6rem 0 3rem;
    }

    .page-hero h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .page-hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Section Headers Mobile */
    .map-section-header h2 {
        font-size: 2rem;
    }

    .map-section-header p {
        font-size: 1rem;
    }

    .coffee-intro h2 {
        font-size: 1.8rem;
    }

    .coffee-intro p {
        font-size: 1rem;
    }

    /* Container Padding Mobile */
    .container {
        padding: 0 1.5rem;
    }
}

/* ============================================
   SIMPLIFIED HOMEPAGE STYLES
   ============================================ */

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    margin-top: 70px;
    height: 85vh;
    min-height: 550px;
    max-height: 800px;
    overflow: hidden;
}

.slider-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 44, 26, 0.75) 0%, rgba(45, 80, 22, 0.6) 100%);
}

.slider-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: sliderFadeUp 0.8s ease;
}

@keyframes sliderFadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

.slider-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    display: block;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    padding: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.slider-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.15;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.slider-subtitle {
    font-size: 1.25rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.slider-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

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

.slider-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.slider-buttons .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.slider-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--dark-brown);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.slider-arrow {
    width: 42px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-brown);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.6rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

.slider-dot:hover {
    border-color: var(--gold);
}

/* Home Hero Section (kept for backwards compat) */
.home-hero {
    position: relative;
    padding: 8rem 0 6rem;
    margin-top: 70px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.home-hero-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 6px 25px rgba(0, 0, 0, 0.15));
}

.home-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.home-hero-subtitle {
    font-size: 1.3rem;
    color: var(--dark-green);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.home-hero-desc {
    font-size: 1.05rem;
    color: var(--dark-brown);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.home-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.home-hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Home Map Section */
.home-map {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 50%, var(--off-white) 100%);
    position: relative;
}

.home-map h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.home-map-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.home-map-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.home-map-image {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
}

.home-map-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.map-markers-simple {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    pointer-events: none;
    width: calc(100% - 4rem);
    height: calc(100% - 4rem);
}

.map-marker {
    position: absolute;
    cursor: pointer;
    pointer-events: all;
    z-index: 10;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
    opacity: 0.6;
}

.marker-dot-simple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--white);
    border: 3px solid var(--green);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.map-marker:hover .marker-dot-simple {
    background: var(--gold);
    border-color: var(--dark-green);
    transform: translate(-50%, -50%) scale(1.3);
}

.map-marker:hover .marker-pulse {
    background: var(--gold);
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.home-regions-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.home-region-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    background: var(--white);
    border-radius: 14px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-region-item:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.home-region-item.active {
    background: var(--green);
    border-color: var(--dark-green);
}

.home-region-item.active .home-region-num,
.home-region-item.active h3 {
    color: var(--white);
}

.home-region-item.active p {
    color: rgba(255, 255, 255, 0.9);
}

.home-region-num {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gold) 100%);
    color: var(--dark-brown);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.home-region-item h3 {
    font-size: 1.1rem;
    color: var(--dark-brown);
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.home-region-item p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
    transition: all 0.3s ease;
}

/* Home Features Section */
.home-features {
    padding: 5rem 0;
    background: var(--white);
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.home-feature {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--off-white);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.home-feature:hover {
    transform: translateY(-5px);
    border-color: var(--green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.home-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green) 0%, var(--dark-green) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
    transition: all 0.3s ease;
}

.home-feature:hover .home-feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

.home-feature h3 {
    font-size: 1.4rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.home-feature p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Home CTA Section */
.home-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--green) 50%, var(--primary-brown) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.home-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.home-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

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

.home-cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Unified Footer - Simple & Perfect */
.footer-unified {
    background: linear-gradient(180deg, var(--dark-brown) 0%, #3a2010 100%);
    color: var(--white);
    padding: 2.5rem 0 1.5rem;
    border-top: 3px solid var(--gold);
}

.footer-content-unified {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-unified {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.footer-links-unified {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links-unified a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links-unified a:hover {
    color: var(--gold);
}

.footer-links-unified a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-links-unified a:hover::after {
    width: 100%;
}

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

.footer-bottom-unified p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
}

/* ============================================
   COOL EXPORT PROCEDURES PAGE STYLES
   ============================================ */

/* Export Hero Section */
.export-hero {
    position: relative;
    min-height: 90vh;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--green) 50%, var(--primary-brown) 100%);
    overflow: hidden;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.export-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    opacity: 0.6;
}

.export-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.export-hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.export-hero .hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.6);
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
}

.section-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark-brown);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

/* Process Timeline */
.process-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.process-intro h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-brown);
}

.process-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green) 0%, var(--dark-green) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-step:hover .step-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(45, 80, 22, 0.4);
}

.step-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.step-connector {
    width: 3px;
    height: 100px;
    background: linear-gradient(180deg, var(--green) 0%, transparent 100%);
    margin-top: 1rem;
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--green);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.timeline-step:last-child .step-connector {
    display: none;
}

.step-number-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: var(--gold);
    color: var(--dark-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
    z-index: 3;
}

.step-card-modern {
    background: var(--white);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--green) 0%, var(--gold) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-step:hover .step-card-modern {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--green);
}

.timeline-step:hover .step-card-modern::before {
    opacity: 1;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.step-header h3 {
    font-size: 1.75rem;
    color: var(--dark-brown);
    margin: 0;
    flex: 1;
}

.step-duration {
    background: var(--cream);
    color: var(--dark-brown);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.step-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.step-details {
    display: grid;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--off-white);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: var(--cream);
    transform: translateX(5px);
}

.detail-icon {
    width: 24px;
    height: 24px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

.detail-item span:last-child {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Info Section Modern */
.export-info-modern {
    padding: 6rem 0;
    background: var(--off-white);
}

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

.info-header h2 {
    font-size: 3rem;
    color: var(--dark-brown);
    margin-top: 1rem;
}

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

.info-card-modern {
    background: var(--white);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.info-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green) 0%, var(--gold) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--green);
}

.info-card-modern:hover::before {
    transform: scaleX(1);
}

.info-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

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

.info-card-modern > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.info-list-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--off-white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-list-item:hover {
    background: var(--cream);
    transform: translateX(5px);
}

.check-mark {
    width: 24px;
    height: 24px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-list-item span:last-child {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

/* CTA Modern */
.export-cta-modern {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--green) 100%);
    overflow: hidden;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    opacity: 0.5;
}

.cta-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon-large {
    font-size: 5rem;
    margin-bottom: 2rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.cta-content-modern h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content-modern p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.btn-primary-large {
    padding: 1.25rem 3rem;
    background: var(--gold);
    color: var(--dark-brown);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.4);
    display: inline-block;
}

.btn-primary-large:hover {
    background: var(--light-brown);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(212, 165, 116, 0.6);
}

.btn-outline-large {
    padding: 1.25rem 3rem;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-large:hover {
    background: var(--white);
    color: var(--dark-brown);
    transform: translateY(-3px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-feature span:last-child {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Washing Stations Section */
.washing-stations {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    position: relative;
}

.washing-stations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--green) 50%, var(--gold) 100%);
}

.stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.station-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.station-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--green);
}

.station-header {
    background: linear-gradient(135deg, var(--green) 0%, var(--dark-green) 100%);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.station-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.5rem;
}

.station-badge {
    background: var(--gold);
    color: var(--dark-brown);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.station-body {
    padding: 2rem;
}

.station-detail {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--off-white);
    border-radius: 12px;
    border-left: 3px solid var(--gold);
}

.station-detail:last-child {
    margin-bottom: 0;
    border-left-color: var(--green);
}

.station-detail strong {
    display: block;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Page Gallery Strip */
.page-gallery-strip {
    padding: 4rem 0;
    background: var(--off-white);
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.strip-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.strip-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.strip-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.strip-item:hover .strip-img {
    transform: scale(1.05);
}

.strip-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    display: none;
}

@media (max-width: 768px) {
    .gallery-strip {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .strip-img {
        height: 180px;
    }
}

/* Footer Social Links */
.footer-social-unified {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 0;
    flex-wrap: wrap;
}

.footer-social-unified a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-unified a:hover {
    background: var(--gold);
    color: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.footer-social-unified svg {
    display: block;
}

.wechat-trigger {
    position: relative;
}

.wechat-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--text-dark);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 100;
}

.wechat-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--white);
}

.wechat-tooltip.show {
    opacity: 1;
    visibility: visible;
}

.wechat-qr-card .info-content {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
}

.wechat-id-text {
    margin: 0;
    font-weight: 600;
    color: var(--dark-brown);
}

.wechat-qr-image {
    width: clamp(180px, 40vw, 260px);
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f8f8f8;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.wechat-qr-hint {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .wechat-qr-card .info-content {
        align-items: center;
        text-align: center;
    }
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Contact Info Link Styles */
.info-content a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-brown);
}

/* Responsive for Export Page */
@media (max-width: 968px) {
    .timeline-step {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-visual {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .step-connector {
        width: 100px;
        height: 3px;
        margin-top: 0;
        margin-left: 1rem;
    }

    .step-connector::after {
        left: 100%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .export-hero h1 {
        font-size: 3rem;
    }

    .process-intro h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .export-hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-content-modern h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary-large,
    .btn-outline-large {
        width: 100%;
        text-align: center;
    }
}

