@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #FF8C00;
    --primary-dark: #E67E00;
    --secondary: #1A202C;
    --secondary-dark: #111827;
    --accent: #FBC02D;
    --bg: #FFFFFF;
    --surface: #F8F9FA;
    --text: #1A1A1A;
    --text-muted: #666666;
    --white: #FFFFFF;
    --black: #000000;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.section {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.2);
}

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

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
}

/* Header */
header {
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: 70px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    transition: var(--transition);
}

header.scrolled .logo {
    color: var(--secondary);
    font-size: 1.5rem;
}

.logo span {
    color: var(--primary);
}

nav ul {
    display: flex;
    gap: 2.5rem;
}

nav ul li a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white);
}

header.scrolled nav ul li a {
    color: var(--text);
}

nav ul li a:hover, 
nav ul li a.active {
    color: var(--primary) !important;
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--white);
}

header.scrolled .lang-switch {
    color: var(--text);
}

.lang-switch span {
    cursor: pointer;
}

.lang-switch span.active {
    color: var(--primary);
}

/* Hero */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Section Styling */
.page-header {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    margin-bottom: 4rem;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Products Grid */
.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition);
}

.category-card:hover .category-info {
    transform: translateY(0);
}

.category-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Map Section */
.export-map {
    background-color: var(--surface);
    text-align: center;
}

.map-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Footer */
footer {
    background-color: #111;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-official-branding {
    grid-column: 1 / -1;
    border-bottom: 1px solid #333;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}

.footer-official-branding img {
    height: 120px;
    object-fit: contain;
}

.footer-official-text h4 {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-official-text p {
    line-height: 1.5;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: #999;
    font-size: 0.95rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #999;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-contact h4 {
    margin-bottom: 1.5rem;
}

.footer-contact p {
    color: #999;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.85rem;
}

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

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
}

/* --- Modernization & Enhancements --- */

:root {
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease-out;
}

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

.export-map {
    background: radial-gradient(circle at center, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.map-container {
    padding: 4rem 0;
    transition: transform 0.5s ease;
}

.map-container:hover {
    transform: scale(1.02);
}

.map-container img {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    opacity: 0.8 !important;
}

.why-us-modern {
    background: linear-gradient(135deg, #1a4731 0%, #0d2117 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-us-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.1;
    border-radius: 50%;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-15px);
    border-color: rgba(255, 255, 255, 0.2);
}

.why-card .icon-box {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Map Pins on Details Page */
.pin-container {
    position: relative;
}

.map-pin {
    position: absolute;
    width: 24px;
    height: 24px;
    background: #e74c3c;
    border: 3px solid white;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg) translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: bounce 2s infinite;
}

.map-pin::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.map-pin-pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(231, 76, 60, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

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

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

/* New Product Grid Styles */
.products-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 50px 0;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-card-image {
    display: block;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-card-image img {
    transform: scale(1.1);
}

.product-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary);
}

.product-card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Detail Page Styles */
.detail-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--surface) 0%, #fff 100%);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.detail-image img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.detail-info h1 {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.detail-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255,140,0,0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.detail-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.detail-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-left: 4px solid var(--primary);
}

.stat-item label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item span {
    font-weight: 600;
    color: var(--text);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--white);
}

.turkey-map-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.turkey-map-container svg {
    width: 100%;
    height: auto;
    fill: #eee;
}

.turkey-map-container path {
    transition: var(--transition);
}

.turkey-map-container path.active {
    fill: var(--primary);
    filter: drop-shadow(0 0 10px rgba(255,140,0,0.4));
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    background: var(--primary);
}

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

.variety-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition);
}

.variety-card:hover {
    background: var(--white);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.variety-card h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.variety-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}
