/* ========== ROOT VARIABLES ========== */
:root {
    --ethio-green: #1a7a2e;
    --ethio-green-dark: #145f23;
    --ethio-green-light: #e8f5e9;
    --ethio-yellow: #f5a623;
    --ethio-yellow-light: #fff8e1;
    --ethio-red: #c62828;
    --dark: #0f1a12;
    --gray-50: #f8faf8;
    --gray-100: #f0f4f1;
    --gray-200: #e2e8e4;
    --gray-500: #6b7c6e;
    --gray-700: #344138;
    --shadow-sm: 0 2px 8px rgba(15, 26, 18, 0.06);
    --shadow-md: 0 8px 30px rgba(15, 26, 18, 0.08);
    --shadow-lg: 0 20px 60px rgba(15, 26, 18, 0.12);
    --shadow-xl: 0 30px 80px rgba(15, 26, 18, 0.15);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gray-50);
    color: var(--gray-700);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--ethio-green), var(--ethio-green-dark)); border-radius: 10px; }

/* ========== PAGE LOADER ========== */
.page-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-content {
    text-align: center;
}
.loader-brand {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ethio-green);
    letter-spacing: -2px;
    margin-bottom: 20px;
}
.loader-brand span {
    color: var(--dark);
}
.loader-bar {
    width: 120px;
    height: 4px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}
.loader-bar-fill {
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--ethio-green), var(--ethio-yellow), var(--ethio-red));
    border-radius: 4px;
    animation: loaderSlide 1s ease-in-out infinite;
}
@keyframes loaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ========== NAVBAR ========== */
.navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 122, 46, 0.08);
    padding: 12px 0;
    transition: all 0.3s ease;
    z-index: 1050;
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}





.navbar .navbar-brand {
    margin-right: 1rem;
}
.navbar-toggler {
    order: 2;
}
.language-switch {
    order: 3;
}





.navbar-brand {
    font-weight: 800;
    font-size: 1.7rem;
    letter-spacing: -1px;
    color: var(--ethio-green) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.brand-icon {
    width: 70px;
    height: 42px;
    background: linear-gradient(135deg, var(--ethio-green), var(--ethio-green-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(26, 122, 46, 0.3);
}
.nav-link {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--gray-700) !important;
    padding: 8px 18px !important;
    border-radius: 50px;
    transition: all 0.25s ease;
    position: relative;
}
.nav-link:hover,
.nav-link.active {
    color: var(--ethio-green) !important;
    background: var(--ethio-green-light);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--ethio-yellow);
    border-radius: 3px;
}

/* ========== BUTTONS ========== */
.btn-ethiopia {
    background: linear-gradient(135deg, var(--ethio-green), var(--ethio-green-dark));
    color: white;
    border-radius: 50px;
    padding: 14px 36px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-ethiopia::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}
.btn-ethiopia:hover::before { left: 100%; }
.btn-ethiopia:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 122, 46, 0.35);
    color: white;
}
.btn-ethiopia.btn-lg {
    padding: 16px 42px;
    font-size: 1rem;
}
.btn-outline-eth {
    border: 2px solid var(--ethio-green);
    color: var(--ethio-green);
    border-radius: 50px;
    padding: 14px 36px;
    font-weight: 700;
    font-size: 0.95rem;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-eth:hover {
    background: var(--ethio-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 122, 46, 0.25);
}
.btn-outline-eth.btn-lg {
    padding: 16px 42px;
    font-size: 1rem;
}
.btn-sm {
    padding: 10px 22px !important;
    font-size: 0.85rem !important;
}

/* ========== SECTIONS ========== */
.page-section {
    padding: 100px 0;
    min-height: 60vh;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ethio-green-light);
    color: var(--ethio-green);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.section-title {
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--dark);
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}
.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
    max-width: 600px;
    line-height: 1.8;
}

/* ========== HERO (Redesigned — Clean, Centered) ========== */
#home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #f8faf8 0%, #e8f5e9 30%, #fff8e1 70%, #f8faf8 100%);
    padding-top: 120px;
    padding-bottom: 60px;
}
.hero-bg-pattern {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(26, 122, 46, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 166, 35, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(198, 40, 40, 0.03) 0%, transparent 40%);
    pointer-events: none;
}
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
}
.hero-decoration-1 {
    width: 500px; height: 500px;
    background: var(--ethio-green);
    top: -150px; right: -100px;
}
.hero-decoration-2 {
    width: 300px; height: 300px;
    background: var(--ethio-yellow);
    bottom: -80px; left: -60px;
}

/* Animated hero shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.08;
}
.hero-shape-1 {
    width: 200px; height: 200px;
    background: var(--ethio-green);
    top: 15%; left: 5%;
    animation: shapeFloat 8s ease-in-out infinite;
}
.hero-shape-2 {
    width: 150px; height: 150px;
    background: var(--ethio-yellow);
    top: 60%; right: 8%;
    animation: shapeFloat 10s ease-in-out infinite 2s;
}
.hero-shape-3 {
    width: 100px; height: 100px;
    background: var(--ethio-red);
    bottom: 20%; left: 15%;
    animation: shapeFloat 7s ease-in-out infinite 4s;
}
@keyframes shapeFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    letter-spacing: -2.5px;
    line-height: 1.1;
    color: var(--dark);
}
.hero-title .highlight {
    background: linear-gradient(135deg, var(--ethio-green), #2da44e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.2rem;
    color: var(--gray-500);
    line-height: 1.9;
}
.hero-stats {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.hero-stat h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ethio-green);
    margin-bottom: 2px;
}
.hero-stat p {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
    margin: 0;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* Floating feature pills */
.hero-feature-pills {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
    flex-wrap: wrap;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    animation: pillFloat 6s ease-in-out infinite;
}
.hero-pill:hover {
    border-color: var(--ethio-green);
    color: var(--ethio-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.hero-pill i {
    font-size: 1rem;
    color: var(--ethio-green);
}
.pill-1 { animation-delay: 0s; }
.pill-2 { animation-delay: 0.5s; }
.pill-3 { animation-delay: 1s; }
.pill-4 { animation-delay: 1.5s; }
@keyframes pillFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ========== TRUST BAR ========== */
.trust-bar {
    background: white;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}
.trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
}
.trust-item i {
    color: var(--ethio-green);
    font-size: 1.1rem;
}

/* ========== SOLUTIONS ========== */
#solutions {
    background: white;
}
.solution-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.solution-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--ethio-green), var(--ethio-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.solution-card:hover::before { transform: scaleX(1); }
.solution-card:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.solution-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}
.solution-card:hover .solution-icon { transform: scale(1.1); }
.solution-card h4 {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 12px;
}
.solution-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========== PRODUCTS ========== */
#products {
    background: linear-gradient(180deg, var(--gray-50), white);
}
.product-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.card-img-wrapper {
    overflow: hidden;
    position: relative;
}
.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ethio-yellow-light);
    color: #8a6914;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.product-card .card-body { padding: 24px; }
.product-card h5 {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
    margin: 12px 0 8px;
}
.product-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
}
.product-card .learn-more {
    color: var(--ethio-green);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}
.product-card:hover .learn-more { gap: 12px; }
.image-placeholder {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--gray-500);
}
.image-placeholder i {
    font-size: 2.5rem;
    opacity: 0.4;
}
.image-placeholder span {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.5;
}
.product-image-placeholder { height: 220px; }
.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image { transform: scale(1.08); }

/* ========== WHY CHOOSE US ========== */
.why-us-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.why-us-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}
.why-us-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    border-color: transparent;
    transform: translateX(5px);
}
.why-us-icon {
    width: 52px; height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.why-us-item h5 {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 4px;
}
.why-us-item p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}
.why-us-highlight-card {
    background: linear-gradient(135deg, var(--ethio-green-light), #f0fff4);
    border: 1px solid rgba(26, 122, 46, 0.15);
    border-radius: var(--radius-xl);
    padding: 44px;
    position: relative;
}
.why-us-highlight-icon {
    width: 50px; height: 50px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--ethio-green);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.why-us-highlight-card h3 {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--dark);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}
.why-us-highlight-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ========== MACHINE SHOWCASE ========== */
.machine-showcase-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}
.machine-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.showcase-info { padding: 28px; }
.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}
.showcase-info h4 {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}
.showcase-info p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.showcase-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}
.showcase-features span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ethio-green);
    background: var(--ethio-green-light);
    padding: 4px 12px;
    border-radius: 50px;
}
.showcase-features span i { font-size: 0.7rem; }
.tutorials-cta {
    background: linear-gradient(135deg, var(--ethio-green-light), var(--ethio-yellow-light));
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    max-width: 600px;
    margin: 0 auto;
}
.tutorials-cta-icon {
    width: 64px; height: 64px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--ethio-green);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}
.tutorials-cta h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.tutorials-cta p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.youtube-embed {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}
.youtube-embed:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.youtube-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========== ORDER ========== */
#order {
    background: linear-gradient(180deg, var(--gray-50), #e8f5e9);
}
.order-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.order-sidebar {
    background: linear-gradient(135deg, var(--ethio-green), var(--ethio-green-dark));
    color: white;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.order-sidebar h3 {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 16px;
}
.order-sidebar p {
    opacity: 0.85;
    line-height: 1.8;
    font-size: 0.95rem;
}
.order-sidebar .benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    font-weight: 500;
}
.order-sidebar .benefit i { color: var(--ethio-yellow); }
.order-form-wrapper { padding: 50px 40px; }
.form-control,
.form-select {
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-200);
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--gray-50);
}
.form-control:focus,
.form-select:focus {
    border-color: var(--ethio-green);
    box-shadow: 0 0 0 4px rgba(26, 122, 46, 0.1);
    background: white;
}
.form-label {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--gray-700);
    margin-bottom: 8px;
}

/* ========== CONTACT ========== */
#contact { background: white; }
.contact-info-card {
    background: linear-gradient(135deg, var(--ethio-green), var(--ethio-green-dark));
    color: white;
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: -30px; left: -30px;
    width: 150px; height: 150px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.contact-icon-box {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}
.contact-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 4px;
}
.contact-item span {
    font-weight: 600;
    font-size: 1rem;
}
.contact-form-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    height: 100%;
}
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}
.social-links a {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-links a:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}
.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 24px;
}

/* ========== FOOTER ========== */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 30px;
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--ethio-green), var(--ethio-yellow), var(--ethio-red));
}
.footer-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--ethio-yellow); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 40px;
    padding-top: 24px;
}

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--ethio-green), var(--ethio-green-dark));
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(26, 122, 46, 0.3);
    z-index: 1040;
}
.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 122, 46, 0.4);
}

/* ========== LANGUAGE DROPDOWN ========== */
.language-switch .dropdown-toggle {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    color: var(--gray-700);
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}
.language-switch .dropdown-toggle:hover { border-color: var(--ethio-green); }
.dropdown-menu {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 8px;
}
.dropdown-item {
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.dropdown-item:hover {
    background: var(--ethio-green-light);
    color: var(--ethio-green);
}
.dropdown-item.active-lang {
    background: var(--ethio-green-light);
    color: var(--ethio-green);
}
.translate-loading {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--ethio-green), var(--ethio-yellow), var(--ethio-green));
    background-size: 200% 100%;
    animation: translateLoadingAnim 1s linear infinite;
    z-index: 9999;
    display: none;
}
.translate-loading.active { display: block; }
@keyframes translateLoadingAnim {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========== MODAL ========== */
.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.modal-header {
    background: var(--ethio-green-light);
    border-bottom: 2px solid var(--ethio-green);
    padding: 20px 30px;
}
.modal-body { padding: 30px; }
.modal-body ul {
    list-style: none;
    padding: 0;
}
.modal-body ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray-700);
}
.modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ethio-green);
    font-weight: 700;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .hero-stats { gap: 24px; }
    .hero-stat-divider { display: none; }
    .hero-feature-pills { gap: 10px; }
    .hero-pill { padding: 10px 18px; font-size: 0.82rem; }
    .order-sidebar,
    .order-form-wrapper,
    .contact-info-card,
    .contact-form-card { padding: 30px; }
    .why-us-highlight-card { padding: 30px; }
    .trust-bar-inner { gap: 24px; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 2.2rem; letter-spacing: -1.5px; }
    .section-title { font-size: 1.8rem; }
    .hero-stats { flex-direction: column; gap: 16px; text-align: center; }
    .hero-stat-divider { display: none; }
    .page-section { padding: 60px 0; }
    .hero-feature-pills { gap: 8px; }
    .hero-pill { padding: 8px 14px; font-size: 0.78rem; }
    .trust-bar-inner { gap: 16px; }
    .trust-item { font-size: 0.8rem; }
    .why-us-highlight-card { padding: 24px; }
}

/* ========== BRAND LOGO ========== */
.navbar-brand {
    padding: 0;
    margin: 0;
    line-height: 1;
}

.brand-logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    display: block;
}

/* Slightly smaller on mobile */
@media (max-width: 768px) {
    .brand-logo {
        height: 38px;
    }
}

/* Scrolled navbar effect (if you want logo to shrink a bit) */
.navbar.scrolled .brand-logo {
    height: 42px;
}

@media (max-width: 768px) {
    .navbar.scrolled .brand-logo {
        height: 34px;
    }
}

/* Footer logo */
.footer-brand img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1); /* makes white version for dark footer */
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-brand img:hover {
    opacity: 1;
}

/* Ensure the logo doesn't cause layout shifts */
.navbar .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Remove old brand-icon styling if it conflicts */
.brand-icon {
    display: none; /* Hide the old text version */
}