/* ═══════════════════════════════════════════
           CSS VARIABLES & RESET
        ═══════════════════════════════════════════ */
:root {
    --primary: #2c9440;
    --primary-dark: #1e7a30;
    --primary-darker: #165a23;
    --accent: #82cb30;
    --accent-light: #a3e055;
    --white: #FFFFFF;
    --off-white: #F8FAF6;
    --light-green: #EFF7E8;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --anthracite: #2D3436;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-display: 'DM Serif Display', Georgia, serif;
    --header-height: 80px;
    --topbar-height: 40px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--anthracite);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ═══════════════════════════════════════════
           TOP BAR
        ═══════════════════════════════════════════ */
.topbar {
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
    overflow: hidden;
}

.topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.topbar-inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.2px;
    transition: color var(--transition-fast);
}

.topbar-item:hover {
    color: var(--accent-light);
}

.topbar-item svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
    flex-shrink: 0;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-social a {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.topbar-social a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-1px);
}

.topbar-social a svg {
    width: 13px;
    height: 13px;
}

.topbar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.15);
}

.topbar-lang {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.topbar-lang:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* ═══════════════════════════════════════════
           HEADER / NAVBAR
        ═══════════════════════════════════════════ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    transition: all var(--transition-smooth);
    border-bottom: 1px solid transparent;
    /* Kaydırınca hero arkada kalsa bile header tam opak kalsın */
    isolation: isolate;
}

.header.scrolled {
    background: #ffffff;
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--gray-200);
}

.header.scrolled .header-inner {
    height: 68px;
}

.header-inner {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    transition: height var(--transition-smooth);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: height var(--transition-smooth);
}

.header.scrolled .logo img {
    height: 40px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-brand {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--primary);
    letter-spacing: -0.3px;
}

.logo-tagline {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
}

/* Fallback: WordPress default menu markup (custom walker yoksa) */
.nav-desktop > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-desktop > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
    position: relative;
}

.nav-desktop > li > a:hover {
    color: var(--primary);
    background: var(--light-green);
}

.nav-desktop .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    display: none;
    z-index: 999;
}

.nav-desktop li:hover > .sub-menu {
    display: block;
}

.nav-desktop .sub-menu li a {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-desktop .sub-menu li a:hover {
    color: var(--primary);
    background: var(--light-green);
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--light-green);
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
    transform: scaleX(1);
}

.nav-item.active .nav-link {
    color: var(--primary);
}

.nav-link .chevron {
    width: 12px;
    height: 12px;
    transition: transform var(--transition-fast);
    opacity: 0.5;
}

.nav-item:hover .chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-search {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gray-600);
    transition: all var(--transition-fast);
}

.btn-search:hover {
    background: var(--light-green);
    color: var(--primary);
}

.btn-search svg {
    width: 20px;
    height: 20px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.3px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(44, 148, 64, 0.3);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(44, 148, 64, 0.4);
}

.btn-cta svg {
    width: 16px;
    height: 16px;
}

/* ═══════════════════════════════════════════
           MEGA MENU
        ═══════════════════════════════════════════ */
.mega-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    transition: all var(--transition-smooth);
}

.mega-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-smooth);
    z-index: 999;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.nav-item:hover .mega-menu,
.mega-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-wide {
    width: 860px;
}

.mega-menu-compact {
    width: 320px;
}

.mega-menu-header {
    padding: 24px 32px 16px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-menu-title {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--primary-dark);
}

.mega-menu-see-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition-fast);
}

.mega-menu-see-all:hover {
    gap: 8px;
}

.mega-menu-see-all svg {
    width: 14px;
    height: 14px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 8px;
}

.mega-menu-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.mega-card {
    padding: 20px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    display: flex;
    gap: 14px;
    align-items: flex-start;
    cursor: pointer;
}

.mega-card:hover {
    background: var(--light-green);
}

.mega-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--light-green) 0%, rgba(130, 203, 48, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.mega-card:hover .mega-card-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

/* Boş ikon kutusu gizle (menü eşleşmeyince) */
.mega-card-icon--empty,
.mega-list-icon--empty {
    display: none !important;
}

.mega-card-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    transition: color var(--transition-fast);
}

.mega-card:hover .mega-card-icon svg {
    color: var(--white);
}

.mega-card-content {
    flex: 1;
}

.mega-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 3px;
    transition: color var(--transition-fast);
}

.mega-card:hover .mega-card-title {
    color: var(--primary);
}

.mega-card-desc {
    font-size: 12.5px;
    color: var(--gray-500);
    line-height: 1.45;
}

.mega-menu-footer {
    padding: 16px 32px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mega-menu-footer-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mega-menu-footer-icon svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.mega-menu-footer-text {
    font-size: 13px;
    color: var(--gray-600);
}

.mega-menu-footer-text strong {
    color: var(--gray-800);
    font-weight: 700;
}

/* Compact Mega Menu (simple list) */
.mega-list {
    padding: 8px;
}

.mega-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.mega-list-item:hover {
    background: var(--light-green);
}

.mega-list-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.mega-list-item:hover .mega-list-icon {
    background: var(--primary);
}

.mega-list-icon:not(.mega-list-icon--empty) svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    transition: color var(--transition-fast);
}

.mega-list-item:hover .mega-list-icon svg {
    color: var(--white);
}

.mega-list-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    transition: color var(--transition-fast);
}

.mega-list-item:hover .mega-list-text {
    color: var(--primary);
}

/* ═══════════════════════════════════════════
           MOBILE MENU TOGGLE
        ═══════════════════════════════════════════ */
.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
    z-index: 1100;
    position: relative;
}

.mobile-toggle:hover {
    background: var(--light-green);
}

.hamburger {
    width: 22px;
    height: 16px;
    position: relative;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 7px;
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.mobile-toggle.active .hamburger span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.mobile-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active .hamburger span:nth-child(3) {
    bottom: 7px;
    transform: rotate(-45deg);
}

/* ═══════════════════════════════════════════
           MOBILE MENU PANEL
        ═══════════════════════════════════════════ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100dvh;
    background: var(--white);
    z-index: 1050;
    flex-direction: column;
    transition: right var(--transition-smooth);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-100);
    flex-shrink: 0;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    transition: all var(--transition-fast);
}

.mobile-menu-close:hover {
    background: var(--light-green);
    transform: rotate(90deg);
}

.mobile-menu-close svg {
    width: 20px;
    height: 20px;
    color: var(--gray-600);
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-item:last-child {
    border: none;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 12px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--gray-800);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
    background: var(--light-green);
}

.mobile-nav-link .chevron {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
    color: var(--gray-400);
}

.mobile-nav-link.active .chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* Fallback: default WordPress mobile menu markup */
.mobile-menu-body > li {
    list-style: none;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-body > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 12px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--gray-800);
    border-radius: var(--radius-sm);
}

.mobile-menu-body > li.menu-item-has-children > a::after {
    content: '▾';
    font-size: 14px;
    color: var(--gray-400);
    transition: transform var(--transition-fast);
}

.mobile-menu-body > li.menu-item-has-children.open > a::after {
    transform: rotate(180deg);
    color: var(--primary);
}

.mobile-menu-body > li > .sub-menu {
    display: none;
    padding: 4px 0 12px 12px;
}

.mobile-menu-body > li.menu-item-has-children.open > .sub-menu {
    display: block;
}

.mobile-menu-body > li > .sub-menu li {
    list-style: none;
}

.mobile-menu-body > li > .sub-menu a {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
}

.mobile-menu-body > li > .sub-menu a:hover {
    color: var(--primary);
    background: var(--light-green);
}

.mobile-submenu.open {
    max-height: 600px;
}

.mobile-submenu-inner {
    padding: 4px 0 12px 12px;
}

.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.mobile-sub-link:hover {
    color: var(--primary);
    background: var(--light-green);
}

.mobile-sub-link .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.mobile-menu-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--gray-100);
    flex-shrink: 0;
}

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(44, 148, 64, 0.3);
}

.mobile-menu-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.mobile-menu-contact a {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-menu-contact a svg {
    width: 15px;
    height: 15px;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* ═══════════════════════════════════════════
           DEMO CONTENT AREA (placeholder)
        ═══════════════════════════════════════════ */
.content-placeholder {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 50%, var(--off-white) 100%);
    position: relative;
}

.content-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(44, 148, 64, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(130, 203, 48, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.content-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.content-inner h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gray-300);
    margin-bottom: 8px;
}

.content-inner p {
    color: var(--gray-400);
    font-size: 15px;
}

/* ═══════════════════════════════════════════
           FOOTER (tasarim/index.html - beyaz tema)
        ═══════════════════════════════════════════ */
.footer {
    background: var(--white);
    color: var(--gray-700);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 10% 0%, rgba(44, 148, 64, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 100%, rgba(130, 203, 48, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-top {
    padding: 60px 40px 48px;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
}

.footer-top-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 48px;
}

/* Footer - Brand Column */
.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo img {
    filter: none;
    opacity: 1;
}

.footer-brand .logo-brand {
    color: var(--primary);
}

.footer-brand .logo-tagline {
    color: var(--gray-500);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 148, 64, 0.3);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

/* Footer - Link Columns */
.footer-heading {
    font-size: 14px;
    font-weight: 800;
    color: var(--gray-800);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Footer menü listesi: ikon solda, hizalama sabit, kayma yok */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin: 0;
    padding: 0;
}

.footer-links li + li {
    margin-top: 12px;
}

.footer-links a {
    font-size: 14px;
    line-height: 1.4;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    position: relative;
    transition: color var(--transition-fast);
    text-decoration: none;
}

/* Sol ikon (›) – metin karakteri, her zaman görünür */
.footer-links a::before {
    content: '\203A';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    min-width: 18px;
    height: 18px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links a:hover::before {
    color: var(--primary);
    transform: translateX(2px);
}

/* Hover alt çizgisi */
.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 28px;
    right: 0;
    height: 1px;
    width: 0;
    background: var(--primary);
    transition: width var(--transition-smooth);
}

.footer-links a:hover::after {
    width: calc(100% - 28px);
}

/* Footer - Contact / Newsletter Column */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(130, 203, 48, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.footer-contact-text {
    font-size: 13.5px;
    color: var(--gray-600);
    line-height: 1.5;
}

.footer-contact-text strong {
    display: block;
    color: var(--gray-800);
    font-weight: 600;
    margin-bottom: 2px;
}

.footer-contact-text a {
    color: var(--gray-600);
}

.footer-contact-text a:hover {
    color: var(--primary);
}

.footer-newsletter-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.footer-newsletter-form {
    display: flex;
    gap: 8px;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 11px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 13px;
    font-family: var(--font-body);
    color: var(--gray-800);
    outline: none;
    transition: all var(--transition-fast);
}

.footer-newsletter-form input::placeholder {
    color: var(--gray-500);
}

.footer-newsletter-form input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(44, 148, 64, 0.1);
}

.footer-newsletter-form button {
    padding: 11px 22px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.footer-newsletter-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(130, 203, 48, 0.3);
}

.footer-newsletter-message {
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-newsletter-message--success {
    color: var(--primary);
    font-weight: 600;
}

.footer-newsletter-message--error {
    color: #b91c1c;
}

/* Footer Certifications Bar */
.footer-certs {
    padding: 24px 40px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
    position: relative;
}

.footer-certs-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.cert-badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(44, 148, 64, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-badge-icon svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.cert-badge-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    letter-spacing: 0.3px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 24px 40px;
    background: var(--white);
    position: relative;
}

.footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--gray-600);
}

.footer-copyright a {
    color: var(--primary);
    font-weight: 600;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--gray-600);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ═══════════════════════════════════════════
           SCROLL TO TOP
        ═══════════════════════════════════════════ */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(44, 148, 64, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.scroll-top svg {
    width: 22px;
    height: 22px;
}

/* Tablet/mobil: buton köşede, daha küçük (tasarim ile aynı) */
@media (max-width: 1024px) {
    .scroll-top {
        right: 24px;
        bottom: 24px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 640px) {
    .scroll-top {
        right: 20px;
        bottom: 20px;
        width: 42px;
        height: 42px;
    }
}

/* ═══════════════════════════════════════════
           RESPONSIVE — TABLET (≤ 1024px)
        ═══════════════════════════════════════════ */
@media (max-width: 1024px) {

    .nav-desktop,
    .btn-cta,
    .btn-search {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .mobile-overlay {
        display: block;
    }

    .header-inner {
        padding: 0 24px;
    }

    .topbar-inner {
        padding: 0 24px;
    }

    .footer-top-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* ═══════════════════════════════════════════
           RESPONSIVE — MOBILE (≤ 640px)
        ═══════════════════════════════════════════ */
@media (max-width: 640px) {
    :root {
        --header-height: 68px;
        --topbar-height: auto;
    }

    .topbar {
        min-height: auto;
    }

    /* Mobilde saatler gizli, sadece tel ve dil */
    .topbar-hours {
        display: none !important;
    }

    .topbar-inner {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10px 16px;
        gap: 8px 12px;
        justify-content: center;
        align-items: center;
    }

    .topbar-left {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
        flex: 1;
        min-width: 0;
    }

    .topbar-left .topbar-item {
        white-space: nowrap;
    }

    .topbar-left .topbar-item span {
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .topbar-right {
        gap: 8px;
        flex-shrink: 0;
    }

    .topbar-item {
        font-size: 11px;
    }

    .topbar-item svg {
        width: 12px;
        height: 12px;
    }

    /* Topbar sosyal ikonları mobilde daha kompakt */
    .topbar-social a {
        width: 24px;
        height: 24px;
    }

    .topbar-social a svg {
        width: 11px;
        height: 11px;
    }

    .topbar-divider {
        height: 14px;
    }

    .topbar-lang {
        font-size: 11px;
        padding: 2px 6px;
    }

    .header-inner {
        padding: 0 16px;
        height: 64px;
    }

    .logo img {
        height: 38px;
    }

    .logo-brand {
        font-size: 19px;
    }

    .logo-tagline {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .mobile-menu {
        max-width: 100%;
    }

    .footer-top {
        padding: 48px 20px 40px;
    }

    .footer-top-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-desc {
        max-width: 100%;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact-list {
        align-items: center;
    }

    .footer-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-newsletter-form {
        flex-direction: column;
        max-width: 280px;
        margin: 0 auto;
    }

    .footer-certs {
        padding: 24px 20px;
    }

    .footer-certs-inner {
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-bottom {
        padding: 20px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-legal {
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

/* ═══════════════════════════════════════════
           ANIMATIONS
        ═══════════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

/* ═══════════════════════════════════════════
           SEARCH MODAL - FULLSCREEN
   ═══════════════════════════════════════════ */

.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.search-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    background: var(--gray-100, #F3F4F6);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100000;
}

.search-modal-close:hover {
    background: var(--primary, #2c9440);
    transform: rotate(90deg);
}

.search-modal-close:hover svg {
    color: var(--white, #FFFFFF);
}

.search-modal-close svg {
    width: 24px;
    height: 24px;
    color: var(--gray-700, #374151);
    transition: color 0.3s ease;
}

.search-modal-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 50px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.search-modal-title {
    font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
    font-size: 3rem;
    color: var(--gray-900, #111827);
    margin-bottom: 50px;
    text-align: center;
}

.search-modal-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-modal-input {
    width: 100%;
    padding: 25px 30px;
    border: 3px solid var(--gray-200, #E5E7EB);
    border-radius: var(--radius-lg, 16px);
    font-size: 1.4rem;
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    color: var(--gray-800, #1F2937);
    background: var(--white, #FFFFFF);
    transition: all 0.3s ease;
    text-align: center;
}

.search-modal-input:focus {
    outline: none;
    border-color: var(--primary, #2c9440);
    box-shadow: 0 0 0 6px rgba(44, 148, 64, 0.1);
}

.search-modal-input::placeholder {
    color: var(--gray-400, #9CA3AF);
}

.search-modal-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 50px;
    background: var(--primary, #2c9440);
    color: var(--white, #FFFFFF);
    border: none;
    border-radius: var(--radius-lg, 16px);
    font-size: 1.3rem;
    font-weight: 600;
    font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    min-width: 200px;
}

.search-modal-submit:hover {
    background: var(--primary-dark, #1e7a30);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg, 0 12px 40px rgba(0, 0, 0, 0.12));
}

.search-modal-submit svg {
    width: 24px;
    height: 24px;
}

/* Active Animation */
.search-modal.active .search-modal-inner {
    animation: searchSlideIn 0.5s ease forwards;
}

@keyframes searchSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-modal-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .search-modal-close svg {
        width: 20px;
        height: 20px;
    }
    
    .search-modal-inner {
        padding: 80px 20px 40px;
    }
    
    .search-modal-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }
    
    .search-modal-input {
        padding: 20px 25px;
        font-size: 1.2rem;
    }
    
    .search-modal-submit {
        padding: 18px 40px;
        font-size: 1.1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .search-modal-title {
        font-size: 1.6rem;
    }
    
    .search-modal-input {
        font-size: 1.1rem;
        padding: 18px 20px;
    }
}


/* ═══════════════════════════════════════════
           MOBILE MENU SEARCH BUTTON
   ═══════════════════════════════════════════ */

.mobile-menu-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-search {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gray-100, #F3F4F6);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-menu-search:hover {
    background: var(--primary, #2c9440);
}

.mobile-menu-search:hover svg {
    color: var(--white, #FFFFFF);
}

.mobile-menu-search svg {
    width: 20px;
    height: 20px;
    color: var(--gray-700, #374151);
    transition: color 0.2s ease;
}

/* Mobile Header Actions */
@media (max-width: 1024px) {
    .header-actions .btn-search {
        display: none;
    }
}

@media (min-width: 1025px) {
    .mobile-menu-search {
        display: none;
    }
}
