/* Karacabey Süthanesi - Natural Green Theme */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary:        #2D6A4F;
    --primary-light:  #40896A;
    --primary-dark:   #1A4A35;
    --primary-faint:  #EBF5EF;
    --accent:         #52B788;
    --accent-light:   #80CCA4;
    --gold:           #D4A84B;
    --gold-light:     #E8C07A;
    --gold-dark:      #B08830;
    --dark:           #0D1F16;
    --bg-white:       #FFFFFF;
    --bg-cream:       #F5FAF7;
    --bg-warm:        #EBF5EF;
    --bg-warm-dark:   #D8EDDF;
    --text-dark:      #0D1F16;
    --text-medium:    #2A4035;
    --text-light:     #5E7D6E;
    --border-light:   #C8E2D2;
    --border-warm:    #B0D4C0;
    --shadow-sm:  0 2px 12px rgba(13,31,22,.06);
    --shadow-md:  0 6px 24px rgba(13,31,22,.09);
    --shadow-lg:  0 12px 48px rgba(13,31,22,.12);
    --shadow-xl:  0 20px 60px rgba(13,31,22,.15);
    --transition: all 0.3s cubic-bezier(.4,0,.2,1);
    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  20px;
    --radius-xl:  28px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── HEADER ─── */
.header {
    background-color: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 1px 16px rgba(13,31,22,.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    height: 72px;
    max-width: 1300px;
    margin: 0 auto;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(145deg, var(--primary-light), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 14px rgba(45,106,79,.30);
    flex-shrink: 0;
}

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

.logo-text {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -.2px;
    line-height: 1.15;
}

.logo-text span {
    display: block;
    font-size: 11px;
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--primary-light);
    text-transform: uppercase;
    margin-top: 1px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-medium);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .01em;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-faint);
}

.nav-link.active {
    color: var(--primary);
    background: var(--primary-faint);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

/* Header right */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(45,106,79,.25);
    flex-shrink: 0;
    letter-spacing: .02em;
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(45,106,79,.35);
    color: white;
}

.whatsapp-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    background: transparent;
    transition: var(--transition);
}

.mobile-menu-toggle:hover { background: var(--bg-warm); }

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 8px 16px 16px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    border-top: 2px solid var(--primary);
}

.mobile-menu.active { display: block; }

.mobile-menu a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-medium);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    margin-bottom: 2px;
}

.mobile-menu a:hover {
    color: var(--primary);
    background: var(--primary-faint);
    padding-left: 20px;
}

/* ─── HERO SECTION ─── */
.hero {
    background: linear-gradient(160deg, #FFFFFF 0%, #F0F9F3 40%, #E4F4EA 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 640px;
    display: flex;
    align-items: center;
}

/* Subtle organic shapes */
.hero::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -120px;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(82,183,136,.10) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,106,79,.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 32px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-faint);
    border: 1px solid var(--border-light);
    color: var(--primary);
    padding: 6px 14px 6px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-badge::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(82,183,136,.25);
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -.5px;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--primary);
}

.hero-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 460px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.hero-stat-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
}

.hero-stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-top: 2px;
}

/* Hero visual panel */
.hero-image {
    position: relative;
    z-index: 2;
}

.hero-photo-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: 0 28px 72px rgba(13,31,22,.14), 0 0 0 1.5px var(--border-light);
}

.hero-photo-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.hero-photo-wrapper:hover img {
    transform: scale(1.03);
}

.hero-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(13,31,22,.88) 0%, rgba(13,31,22,.3) 65%, transparent 100%);
}

.hero-featured-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-featured-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(255,255,255,.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.25);
}

.hero-featured-icon svg { width: 22px; height: 22px; color: white; }

.hero-featured-text { color: white; }
.hero-featured-text strong { display: block; font-size: 13.5px; font-weight: 600; }
.hero-featured-text span { font-size: 12px; color: rgba(255,255,255,.65); }

/* ─── BUTTONS ─── */
.btn {
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    letter-spacing: .02em;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 10px rgba(45,106,79,.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(45,106,79,.32);
    color: white;
}

.btn-gold {
    background: var(--gold);
    color: white;
    box-shadow: 0 2px 10px rgba(212,168,75,.30);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(212,168,75,.40);
    color: white;
}

.btn-outline {
    background: white;
    color: var(--primary);
    border: 1.5px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary-faint);
    color: var(--primary-dark);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-sm);
}

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

/* ─── SECTION BASE ─── */
.section { padding: 88px 0; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    background: var(--primary-faint);
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid var(--border-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    letter-spacing: -.3px;
    line-height: 1.25;
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─── FEATURES ─── */
.features { background: var(--bg-cream); }

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

.feature-card {
    background: var(--bg-white);
    padding: 32px 26px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

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

.feature-card:hover::after { opacity: 1; }

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-faint);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid var(--border-light);
}

.feature-icon svg { width: 24px; height: 24px; color: var(--primary); }

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

/* ─── PRODUCTS ─── */
.products-section { background: white; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.product-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.product-image-icon {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    position: relative;
    z-index: 1;
}

.product-image-icon svg { width: 36px; height: 36px; }

.product-image-label {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(8px);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.product-image.img-mihalic {
    background: linear-gradient(145deg, #C9963E 0%, #9A6A20 50%, #7A5010 100%);
}

.product-image.img-kelle {
    background: linear-gradient(145deg, #D4A96A 0%, #B8843A 50%, #8B5E20 100%);
}

.product-image.img-beyaz {
    background: linear-gradient(145deg, #E8E0D0 0%, #D4C8B0 50%, #C0B090 100%);
}

.product-image.img-tereyag {
    background: linear-gradient(145deg, #E8C840 0%, #C8A020 50%, #A07810 100%);
}

.product-image.img-lor {
    background: linear-gradient(145deg, #F0E8D8 0%, #DDD0B8 50%, #C8B898 100%);
}

.product-image.img-kasar {
    background: linear-gradient(145deg, #B88030 0%, #906020 50%, #704810 100%);
}

.product-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: .04em;
    text-transform: uppercase;
    z-index: 2;
}

.product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.product-content { padding: 22px 24px 24px; }

.product-card h3 {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.6;
}

.product-actions { display: flex; gap: 10px; }

.btn-sm {
    padding: 9px 18px;
    font-size: 13.5px;
    border-radius: 50px;
}

.btn-outline-sm {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--border-warm);
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 600;
    transition: var(--transition);
    font-size: 13.5px;
    padding: 9px 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.btn-whatsapp-sm {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 600;
    transition: var(--transition);
    font-size: 13.5px;
    padding: 9px 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 10px rgba(34,197,94,.25);
}

.btn-whatsapp-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(34,197,94,.35);
}

/* ─── ABOUT SECTION ─── */
.about-section { background: var(--bg-cream); }

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

.about-text h2 {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-text p {
    font-size: 15.5px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-image {
    border-radius: var(--radius-xl);
    min-height: 440px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(13,31,22,.15);
}

.about-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.about-content:hover .about-image img {
    transform: scale(1.04);
}

.about-image-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 32px;
    background: linear-gradient(to top, rgba(13,31,22,.92) 0%, rgba(13,31,22,.5) 55%, transparent 100%);
    display: flex;
    gap: 28px;
    z-index: 1;
}

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

.about-stat-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.about-stat-label {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-top: 2px;
}

/* ─── MIHALIÇ CTA ─── */
.mihalic-special {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mihalic-special::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: rgba(82,183,136,.12);
    pointer-events: none;
}

.mihalic-special::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    pointer-events: none;
}

.mihalic-special h2 {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.mihalic-special p {
    font-size: 17px;
    max-width: 620px;
    margin: 0 auto 32px;
    opacity: .85;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.mihalic-special .btn-outline-white {
    background: rgba(255,255,255,.12);
    color: white;
    border: 1.5px solid rgba(255,255,255,.35);
    border-radius: var(--radius-sm);
    padding: 12px 26px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: .02em;
    backdrop-filter: blur(4px);
}

.mihalic-special .btn-outline-white:hover {
    background: rgba(255,255,255,.22);
    border-color: rgba(255,255,255,.6);
}

.mihalic-special-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.mihalic-special .btn-gold {
    background: white;
    color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.mihalic-special .btn-gold:hover {
    background: var(--bg-cream);
    color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,.20);
}

/* ─── GALLERY ─── */
.gallery-section { background: var(--bg-warm); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:first-child {
    grid-row: span 2;
    border-radius: var(--radius-lg);
}

.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

.gallery-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gallery-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.78) saturate(1.1);
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-bg img {
    transform: scale(1.07);
}

.gallery-item-1 .gallery-bg { background: linear-gradient(145deg, #2D6A4F 0%, #1A4035 100%); }
.gallery-item-2 .gallery-bg { background: linear-gradient(145deg, #52B788 0%, #2D6A4F 100%); }
.gallery-item-3 .gallery-bg { background: linear-gradient(145deg, #D4A84B 0%, #A07830 100%); }
.gallery-item-4 .gallery-bg { background: linear-gradient(145deg, #40896A 0%, #1A4A35 100%); }
.gallery-item-5 .gallery-bg { background: linear-gradient(145deg, #B08830 0%, #7A5A10 100%); }
.gallery-item-6 .gallery-bg { background: linear-gradient(145deg, #1A4A35 0%, #0D1F16 100%); }

.gallery-pattern {
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.5) 0, rgba(255,255,255,.5) 1px, transparent 0, transparent 50%);
    background-size: 20px 20px;
}

.gallery-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
}

.gallery-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    backdrop-filter: blur(8px);
}

.gallery-icon svg { width: 22px; height: 22px; color: white; }

.gallery-label {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.gallery-sub {
    font-size: 12px;
    color: rgba(255,255,255,.60);
    margin-top: 3px;
}

/* ─── WHATSAPP STEPS ─── */
.whatsapp-steps {
    background: var(--bg-cream);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(16.67% + 24px);
    right: calc(16.67% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--border-warm), var(--border-warm));
    background-image: repeating-linear-gradient(90deg, var(--border-warm) 0, var(--border-warm) 8px, transparent 8px, transparent 16px);
}

.step-item {
    text-align: center;
    padding: 0 28px;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 6px 18px rgba(45,106,79,.28);
    position: relative;
    z-index: 1;
}

.step-item h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-item p {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.65;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--dark);
    border-top: 3px solid var(--primary);
    padding: 70px 0 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

.footer-section h4 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 20px;
}

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

.footer-section ul li a {
    color: rgba(255,252,245,.65);
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-section p {
    color: rgba(255,252,245,.55);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 14px;
    display: block;
}

.footer-logo-text span {
    display: block;
    font-size: 11px;
    font-family: var(--font-sans);
    letter-spacing: .12em;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 3px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,252,245,.65);
    font-size: 14px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-contact-item:hover { color: var(--accent-light); }

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.footer-bottom {
    max-width: 1260px;
    margin: 0 auto;
    padding: 24px 24px 0;
    border-top: 1px solid rgba(255,252,245,.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255,252,245,.35);
    font-size: 13px;
}

/* ─── PAGE HERO BANNER (all inner pages) ─── */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 68px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 110%, rgba(82,183,136,.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    color: rgba(255,255,255,.9);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(4px);
}

.page-hero h1 {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 700;
    color: white;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    letter-spacing: -.3px;
}

.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,.70);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ─── PRODUCTS PAGE ─── */
.products-page { padding: 60px 0 96px; }
.products-page-header { text-align: center; margin-bottom: 56px; }
.products-page-header h1 { font-family: var(--font-serif); font-size: 42px; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; }
.products-page-header p { font-size: 17px; color: var(--text-light); max-width: 580px; margin: 0 auto; }

.category-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 44px; flex-wrap: wrap; }

.category-tab {
    padding: 10px 22px;
    border-radius: 50px;
    background: var(--bg-cream);
    color: var(--text-medium);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: 1.5px solid var(--border-light);
}

.category-tab:hover, .category-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(45,106,79,.20);
}

/* ─── MIHALIÇ PAGE ─── */
.mihalic-page { padding: 60px 0 96px; }

.mihalic-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 72px 0;
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    overflow: hidden;
}

.mihalic-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(82,183,136,.18) 0%, transparent 60%);
    pointer-events: none;
}

.mihalic-hero h1 {
    font-family: var(--font-serif);
    font-size: 46px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.mihalic-hero p {
    font-size: 17px;
    color: rgba(255,255,255,.72);
    max-width: 660px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.75;
}

.mihalic-content { max-width: 800px; margin: 0 auto; }
.mihalic-content h2 { font-family: var(--font-serif); font-size: 30px; font-weight: 700; color: var(--text-dark); margin: 48px 0 20px; }
.mihalic-content h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--text-dark); margin: 32px 0 14px; }
.mihalic-content p { font-size: 15.5px; color: var(--text-medium); line-height: 1.85; margin-bottom: 16px; }
.mihalic-content ul { margin: 16px 0; }
.mihalic-content ul li { position: relative; padding-left: 22px; margin-bottom: 12px; color: var(--text-medium); line-height: 1.75; font-size: 15.5px; }
.mihalic-content ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }

/* ─── ABOUT PAGE ─── */
.about-page { padding: 60px 0 96px; }
.about-page-header { text-align: center; margin-bottom: 56px; }
.about-page-header h1 { font-family: var(--font-serif); font-size: 46px; font-weight: 700; color: var(--text-dark); margin-bottom: 18px; }
.about-page-content { max-width: 820px; margin: 0 auto; }
.about-page-content h2 { font-family: var(--font-serif); font-size: 30px; font-weight: 700; color: var(--text-dark); margin: 48px 0 20px; }
.about-page-content p { font-size: 15.5px; color: var(--text-medium); line-height: 1.85; margin-bottom: 16px; }

/* ─── CONTACT PAGE ─── */
.contact-page { padding: 60px 0 96px; }
.contact-page-header { text-align: center; margin-bottom: 56px; }
.contact-page-header h1 { font-family: var(--font-serif); font-size: 46px; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; }

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

.contact-card {
    background: var(--bg-cream);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }

.contact-card-icon {
    width: 68px; height: 68px;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    color: white;
    box-shadow: 0 6px 20px rgba(139,26,26,.28);
}

.contact-card-icon svg { width: 30px; height: 30px; }

.contact-card h3 { font-family: var(--font-serif); font-size: 21px; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.contact-card p { font-size: 15px; color: var(--text-light); margin-bottom: 18px; }
.contact-card .phone-number { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: var(--primary); }

.working-hours { text-align: center; margin-top: 56px; padding: 44px; background: var(--bg-cream); border-radius: var(--radius-lg); border: 1px solid var(--border-light); }
.working-hours h3 { font-family: var(--font-serif); font-size: 24px; font-weight: 600; color: var(--text-dark); margin-bottom: 18px; }
.working-hours p { font-size: 15px; color: var(--text-light); margin-bottom: 8px; }

/* ─── BLOG PAGE ─── */
.blog-page { padding: 60px 0 96px; }
.blog-page-header { text-align: center; margin-bottom: 56px; }
.blog-page-header h1 { font-family: var(--font-serif); font-size: 46px; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 28px; }

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }

.blog-image {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-image-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,.92);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    position: relative; z-index: 1;
}

.blog-image-icon svg { width: 28px; height: 28px; color: var(--primary); }

.blog-img-1 { background: linear-gradient(145deg, #C9963E, #7A5010); }
.blog-img-2 { background: linear-gradient(145deg, #8B4A2A, #4A2010); }
.blog-img-3 { background: linear-gradient(145deg, #6A8040, #304010); }
.blog-img-4 { background: linear-gradient(145deg, #5A7090, #203050); }
.blog-img-5 { background: linear-gradient(145deg, #9A6040, #4A2810); }
.blog-img-6 { background: linear-gradient(145deg, #7A5040, #382010); }
.blog-img-7 { background: linear-gradient(145deg, #C8A030, #705010); }
.blog-img-8 { background: linear-gradient(145deg, #6A9060, #283C20); }
.blog-img-9 { background: linear-gradient(145deg, #8B3A1A, #3A1008); }
.blog-img-10 { background: linear-gradient(145deg, #B07040, #4A2810); }

.blog-content { padding: 22px 24px 26px; }

.blog-tag {
    display: inline-block;
    background: rgba(139,26,26,.08);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.blog-content h3 { font-family: var(--font-serif); font-size: 19px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }

.blog-content p { font-size: 14px; color: var(--text-light); margin-bottom: 14px; line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.blog-meta { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }

.blog-content .btn { width: 100%; justify-content: center; }

/* ─── BLOG DETAIL ─── */
.blog-detail { padding: 48px 0 96px; }

.blog-detail-header { text-align: center; margin-bottom: 48px; }

.blog-detail-header h1 { font-family: var(--font-serif); font-size: 40px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; line-height: 1.3; }

.blog-detail-meta { font-size: 14px; color: var(--text-light); margin-bottom: 18px; }

.blog-detail-content { max-width: 800px; margin: 0 auto; }
.blog-detail-content h2 { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--text-dark); margin: 48px 0 20px; }
.blog-detail-content h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--text-dark); margin: 32px 0 14px; }
.blog-detail-content p { font-size: 15.5px; color: var(--text-medium); line-height: 1.85; margin-bottom: 16px; }
.blog-detail-content ul { margin: 16px 0; }
.blog-detail-content ul li { position: relative; padding-left: 22px; margin-bottom: 12px; color: var(--text-medium); line-height: 1.75; }
.blog-detail-content ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }

.related-posts { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--border-light); }
.related-posts h3 { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--text-dark); margin-bottom: 28px; }
.related-posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

/* ─── HELPER PAGES ─── */
.helper-page { padding: 60px 0 96px; }
.helper-page-header { text-align: center; margin-bottom: 56px; }
.helper-page-header h1 { font-family: var(--font-serif); font-size: 42px; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; }
.helper-page-header p { font-size: 17px; color: var(--text-light); }
.helper-page-content { max-width: 820px; margin: 0 auto; }
.helper-page-content h2 { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--text-dark); margin: 44px 0 18px; }
.helper-page-content h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: var(--text-dark); margin: 28px 0 12px; }
.helper-page-content p { font-size: 15.5px; color: var(--text-medium); line-height: 1.85; margin-bottom: 16px; }
.helper-page-content ul li { position: relative; padding-left: 22px; margin-bottom: 10px; color: var(--text-medium); font-size: 15.5px; line-height: 1.7; }
.helper-page-content ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
.helper-page-content ol { padding-left: 24px; }
.helper-page-content ol li { margin-bottom: 10px; color: var(--text-medium); font-size: 15.5px; line-height: 1.7; }

.faq-grid { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
    background: var(--bg-white);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }

.faq-item h3 { font-family: var(--font-serif); font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.faq-item p { font-size: 14.5px; color: var(--text-light); line-height: 1.65; margin: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .hero-content h1 { font-size: 44px; }
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 80px 24px; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { display: none; }
    .about-content { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery-item:first-child { grid-row: span 1; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .whatsapp-btn span { display: none; }
    .whatsapp-btn { padding: 9px 12px; border-radius: var(--radius-sm); }
    .hero-content h1 { font-size: 36px; }
    .section { padding: 64px 0; }
    .section-header h2 { font-size: 30px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .page-hero h1, .products-page-header h1, .mihalic-hero h1,
    .about-page-header h1, .contact-page-header h1, .blog-page-header h1,
    .helper-page-header h1 { font-size: 34px; }
    .blog-detail-header h1 { font-size: 28px; }
    .about-image-stats { gap: 20px; }
}

@media (max-width: 540px) {
    .hero-content h1 { font-size: 30px; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { justify-content: center; }
    .hero-stats { gap: 20px; }
    .product-actions { flex-direction: column; }
    .footer-inner { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeInUp 0.6s ease forwards; }

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,150,62,.4); }
    50%       { box-shadow: 0 0 0 8px rgba(201,150,62,.0); }
}

.pulse { animation: pulse-glow 2s infinite; }
