/* ============================================
   DriedApricot.com.tr - Modern Warm Design
   Colors: Forest Green, Burgundy, Warm Beige
   ============================================ */

:root {
    --c-green: #024126;
    --c-green-light: #035c36;
    --c-green-soft: #80a093;
    --c-burgundy: #62011d;
    --c-burgundy-light: #8a0228;
    --c-beige: #f2e8df;
    --c-beige-dark: #e8dbd0;
    --c-beige-light: #f8f3ee;
    --c-cream: #faf7f4;
    --c-brown: #776c62;
    --c-brown-dark: #5a5049;
    --c-brown-light: #998e84;
    --c-white: #ffffff;
    --c-text: #3d3530;
    --c-text-light: #776c62;
    --c-text-muted: #a89e94;
    --c-border: rgba(2,65,38,0.08);
    --c-border-hover: rgba(2,65,38,0.15);
    --c-shadow: rgba(61,53,48,0.06);
    --c-shadow-lg: rgba(61,53,48,0.12);
    --font: 'Josefin Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Tenor Sans', Georgia, serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --duration: 0.35s;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    color: var(--c-text);
    background: var(--c-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font);
    line-height: 1.2;
    color: var(--c-green);
    font-weight: 600;
}

a { text-decoration: none; color: inherit; transition: color var(--duration) var(--ease); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--c-green);
    font-size: 13px;
    padding: 0;
    height: 40px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 200;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.top-bar-left {
    display: flex;
    gap: 24px;
    align-items: center;
}
.top-bar-left a, .top-bar-left span {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.02em;
}
.top-bar-left a:hover { color: #fff; }
.top-bar-left i { font-size: 11px; color: var(--c-green-soft); }
.top-bar-right { display: flex; align-items: center; }

/* Language Flags */
.lang-flags { display: flex; align-items: center; gap: 8px; }
.lang-flag {
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    text-decoration: none;
    border-radius: 4px;
    padding: 3px;
    background: rgba(255,255,255,0.2);
}
.lang-flag img {
    display: block;
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}
.lang-flag:hover { background: rgba(255,255,255,0.35); transform: scale(1.1); }
.lang-flag.active { background: rgba(255,255,255,0.4); }

/* Language Switcher (legacy) */
.lang-switcher { position: relative; display: none; }
.lang-current {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    padding: 6px 12px;
    cursor: pointer;
    font-size: 12px;
    font-family: var(--font);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--duration) var(--ease);
    border-radius: 6px;
}
.lang-current:hover { color: #fff; background: rgba(255,255,255,0.1); }
.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--c-white);
    border-radius: 12px;
    box-shadow: 0 16px 48px var(--c-shadow-lg), 0 0 0 1px var(--c-border);
    min-width: 165px;
    z-index: 1000;
    overflow: visible;
    padding: 4px;
    padding-top: 8px;
}
.lang-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    height: 10px;
}
.lang-switcher:hover .lang-dropdown { display: block; }
.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    color: var(--c-brown);
    font-size: 13px;
    font-family: var(--font);
    border-radius: 8px;
    transition: all 0.15s ease;
}
.lang-dropdown a:hover { background: var(--c-beige-light); color: var(--c-green); }
.lang-dropdown a.active { background: rgba(2,65,38,0.06); color: var(--c-green); font-weight: 600; }
[dir="rtl"] .lang-dropdown { right: auto; left: 0; }

/* ===== HEADER ===== */
.header {
    background: rgba(250,247,244,0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--c-border);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 72px;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 48px; width: auto; }
.logo-text {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    color: var(--c-green);
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.logo-text span {
    display: block;
    font-size: 10px;
    font-weight: 400;
    font-family: var(--font-body);
    color: var(--c-brown-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 1px;
}

.nav { display: flex; gap: 2px; align-items: center; }
.nav a {
    padding: 8px 16px;
    font-size: 14px;
    font-family: var(--font);
    font-weight: 500;
    color: var(--c-brown);
    border-radius: 8px;
    transition: all 0.2s ease;
}
.nav a:hover { color: var(--c-green); background: rgba(2,65,38,0.04); }
.nav a.active { color: var(--c-green); background: rgba(2,65,38,0.06); font-weight: 600; }
.nav-cta {
    background: var(--c-burgundy) !important;
    color: #fff !important;
    padding: 9px 20px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin-left: 12px;
    transition: all 0.25s ease !important;
}
.nav-cta:hover { background: var(--c-burgundy-light) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(98,1,29,0.2); }

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}
.nav-dropdown > a .fa-chevron-down {
    font-size: 0.6em;
    margin-left: 4px;
    transition: transform 0.2s ease;
}
.nav-dropdown:hover > a .fa-chevron-down { transform: rotate(180deg); }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-white);
    min-width: 240px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 0 0 1px var(--c-border);
    border-radius: 12px;
    padding: 8px;
    z-index: 1000;
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: var(--c-brown) !important;
    font-size: 13.5px;
    font-family: var(--font);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.15s ease;
    white-space: nowrap;
}
.nav-dropdown-menu a:hover {
    background: var(--c-beige-light) !important;
    color: var(--c-green) !important;
}
.nav-dropdown-menu a i {
    font-size: 12px;
    color: var(--c-burgundy);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--c-green);
    cursor: pointer;
    padding: 6px;
}

@media (max-width: 968px) {
    .menu-toggle { display: block; }
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--c-cream);
        flex-direction: column;
        padding: 8px;
        border-bottom: 1px solid var(--c-border);
        box-shadow: 0 12px 32px var(--c-shadow);
    }
    .nav.open { display: flex; }
    .nav a { padding: 12px 16px; width: 100%; border-radius: 8px; }
    .nav-cta { margin: 4px 0 0 0 !important; text-align: center; }
    .top-bar-left { display: none; }
    .nav-dropdown { display: block !important; }
    .nav-dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        background: var(--c-beige-light) !important;
        border-radius: 8px !important;
        padding: 4px 0 4px 8px !important;
        margin-top: 4px;
        display: none !important;
        border: none !important;
    }
    .nav-dropdown:hover .nav-dropdown-menu { display: block !important; }
    .nav-dropdown-menu a { padding: 8px 16px !important; font-size: 13px !important; }
    .nav-dropdown-menu::before { display: none; }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    min-height: 88vh;
    overflow: hidden;
}
.slider-slides { position: relative; min-height: 88vh; }
.slider-slide {
    position: absolute;
    inset: 0;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
}
.slider-slide.active { opacity: 1; z-index: 1; position: relative; min-height: 88vh; }
.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.50) 100%);
    z-index: 1;
}
.slider-slide .container { position: relative; z-index: 2; }
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(2,65,38,0.15);
    color: var(--c-green);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-btn:hover { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(2,65,38,0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.slider-dot.active, .slider-dot:hover { background: var(--c-green); border-color: var(--c-green); }

@media (max-width: 768px) {
    .hero-slider, .slider-slides, .slider-slide, .slider-slide.active { min-height: 75vh; }
    .slider-btn { width: 36px; height: 36px; font-size: 14px; }
    .slider-prev { left: 12px; }
    .slider-next { right: 12px; }
    .slider-dots { bottom: 20px; }
}

/* Legacy .hero styles for slider content */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--c-green) 0%, #013520 60%, #01291a 100%);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 70% 50%, rgba(128,160,147,0.12), transparent),
        radial-gradient(ellipse 50% 60% at 20% 80%, rgba(98,1,29,0.06), transparent);
}
.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242,232,223,0.04), transparent 60%);
    border-radius: 50%;
}

.hero-content {
    max-width: 640px;
    position: relative;
    z-index: 2;
    padding: 80px 0;
}
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(2,65,38,0.08);
    border: 1px solid rgba(2,65,38,0.15);
    border-radius: 100px;
    font-size: 12px;
    font-family: var(--font);
    font-weight: 500;
    color: var(--c-green);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 28px;
}
.hero h1, .hero-slider .hero-content h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--c-green);
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.hero h1 em, .hero h1 strong,
.hero-slider .hero-content h1 strong {
    font-style: normal;
    color: var(--c-burgundy);
    position: relative;
}
.hero p, .hero-slider .hero-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--c-brown-dark);
    margin-bottom: 36px;
    max-width: 480px;
    font-family: var(--font-body);
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease);
    letter-spacing: 0.01em;
}
.btn i { font-size: 13px; }
.btn-primary { background: var(--c-burgundy); color: #fff; }
.btn-primary:hover {
    background: var(--c-burgundy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(98,1,29,0.25);
}
.btn-outline {
    background: rgba(2,65,38,0.06);
    color: var(--c-green);
    border: 1px solid rgba(2,65,38,0.25);
}
.btn-outline:hover {
    background: rgba(2,65,38,0.12);
    color: var(--c-green);
    border-color: rgba(2,65,38,0.4);
}
.btn-green { background: var(--c-green); color: #fff; }
.btn-green:hover {
    background: var(--c-green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(2,65,38,0.2);
}

@media (max-width: 768px) {
    .hero { min-height: 75vh; }
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 15px; }
    .hero-content { padding: 60px 0; }
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-beige { background: var(--c-beige); }
.section-cream { background: var(--c-cream); }
.section-white { background: var(--c-white); }
.section-green { background: var(--c-green); color: #fff; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
    display: inline-block;
    font-size: 11px;
    font-family: var(--font);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-burgundy);
    margin-bottom: 12px;
}
.section-green .section-label { color: var(--c-green-soft); }
.section-header h2 { font-size: 38px; margin-bottom: 16px; letter-spacing: -0.01em; }
.section-green .section-header h2 { color: #fff; }
.section-header p {
    font-size: 16px;
    color: var(--c-brown);
    max-width: 520px;
    margin: 0 auto;
    font-family: var(--font-body);
    line-height: 1.7;
}
.section-green .section-header p { color: rgba(255,255,255,0.55); }
.section-header-line {
    width: 40px;
    height: 3px;
    background: var(--c-burgundy);
    margin: 20px auto 0;
    border-radius: 2px;
}
.section-green .section-header-line { background: var(--c-green-soft); }

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.stat-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--c-white);
    border-radius: 16px;
    border: 1px solid var(--c-border);
    transition: all 0.3s var(--ease);
}
.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--c-shadow);
}
.stat-number {
    font-family: var(--font);
    font-size: 42px;
    font-weight: 700;
    color: var(--c-green);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 13px;
    color: var(--c-brown-light);
    font-family: var(--font);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 768px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-number { font-size: 32px; }
    .section { padding: 72px 0; }
    .section-header h2 { font-size: 28px; }
}
@media (max-width: 480px) { .stats-row { grid-template-columns: 1fr; } }

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.product-card {
    background: var(--c-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--c-border);
    transition: all 0.35s var(--ease);
}
.product-card:hover {
    border-color: var(--c-border-hover);
    box-shadow: 0 16px 40px var(--c-shadow);
    transform: translateY(-4px);
}
.product-img {
    height: 220px;
    background: var(--c-beige-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-img img { max-width: 100%; max-height: 100%; object-fit: contain; margin: auto; }
.product-img .placeholder-icon { font-size: 48px; color: var(--c-green-soft); }
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--c-green);
    color: #fff;
    font-size: 11px;
    font-family: var(--font);
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.product-info { padding: 24px; }
.product-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--c-green);
}
.product-info p {
    font-size: 14px;
    color: var(--c-brown);
    line-height: 1.65;
    font-family: var(--font-body);
    margin-bottom: 16px;
}
.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-family: var(--font);
    font-weight: 600;
    color: var(--c-burgundy);
    transition: gap 0.2s ease;
}
.product-link:hover { gap: 10px; }
.product-link i { font-size: 11px; }

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

/* Product Detail Sections */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--c-border);
}
.product-detail:last-child { border-bottom: none; }
.product-detail.reverse { direction: rtl; }
.product-detail.reverse > * { direction: ltr; }
.product-detail-img {
    border-radius: 20px;
    overflow: hidden;
    background: var(--c-beige);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-detail-img .placeholder-icon { font-size: 64px; color: var(--c-green-soft); }
.product-detail-img img { max-width: 100%; max-height: 100%; object-fit: contain; margin: auto; }
.product-detail-text h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--c-green);
}
.product-detail-text p {
    font-size: 16px;
    color: var(--c-brown);
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: var(--font-body);
}
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.product-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--c-beige-light);
    border-radius: 100px;
    font-size: 13px;
    font-family: var(--font);
    font-weight: 500;
    color: var(--c-green);
    border: 1px solid var(--c-border);
}
.product-feature i { font-size: 11px; color: var(--c-burgundy); }

@media (max-width: 768px) {
    .product-detail { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
    .product-detail.reverse { direction: ltr; }
    .product-detail-text h3 { font-size: 24px; }
}

/* Features / Values */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    padding: 36px 28px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.section-cream .feature-card,
.section-beige .feature-card,
.section-white .feature-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--c-shadow);
}
.section-green .feature-card:hover {
    background: rgba(255,255,255,0.1);
    box-shadow: none;
}
.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(2,65,38,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--c-green);
}
.section-green .feature-icon {
    background: rgba(255,255,255,0.08);
    color: var(--c-green-soft);
}
.feature-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--c-green);
}
.section-green .feature-card h3 { color: #fff; }
.feature-card p {
    font-size: 14px;
    color: var(--c-brown);
    line-height: 1.65;
    font-family: var(--font-body);
}
.section-green .feature-card p { color: rgba(255,255,255,0.5); }

@media (max-width: 968px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .features-grid { grid-template-columns: 1fr; } }

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-text h2 { font-size: 34px; margin-bottom: 20px; }
.about-text p {
    font-size: 16px;
    color: var(--c-brown);
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: var(--font-body);
}
.about-image { border-radius: 20px; overflow: hidden; }
.about-image img { width: 100%; height: auto; max-height: 440px; object-fit: contain; }
.about-image .placeholder {
    height: 440px;
    background: var(--c-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--c-green-soft);
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--c-beige-light);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    font-size: 12px;
    font-family: var(--font);
    font-weight: 600;
    color: var(--c-green);
    transition: all 0.2s ease;
}
.cert-badge:hover { border-color: var(--c-green); background: rgba(2,65,38,0.04); }
.cert-badge i { font-size: 12px; color: var(--c-burgundy); }

@media (max-width: 768px) {
    .about-content { grid-template-columns: 1fr; gap: 32px; }
    .about-text h2 { font-size: 28px; }
    .about-image .placeholder { height: 280px; }
}

/* Export */
.export-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.export-text h2 { font-size: 34px; margin-bottom: 20px; }
.export-text p {
    font-size: 16px;
    color: var(--c-brown);
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: var(--font-body);
}
.export-map {
    background: var(--c-beige);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--c-border);
}
.export-map i { font-size: 72px; color: var(--c-green-soft); }
.export-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.export-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: var(--c-white);
    border-radius: 100px;
    font-size: 13px;
    font-family: var(--font);
    font-weight: 500;
    color: var(--c-green);
    border: 1px solid var(--c-border);
    transition: all 0.2s ease;
}
.export-badge:hover { border-color: var(--c-green); background: rgba(2,65,38,0.03); }
.export-badge i { font-size: 11px; color: var(--c-burgundy); }

.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.region-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--c-white);
    border-radius: 16px;
    border: 1px solid var(--c-border);
    transition: all 0.3s var(--ease);
}
.region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--c-shadow);
    border-color: var(--c-border-hover);
}
.region-icon {
    font-size: 28px;
    margin-bottom: 12px;
}
.region-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--c-green);
}
.region-card p {
    font-size: 13px;
    color: var(--c-brown-light);
    font-family: var(--font-body);
}

@media (max-width: 768px) {
    .export-content { grid-template-columns: 1fr; gap: 32px; }
    .regions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) { .regions-grid { grid-template-columns: 1fr; } }

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-card {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.service-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--c-green-soft);
}
.service-card h3 { font-size: 15px; color: #fff; margin-bottom: 6px; }
.service-card p { font-size: 13px; color: rgba(255,255,255,0.4); font-family: var(--font-body); }

@media (max-width: 968px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 8px; }
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 14px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    background: var(--c-white);
}
.contact-info-card:hover { border-color: var(--c-border); box-shadow: 0 4px 16px var(--c-shadow); }
.contact-info-card i {
    width: 42px;
    height: 42px;
    background: var(--c-beige);
    color: var(--c-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.contact-info-card h4 {
    font-family: var(--font);
    font-weight: 600;
    font-size: 11px;
    color: var(--c-brown-light);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.contact-info-card p {
    font-size: 15px;
    color: var(--c-text);
    font-weight: 500;
    font-family: var(--font);
}

.contact-map {
    margin-top: 20px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--c-border);
    height: 220px;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

.contact-form {
    background: var(--c-white);
    padding: 36px;
    border-radius: 20px;
    border: 1px solid var(--c-border);
}
.contact-form h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--c-green);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 12px;
    font-family: var(--font);
    font-weight: 600;
    color: var(--c-brown);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--c-border);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    background: var(--c-cream);
    color: var(--c-text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--c-green);
    box-shadow: 0 0 0 3px rgba(2,65,38,0.08);
    background: var(--c-white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--c-text-muted); }
.form-group textarea { height: 120px; resize: vertical; }

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--c-burgundy);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--font);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-submit:hover { background: var(--c-burgundy-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(98,1,29,0.2); }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--c-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    border: 1px solid var(--c-border);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 12px 32px var(--c-shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item .placeholder-icon { font-size: 36px; color: var(--c-green-soft); }

@media (max-width: 576px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* Certificates */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cert-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--c-white);
    border-radius: 16px;
    border: 1px solid var(--c-border);
    transition: all 0.3s var(--ease);
}
.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--c-shadow);
    border-color: var(--c-border-hover);
}
.cert-icon {
    width: 56px;
    height: 56px;
    background: var(--c-beige);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 22px;
    color: var(--c-green);
}
.cert-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--c-green);
}
.cert-card p {
    font-size: 14px;
    color: var(--c-brown);
    line-height: 1.6;
    font-family: var(--font-body);
}

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

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--c-green) 0%, #013520 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(128,160,147,0.08), transparent);
}
.cta-banner h2 {
    font-size: 34px;
    margin-bottom: 14px;
    color: #fff;
    position: relative;
}
.cta-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 32px;
    position: relative;
    font-family: var(--font-body);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.btn-white {
    background: var(--c-beige);
    color: var(--c-green);
    padding: 13px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s var(--ease);
    position: relative;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    background: #fff;
}
.btn-white i { font-size: 13px; }

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--c-green) 0%, #013520 100%);
    background-size: cover;
    background-position: center;
    padding: 130px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2,65,38,0.82) 0%, rgba(1,53,32,0.75) 50%, rgba(1,41,26,0.85) 100%);
}
.page-header h1 {
    font-size: 42px;
    color: #fff;
    position: relative;
    margin-bottom: 12px;
}
.page-header p {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    position: relative;
    max-width: 460px;
    margin: 0 auto;
    font-family: var(--font-body);
}
.breadcrumb {
    margin-top: 24px;
    font-size: 13px;
    font-family: var(--font);
    color: rgba(255,255,255,0.3);
    position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--c-beige); }

@media (max-width: 768px) {
    .page-header { padding: 100px 0 44px; }
    .page-header h1 { font-size: 30px; }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--c-green);
    color: rgba(255,255,255,0.6);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1.3fr;
    gap: 40px;
}
.footer-logo {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.footer-logo-img { height: 44px; width: auto; filter: brightness(0) invert(1); }
.footer-logo span {
    display: block;
    font-size: 10px;
    font-weight: 400;
    font-family: var(--font-body);
    color: var(--c-green-soft);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.footer h3 {
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    font-family: var(--font);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-body);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    font-family: var(--font);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); transform: translateX(3px); }
.footer-links a i { font-size: 8px; opacity: 0.4; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.footer-contact-item i {
    color: var(--c-green-soft);
    margin-top: 3px;
    width: 14px;
    font-size: 13px;
}
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.4); font-family: var(--font-body); }
.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    transition: all 0.2s ease;
}
.footer-social a:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    margin-top: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-family: var(--font);
    color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 576px) { .footer-grid { grid-template-columns: 1fr; } }

/* RTL */
[dir="rtl"] body { direction: rtl; text-align: right; }
[dir="rtl"] .nav { flex-direction: row-reverse; }
[dir="rtl"] .footer-links a:hover { transform: translateX(-3px); }
[dir="rtl"] .nav-cta { margin-left: 0 !important; margin-right: 12px; }
[dir="rtl"] .product-detail.reverse { direction: ltr; }
[dir="rtl"] .product-detail.reverse > * { direction: rtl; }

/* Alert */
.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 14px;
    font-family: var(--font);
    font-weight: 500;
}
.alert-success {
    background: rgba(2,65,38,0.06);
    color: var(--c-green);
    border: 1px solid rgba(2,65,38,0.12);
}
.alert-error {
    background: rgba(98,1,29,0.06);
    color: var(--c-burgundy);
    border: 1px solid rgba(98,1,29,0.12);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--c-beige-light); }
::-webkit-scrollbar-thumb { background: var(--c-beige-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-brown-light); }

/* Selection */
::selection { background: rgba(2,65,38,0.12); color: var(--c-green); }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s var(--ease) forwards; }
