/* ============================================
   MERA OVASI - Natürel Sızma Zeytinyağı
   Brand Colors from Logo:
   - Background olive/golden: #C5B964
   - Dark green text: #2D3B2D
   ============================================ */

:root {
    --color-primary: #2D3B2D;
    --color-primary-light: #3D4F3D;
    --color-accent: #C5B964;
    --color-accent-light: #D4CA7E;
    --color-accent-dark: #A89B4A;
    --color-bg: #FDFBF5;
    --color-bg-alt: #F5F0E1;
    --color-bg-dark: #2D3B2D;
    --color-text: #2D3B2D;
    --color-text-light: #5A6B5A;
    --color-text-muted: #8A9B8A;
    --color-white: #FFFFFF;
    --color-cream: #FAF7EE;
    --color-olive-light: #E8E2C8;

    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;

    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(45, 59, 45, 0.08);
    --shadow-md: 0 4px 20px rgba(45, 59, 45, 0.12);
    --shadow-lg: 0 8px 40px rgba(45, 59, 45, 0.16);
    --radius: 8px;
    --radius-lg: 16px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

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

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent-dark);
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-header p {
    margin-top: 16px;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
    padding: 12px 28px;
}

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

.btn-large {
    padding: 18px 42px;
    font-size: 1.05rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(253, 251, 245, 0.97);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    z-index: 1001;
}

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

.nav-logo-icon {
    width: 48px;
    height: 32px;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1;
}

.nav-tagline {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.3px;
    position: relative;
}

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

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

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

.nav.scrolled .nav-menu a {
    color: var(--color-text-light);
}

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

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
    border-radius: 2px;
}

.nav.scrolled .nav-toggle span {
    background: var(--color-primary);
}

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(45, 59, 45, 0.92), rgba(45, 59, 45, 0.7)),
        url('https://i.ytimg.com/vi/8DMq93SqCms/maxresdefault.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(197, 185, 100, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(197, 185, 100, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(197, 185, 100, 0.5);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    max-width: 580px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* ============================================
   FEATURES
   ============================================ */

.features {
    padding: 100px 0;
    background: var(--color-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--color-accent-dark);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================
   STORY PREVIEW
   ============================================ */

.story-preview {
    padding: 100px 0;
    background: var(--color-bg-alt);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.story-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(45, 59, 45, 0.85);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
}

.story-text .section-label {
    display: block;
}

.story-text h2 {
    margin-bottom: 24px;
}

.story-text p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.story-text .btn {
    margin-top: 16px;
}

/* ============================================
   PRODUCT PREVIEW
   ============================================ */

.product-preview {
    padding: 100px 0;
    background: var(--color-bg);
}

.product-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-md);
}

.product-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottle-svg {
    width: 200px;
    height: 400px;
    filter: drop-shadow(0 20px 40px rgba(45, 59, 45, 0.15));
}

.product-info .product-tag {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.product-info h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.product-info p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.product-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent-dark);
    flex-shrink: 0;
}

/* ============================================
   BENEFITS
   ============================================ */

.benefits {
    padding: 100px 0;
    background: var(--color-bg-dark);
    color: var(--color-white);
}

.benefits .section-label {
    color: var(--color-accent-light);
}

.benefits .section-header h2 {
    color: var(--color-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-item {
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(197, 185, 100, 0.15);
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: rgba(197, 185, 100, 0.4);
    background: rgba(197, 185, 100, 0.05);
}

.benefit-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 16px;
    opacity: 0.6;
}

.benefit-item h4 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.benefit-item p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   VIDEO PREVIEW
   ============================================ */

.video-preview {
    padding: 100px 0;
    background: var(--color-bg);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    opacity: 0.9;
    transition: var(--transition);
}

.video-card:hover .video-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.8);
    color: var(--color-white);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.video-card h4 {
    padding: 16px 20px 8px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.video-meta {
    padding: 0 20px 16px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ============================================
   CTA
   ============================================ */

.cta {
    padding: 120px 0;
    background:
        linear-gradient(135deg, rgba(45, 59, 45, 0.9), rgba(45, 59, 45, 0.95)),
        url('https://i.ytimg.com/vi/dUIHzYn5c0g/maxresdefault.jpg') center/cover no-repeat;
    text-align: center;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.15rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    background: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
}

.cta .btn-primary:hover {
    background: var(--color-accent-light);
    border-color: var(--color-accent-light);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 80px 0 40px;
    background: #1a261a;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.footer-brand > p:first-of-type {
    color: var(--color-accent);
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-location {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

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

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.footer-bottom {
    padding-top: 32px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */

.page-header {
    padding: 160px 0 80px;
    background: var(--color-bg-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(197, 185, 100, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(197, 185, 100, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-header .section-label {
    color: var(--color-accent-light);
}

.page-header h1 {
    color: var(--color-white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255,255,255,0.65);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   CONTENT SECTIONS (for inner pages)
   ============================================ */

.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background: var(--color-bg-alt);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.content-text h2 {
    margin-bottom: 20px;
}

.content-text h3 {
    margin-bottom: 16px;
    margin-top: 32px;
}

.content-text p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-text ul {
    margin: 16px 0;
}

.content-text ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--color-text-light);
}

.content-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent-dark);
}

/* Full-width video grid for video page */
.video-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.video-page-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.video-page-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.video-page-card .video-embed {
    aspect-ratio: 16/9;
}

.video-page-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-page-card .video-info {
    padding: 20px 24px;
}

.video-page-card .video-info h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.video-page-card .video-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card-image {
    height: 280px;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.product-card-image .bottle-svg {
    width: 120px;
    height: 240px;
}

.product-card-body {
    padding: 24px;
}

.product-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.product-card-body .product-volume {
    font-size: 0.85rem;
    color: var(--color-accent-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.product-card-body p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Timeline */
.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-accent);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-accent-dark);
    border: 3px solid var(--color-bg);
    z-index: 1;
}

.timeline-item h4 {
    margin-bottom: 8px;
}

.timeline-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-accent-dark);
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-item p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 1.5px solid var(--color-olive-light);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent-dark);
    box-shadow: 0 0 0 3px rgba(197, 185, 100, 0.15);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Topic cards for zeytincilik page */
.topic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.topic-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--color-accent);
}

.topic-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.topic-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.topic-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(45, 59, 45, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .nav-menu.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu a {
        font-size: 1.3rem;
        color: rgba(255,255,255,0.85) !important;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--color-accent-light) !important;
    }

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

    .story-grid,
    .content-grid,
    .content-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }

    .product-card-large {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-grid,
    .video-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

    .video-grid,
    .video-page-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    .product-card-large {
        padding: 24px;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 140px 0 60px;
    }
}
