/* GreenMedChem - Modern Yeşil Tema CSS */

/* ===== CSS Variables ===== */
:root {
    /* Ana Yeşil Tonları - Yeni Renkler */
    --primary-green: #59912e;
    --primary-green-dark: #024f2f;
    --primary-green-light: #659f2f;
    --accent-green: #74ab3c;
    --emerald-50: #e8f5e0;
    --emerald-100: #d1ead1;
    --emerald-200: #b8deb8;
    
    /* Yeşil Gradient */
    --green-gradient: linear-gradient(135deg, #024f2f 0%, #59912e 50%, #659f2f 100%);
    --green-gradient-dark: linear-gradient(135deg, #024f2f 0%, #59912e 100%);
    --green-glow: 0 0 40px rgba(89, 145, 46, 0.3);
    
    /* Açık Yeşil Arka Planlar */
    --light-green-bg: #e8f5e0;
    --light-green-bg-alt: #d1ead1;
    
    /* Gri tonları */
    --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;
    
    /* Slate tonları */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    
    /* Diğer renkler */
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-green: 0 10px 40px rgba(89, 145, 46, 0.25);
    --shadow-green-lg: 0 20px 50px rgba(89, 145, 46, 0.3);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
    transition: background-color 0.8s ease, color 0.8s ease;
}

/* Varsayılan geçiş ayarları */
.container, .header, .navbar {
    transition: background-color 0.8s ease, color 0.8s ease;
}

/* 1. Ürün Aktifken (Povidon - Sıcak Tonlar) */
body.slide-povidon {
    background-color: #E8E6E1; /* Önerilen Taş Rengi */
    color: #2D2A26;
}

/* 2. Ürün Aktifken (PVP - Soğuk Tonlar) */
body.slide-pvp {
    background-color: #E3E9EB; /* Önerilen Buz Mavisi */
    color: #1B2A32;
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f4f1ec;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 90%;
}

.preloader-video-container {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f1ec;
}

.preloader-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.preloader-spinner {
    width: 35px;
    height: 35px;
    border: 3px solid rgba(89, 145, 46, 0.15);
    border-top: 3px solid var(--primary-green);
    border-radius: 50%;
    animation: preloader-spin 0.8s linear infinite;
}

@keyframes preloader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Preloader Responsive */
@media (max-width: 768px) {
    .preloader-video-container {
        width: 280px;
        height: 280px;
    }
    
    .preloader-spinner {
        width: 30px;
        height: 30px;
        border-width: 2.5px;
    }
}

@media (max-width: 480px) {
    .preloader-video-container {
        width: 220px;
        height: 220px;
    }
    
    .preloader-spinner {
        width: 28px;
        height: 28px;
        border-width: 2px;
    }
}


/* ===== Header - Yeşil Accent ile ===== */
/* Bootstrap 5 Navbar Overrides */
.navbar {
    background-color: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 3px solid var(--primary-green) !important;
    padding: 0.75rem 0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1030 !important;
}

.navbar-brand {
    padding: 0 !important;
    margin-right: 2rem !important;
}

[dir="rtl"] .navbar-brand {
    margin-right: 0 !important;
    margin-left: 2rem !important;
}

.navbar-nav .nav-link {
    color: var(--text-gray) !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    padding: 0.65rem 1rem !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    border-radius: 6px !important;
    margin: 0 0.25rem !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
    background-color: var(--light-green-bg) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-green) !important;
    background-color: var(--light-green-bg) !important;
}

.navbar-nav .dropdown-menu {
    border: 2px solid var(--primary-green) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    margin-top: 0.5rem !important;
    padding: 0.5rem 0 !important;
}

.navbar-nav .dropdown-item {
    padding: 0.75rem 1.5rem !important;
    transition: all 0.2s ease !important;
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--light-green-bg) !important;
    color: var(--primary-green) !important;
}

.navbar-toggler {
    border: 2px solid var(--primary-green) !important;
    padding: 0.5rem 0.75rem !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(89, 145, 46, 0.25) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2889, 145, 46, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Legacy styles for backward compatibility */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-green);
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    width: 100%;
}

.logo {
    position: relative;
}

.logo a {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--green-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -0.5px;
}

.logo a:hover {
    transform: scale(1.02);
}

/* Floating Logo Container */
.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo-floating-wrapper {
    position: relative;
    z-index: 1100;
}

/* Desktop için absolute positioning */
@media (min-width: 769px) {
    .logo-floating-wrapper {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
}

.logo-floating-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 0 0 6px var(--white), 0 0 0 8px var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: var(--transition);
    position: relative;
}

.logo-floating-circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--green-gradient);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.logo-container:hover .logo-floating-circle::before {
    opacity: 0.1;
}

.logo-container:hover .logo-floating-circle {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(89, 145, 46, 0.25), 0 0 0 8px var(--white), 0 0 0 10px var(--primary-green);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.15);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    gap: 0.1rem;
    margin-left: 160px;
}

/* RTL Support for Logo */
[dir="rtl"] .logo-floating-wrapper {
    left: auto;
    right: 20px;
}

[dir="rtl"] .logo-text {
    margin-left: 0;
    margin-right: 160px;
}

[dir="rtl"] .navbar-collapse .d-flex {
    margin-left: 0 !important;
    margin-right: auto !important;
}

[dir="rtl"] .navbar-nav {
    margin-left: 1rem !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
}

@media (min-width: 992px) {
    [dir="rtl"] .navbar-nav {
        margin-left: 1rem !important;
        margin-right: 0 !important;
    }
}

[dir="rtl"] .language-selector {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

[dir="rtl"] .dropdown-menu-end {
    right: auto !important;
    left: 0 !important;
}

/* RTL Navbar Container Padding */
[dir="rtl"] .navbar .container-fluid {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}

@media (min-width: 768px) {
    [dir="rtl"] .navbar .container-fluid {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

/* RTL Navbar Toggler Position */
[dir="rtl"] .navbar-toggler {
    order: -1;
    margin-left: 0;
    margin-right: auto;
}

/* RTL Navbar Brand */
[dir="rtl"] .navbar-brand {
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
}

@media (min-width: 992px) {
    [dir="rtl"] .navbar-brand {
        margin-left: 2rem !important;
    }
}

/* RTL Navbar Icons */
[dir="rtl"] .nav-link i.fas {
    margin-left: 0.25rem;
    margin-right: 0;
}

[dir="rtl"] .dropdown-item i.fas {
    margin-left: 0.5rem;
    margin-right: 0;
}

/* RTL Dropdown Menu */
[dir="rtl"] .dropdown-menu {
    text-align: right;
}

[dir="rtl"] .dropdown-menu-end {
    right: auto !important;
    left: 0 !important;
}

[dir="rtl"] .dropdown-menu-start {
    left: auto !important;
    right: 0 !important;
}

.logo-green {
    font-family: 'Lyon', 'Georgia', 'Times New Roman', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #074226 !important;
    letter-spacing: 1px;
}

.logo-medchem {
    font-family: 'Nexa', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #693e1c !important;
    letter-spacing: 1px;
}

/* Link içinde olsa bile renkleri sabitle */
a .logo-green,
.logo-container .logo-green,
a:visited .logo-green,
a:hover .logo-green {
    color: #074226 !important;
}

a .logo-medchem,
.logo-container .logo-medchem,
a:visited .logo-medchem,
a:hover .logo-medchem {
    color: #693e1c !important;
}

.main-nav {
    margin-left: auto;
    padding-right: 2rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav ul li {
    display: flex;
    align-items: center;
}

.main-nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    font-size: 1.05rem;
    padding: 0.65rem 0.4rem;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.main-nav a:hover {
    color: var(--primary-green);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.4rem;
    right: 0.4rem;
    width: 0;
    height: 3px;
    background: var(--green-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.main-nav a:hover::after {
    width: calc(100% - 0.8rem);
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown .dropdown-toggle i {
    font-size: 0.75rem;
    transition: var(--transition);
    margin-left: 0.5rem;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 0.75rem 0;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    margin-top: 0.5rem;
    border: 1px solid var(--border-color);
    display: block;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown .dropdown-menu li {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
}

.nav-dropdown .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
    width: 100%;
    box-sizing: border-box;
}

.nav-dropdown .dropdown-menu a:hover {
    background: var(--light-green-bg);
    color: var(--primary-green);
}

.nav-dropdown .dropdown-menu a i {
    width: 20px;
    text-align: center;
    color: var(--primary-green);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.nav-dropdown .dropdown-menu a::after {
    display: none;
}

.nav-dropdown .dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
    padding: 0;
    display: block;
    width: 100%;
}

.language-selector {
    flex-shrink: 0;
}

.language-selector .btn {
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.language-selector .btn:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(89, 145, 46, 0.3);
}

.language-selector .btn:focus {
    box-shadow: 0 0 0 0.25rem rgba(89, 145, 46, 0.25);
}

.language-selector .dropdown-menu {
    border-radius: 10px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.language-selector .dropdown-item {
    padding: 0.75rem 1.25rem;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.language-selector .dropdown-item:hover {
    background-color: var(--light-green-bg);
    color: var(--primary-green);
    padding-left: 1.5rem;
}

[dir="rtl"] .language-selector .dropdown-item:hover {
    padding-left: 0.75rem;
    padding-right: 1.5rem;
}

.language-selector .dropdown-item.active {
    background-color: rgba(89, 145, 46, 0.1);
    color: var(--primary-green);
    font-weight: 600;
}

.language-selector .dropdown-item .fa-check {
    font-size: 0.85rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--green-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== Main Content ===== */
main {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    min-height: calc(100vh - 200px);
}

/* ===== Hero Slider - Background Design ===== */
/* Hero Section - Premium Design */
.hero-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-slider {
    position: relative;
    min-height: 600px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1 !important;
    z-index: 2 !important;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(2, 79, 47, 0.75) 0%, rgba(89, 145, 46, 0.6) 50%, rgba(101, 159, 47, 0.5) 100%);
    z-index: 1;
}

.hero-content-card {
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.hero-badge .badge {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.hero-badge .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3) !important;
    background: rgba(255, 255, 255, 1) !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-slider-arrow {
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px);
}

.hero-slider-arrow:hover {
    background: var(--green-gradient) !important;
    color: var(--white) !important;
    transform: translateY(-50%) scale(1.15) !important;
    box-shadow: 0 8px 25px rgba(89, 145, 46, 0.4) !important;
}

.hero-slider-arrow:active {
    transform: translateY(-50%) scale(1.05) !important;
}

.hero-slider-dot {
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.2);
}

.hero-slider-dot.active {
    width: 45px !important;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.5) !important;
}


/* ===== Bootstrap 5 Utility Extensions ===== */
.z-1 {
    z-index: 1;
}

.object-fit-cover {
    object-fit: cover;
}

/* ===== Section Styles ===== */
.section {
    padding: 3.5rem 0;
    background: var(--white);
    position: relative;
}

.section-alt {
    background: linear-gradient(180deg, var(--light-green-bg) 0%, var(--white) 100%);
}

.section-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--green-gradient);
    border-radius: 2px;
}

/* Products Hero Banner */
.products-hero-banner {
    position: relative;
    overflow: hidden;
}

.products-hero-banner .section-title {
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.products-hero-banner .section-title::after {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    font-weight: 400;
}

/* ===== Buttons - Yeşil Odaklı ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.3rem;
    background: var(--green-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: var(--shadow-green);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-green-lg);
}

.btn-secondary {
    background: var(--white);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--light-green-bg);
    border-color: var(--primary-green-dark);
    color: var(--primary-green-dark);
    box-shadow: var(--shadow-md);
}

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

.btn-primary:hover {
    box-shadow: var(--shadow-green-lg);
    transform: translateY(-3px);
}

/* ===== Cards - Yeşil Hover ===== */
.card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--green-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-green);
    border-color: var(--emerald-200);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Feature Card - Bootstrap 5 uyumlu */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(89, 145, 46, 0.2) !important;
}

.card h3 {
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    font-weight: 700;
}

/* ===== Products Preview ===== */
.products-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Products Preview - Bootstrap 5 uyumlu */
.product-preview-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-green) !important;
}

.product-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0.5rem 1.5rem rgba(89, 145, 46, 0.25) !important;
}

/* ===== Process Section ===== */
.process-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-green-bg) 100%);
    position: relative;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--green-gradient);
    transform: translateX(-50%);
    border-radius: 2px;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
        opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .process-content {
    text-align: right;
    margin-right: 2rem;
    margin-left: 0;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-green);
    flex-shrink: 0;
    border: 3px solid var(--white);
}

.process-content {
    flex: 1;
    margin-left: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border-left: 3px solid var(--primary-green);
}

.process-step:nth-child(even) .process-content {
    border-left: none;
    border-right: 3px solid var(--primary-green);
}

.process-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-green);
}

.process-content h3 {
    color: var(--primary-green-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.process-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ===== Certificates Section ===== */
.certificates-section {
    background: linear-gradient(135deg, var(--light-green-bg) 0%, var(--white) 100%);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.certificate-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.certificate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--green-gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.certificate-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-green-lg);
}

.certificate-card:hover::before {
    opacity: 0.05;
}

.certificate-icon {
    font-size: 2.5rem;
    background: var(--green-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.certificate-card:hover .certificate-icon {
    transform: scale(1.2);
}

.certificate-card h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.certificate-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--green-gradient);
    color: white;
    text-align: center;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ===== Product Grid - Modern Design ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-green-lg);
    border-color: var(--emerald-200);
}

/* Product Image Wrapper */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--light-green-bg);
    transition: var(--transition);
}

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

/* Product Overlay */
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 79, 47, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-overlay i {
    color: white;
    font-size: 3rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .product-overlay i {
    transform: scale(1);
}

/* Category Badge */
.product-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--green-gradient);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(89, 145, 46, 0.4);
    z-index: 2;
    border: 3px solid white;
}

/* Product Content */
.product-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.product-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
}

/* ===== Footer - Yeşil Gradientli ===== */
/* Footer - Bootstrap 5 Compatible (minimal overrides) */
footer a:hover {
    color: var(--accent-green) !important;
    padding-left: 5px;
}

/* ===== Social Links ===== */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--green-gradient);
    transform: translateY(-5px);
    box-shadow: var(--shadow-green);
}

/* ===== Modal - REMOVED (Using Detail Pages Instead) ===== */
/* Modal system removed - product details now use dedicated pages (product-detail.php) */

/* ===== Forms ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

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

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header Logo Mobil */
    .header-content {
        flex-wrap: nowrap;
        padding: 0.8rem 0;
    }
    
    /* Navbar - logo header dışına taşacak ama header büyümeyecek */
    .navbar {
        position: sticky !important;
        top: 0 !important;
        overflow: visible !important;
        padding-bottom: 0 !important;
        padding-top: 0.75rem !important;
        z-index: 1030 !important;
    }
    
    .navbar .container-fluid {
        position: relative !important;
        overflow: visible !important;
        padding-bottom: 0 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 1rem !important;
    }
    
    /* Navbar collapse açıldığında container-fluid düzeni korunacak */
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        flex-basis: 100% !important;
        width: 100% !important;
        order: 3 !important;
    }
    
    /* Navbar brand - logo header dışına taşacak */
    .navbar-brand {
        position: relative !important;
        display: flex !important;
        align-items: flex-start !important;
        flex-shrink: 0;
        flex-grow: 0 !important;
        padding-bottom: 0 !important;
        overflow: visible !important;
        z-index: 1100 !important;
        margin-bottom: 0 !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        min-width: 0 !important;
        order: 1 !important;
    }
    
    /* Navbar toggler ile logo arasında boşluk */
    .navbar-toggler {
        margin-left: 0 !important;
        margin-right: 0 !important;
        order: 2 !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
    }
    
    [dir="rtl"] .navbar-toggler {
        order: -1 !important;
    }
    
    [dir="rtl"] .navbar-brand {
        order: 1 !important;
    }
    
    .logo-floating-wrapper {
        position: absolute !important;
        left: 5px !important;
        bottom: -25px !important;
        top: auto !important;
        transform: none !important;
        margin-right: 0 !important;
        z-index: 1100 !important;
        overflow: visible !important;
    }
    
    .logo-floating-circle {
        width: 90px!important;
        height: 90px!important;
        padding: 15px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 0 0 6px var(--white), 0 0 0 8px var(--primary-green);
        overflow: visible !important;
    }
    
    .logo-text {
        margin-left: 110px !important;
        display: flex;
        flex-direction: column;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    
    .logo-green {
        font-size: 1.5rem;
        color: #074226 !important;
    }
    
    .logo-medchem {
        font-size: 1.5rem;
        color: #693e1c !important;
    }
    
    /* RTL Logo Mobil */
    [dir="rtl"] .logo-floating-wrapper {
        left: auto !important;
        right: 5px !important;
    }
    
    [dir="rtl"] .logo-text {
        margin-left: 0 !important;
        margin-right: 110px !important;
    }
    
    /* RTL Navbar Toggler Mobil - zaten yukarıda tanımlı */
    
    /* RTL Navbar Brand Mobil */
    [dir="rtl"] .navbar-brand {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    
    /* RTL Container Padding Mobil */
    [dir="rtl"] .navbar .container-fluid {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    /* RTL Navbar Brand Padding Mobil - Soldaki boşluğu kaldır */
    [dir="rtl"] .navbar-brand {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    
    /* Navbar collapse açıldığında logo sabit kalacak */
    .navbar-collapse.show ~ .navbar-brand,
    .navbar-collapse.collapsing ~ .navbar-brand {
        position: relative;
    }
    
    /* Language selector mobilde düzeltme */
    .language-selector {
        margin-top: 0.75rem;
        width: 100%;
        order: -1;
    }
    
    /* RTL Language Selector Mobil */
    [dir="rtl"] .language-selector {
        margin-top: 0.75rem;
        width: 100%;
        order: -1;
    }
    
    /* RTL Navbar Collapse Mobil */
    [dir="rtl"] .navbar-collapse .d-flex {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    [dir="rtl"] .navbar-collapse .navbar-nav {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-right: 0;
        padding-left: 0;
    }
    
    /* RTL Dropdown Menu Mobil */
    [dir="rtl"] .dropdown-menu {
        text-align: right;
        left: auto !important;
        right: 0 !important;
    }
    
    [dir="rtl"] .nav-dropdown .dropdown-menu {
        margin-left: 0 !important;
        margin-right: 1rem !important;
    }
    
    .language-selector .btn {
        width: 100%;
        justify-content: center;
        padding: 0.65rem 1rem;
        font-size: 0.95rem;
        border-radius: 8px;
        border-width: 2px;
    }
    
    .language-selector .dropdown-menu {
        width: 100% !important;
        min-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        margin-top: 0.5rem !important;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .language-selector .dropdown-item {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    /* Navbar collapse açıldığında container-fluid düzeni korunacak */
    .navbar-collapse.show ~ .navbar-brand,
    .navbar-collapse.collapsing ~ .navbar-brand {
        position: relative !important;
        order: 1 !important;
    }
    
    /* Navbar collapse açıldığında toggler sabit kalacak - LTR diller için */
    .navbar:not([dir="rtl"]) .navbar-collapse.show ~ .navbar-toggler,
    .navbar:not([dir="rtl"]) .navbar-collapse.collapsing ~ .navbar-toggler {
        position: relative !important;
        order: 2 !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
    }
    
    /* Navbar collapse içindeki içerik */
    .navbar-collapse {
        margin-top: 0.5rem;
        width: 100% !important;
        flex-basis: 100% !important;
        order: 3 !important;
    }
    
    .navbar-collapse .d-flex {
        flex-direction: column;
        width: 100%;
        align-items: stretch !important;
    }
    
    .navbar-collapse .navbar-nav {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Menu Mobil */
    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 1rem;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        background-color: var(--white);
        box-shadow: var(--shadow);
        border-radius: 12px;
        padding: 0.5rem 0;
    }
    
    .main-nav ul li {
        padding: 0.6rem 1rem;
    }
    
    .main-nav a::after {
        display: none;
    }
    
    /* Mobile Dropdown */
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0.5rem 0 0 1rem;
        background: var(--gray-50);
        border-radius: 8px;
        min-width: auto;
    }
    
    .nav-dropdown .dropdown-menu a {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .nav-dropdown .dropdown-toggle i {
        transform: rotate(0deg) !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .language-selector {
        order: 2;
    }
    
    /* Hero Section Mobile - Premium Design */
    .hero-slider {
        height: 500px !important;
        min-height: 500px !important;
    }
    
    .hero-slide {
        background-attachment: scroll !important;
    }
    
    .hero-content-card .display-3 {
        font-size: 2rem !important;
    }
    
    .hero-content-card .lead {
        font-size: 1rem !important;
    }
    
    .hero-slider-arrow {
        display: none !important;
    }
    
    .hero-slider-controls {
        bottom: 1.5rem !important;
    }
    
    
    /* Products Hero Banner Mobil */
    .products-hero-banner {
        padding: 4rem 0 !important;
    }
    
    .products-hero-banner .section-title {
        font-size: 1.75rem !important;
    }
    
    /* Sections Mobil */
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.4rem;
        padding-bottom: 0.7rem;
        padding: 0 15px 0.7rem;
    }
    
    .section-title::after {
        width: 45px;
        height: 3px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: row !important;
        padding-left: 0;
        margin-bottom: 2rem;
    }
    
    .process-step:nth-child(even) {
        flex-direction: row !important;
    }
    
    .process-step:nth-child(even) .process-content {
        text-align: left;
        margin-left: 1rem;
        margin-right: 0;
        border-right: none;
        border-left: 3px solid var(--primary-green);
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        border: 2px solid var(--white);
    }
    
    .process-content {
        margin-left: 1rem;
        padding: 1.2rem;
    }
    
    .process-content h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .process-content p {
        font-size: 0.85rem;
    }
    
    .product-preview-card {
        margin-bottom: 1.5rem;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .certificate-card {
        padding: 1.5rem 1.2rem;
    }
    
    .certificate-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    /* Cards Mobil */
    .card-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 15px;
    }
    
    .card {
        padding: 1.3rem !important;
    }
    
    
    .card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .btn {
        font-size: 0.85rem;
        padding: 0.65rem 1.2rem;
    }
    
    /* Footer Mobile - Bootstrap 5 Compatible */
    footer .row {
        text-align: center;
    }
    
    /* Ana sayfa responsive */
    .section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 15px;
    }
    
    .section > .container > div > div[style*="position: relative"] {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .section > .container > div > div[style*="position: relative"] img {
        max-width: 250px;
        margin: 0 auto;
        display: block;
        height: auto !important;
    }
    
    .section > .container > div > .card {
        order: 2;
        padding: 1.5rem !important;
    }
    
    .section > .container > div > .card h3 {
        font-size: 1.2rem !important;
    }
    
    .section > .container > div > .card p {
        font-size: 0.9rem !important;
    }
    
    .cta-section {
        padding: 2rem 0;
    }
    
    .cta-section h2 {
        font-size: 1.4rem !important;
        padding: 0 15px;
    }
    
    .cta-section p {
        font-size: 0.85rem !important;
        padding: 0 15px;
    }
    
    .cta-section .btn {
        font-size: 0.85rem !important;
        padding: 0.7rem 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0.5rem 0;
    }
    
    .logo-floating-circle {
        width: 50px;
        height: 50px;
        padding: 6px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06), 0 0 0 3px var(--white), 0 0 0 5px var(--primary-green);
    }
    
    .logo-floating-wrapper {
        left: 5px;
    }
    
    .logo-text {
        margin-left: 68px;
    }
    
    .logo-green {
        font-size: 0.85rem;
        letter-spacing: 0.3px;
        color: #074226 !important;
    }
    
    .logo-medchem {
        font-size: 0.85rem;
        letter-spacing: 0.3px;
        color: #693e1c !important;
    }
    
    .logo-container {
        gap: 0.2rem;
    }
    
    .language-selector .btn {
        min-width: 80px !important;
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
    }
    
    .language-selector .dropdown-menu {
        min-width: 130px !important;
    }
    
    .language-selector .dropdown-item {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .main-nav ul li {
        padding: 0.5rem 1rem;
    }
    
    /* Hero Section Extra Small Mobile - Premium Design */
    .hero-slider {
        height: 450px !important;
        min-height: 450px !important;
    }
    
    .hero-content-card .display-3 {
        font-size: 1.75rem !important;
    }
    
    .hero-content-card .lead {
        font-size: 0.95rem !important;
    }
    
    .hero-badge .badge {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.8rem !important;
    }
    
    .hero-slider-arrow {
        width: 45px !important;
        height: 45px !important;
        font-size: 0.9rem !important;
    }
    
    .hero-slider-controls {
        bottom: 1rem !important;
    }
    
    
    /* Extra Small Mobile Sections */
    .section-title {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 1.8rem 0;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    /* Extra Small Mobile Cards */
    .card {
        padding: 1.2rem !important;
    }
    
    .card h3 {
        font-size: 0.95rem;
    }
    
    .card p {
        font-size: 0.8rem;
    }
    
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-green { color: var(--primary-green); }
.bg-green { background: var(--green-gradient); }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===== Swiper Showcase Section ===== */
/* --- SWIPER GEREKSİNİMLERİ --- */
/* Swiper CSS CDN link HTML head'de eklendi */

:root {
    /* GreenMedChem Renkleri */
    --gmc-green-dark: #143624; /* Koyu Orman Yeşili */
    --gmc-green-light: #59912e;
    --gmc-bg-1: #E8ECE6; /* Mat Adaçayı Yeşili */
    --gmc-bg-2: #E3E8E1; /* Alternatif Mat Yeşil */
    --text-primary: #143624; /* Koyu Orman Yeşili */
}

.showcase-container {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 80vh;
    max-height: 90vh;
    background-color: var(--gmc-bg-1);
    overflow: visible;
    transition: background-color 0.6s ease;
    padding: 2rem 5% 4rem;
    display: flex;
    flex-direction: column;
}

/* Header Kısmı */
.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    z-index: 10;
    margin-bottom: 2rem;
}

.brand-logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--gmc-green-dark); /* #143624 */
    letter-spacing: -1px;
}

.header-menu a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Swiper Alanı */
.mySwiper {
    width: 100%;
    height: auto;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0 !important;
    transition: opacity 0.4s;
    min-height: 600px;
    padding: 2rem 0;
}

.swiper-slide-active {
    opacity: 1 !important;
}

/* Sol Taraftaki Yazılar */
.left-side {
    max-width: 45%;
    z-index: 5;
}

.main-header {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--gmc-green-dark);
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.main-title {
    font-family: 'Fraunces', 'Times New Roman', Times, serif;
    font-size: clamp(3rem, 5vw, 5rem); /* Responsive boyut */
    color: var(--gmc-green-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(30px);
    font-weight: 600;
}

.main-subtitle {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(40px);
}

.main-content__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gmc-green-dark);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(50px);
}

.main-content__subtitle {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 400px;
    opacity: 0;
    transform: translateY(60px);
}

.more-menu {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--gmc-green-dark);
    font-weight: 700;
    opacity: 0;
    transform: translateY(70px);
    transition: all 0.3s;
}

.more-menu svg {
    width: 20px;
    margin-left: 10px;
    transition: transform 0.3s;
}

.more-menu:hover svg {
    transform: translateX(5px);
}

/* Animasyonlar (Slayt gelince tetiklenir) */
.swiper-slide-active .main-header,
.swiper-slide-active .main-title,
.swiper-slide-active .main-subtitle,
.swiper-slide-active .main-content__title,
.swiper-slide-active .main-content__subtitle,
.swiper-slide-active .more-menu {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

/* Sağ Taraftaki Görsel Alanı */
.center-visual {
    position: relative;
    width: 50%;
    height: auto;
    min-height: 500px;
    max-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-wrapper {
    position: relative;
    width: 350px;
    height: 500px;
}


/* Arka plan görseli için overlay - hafif tonlama */
.visual-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 236, 230, 0.15) 0%, rgba(227, 232, 225, 0.2) 100%);
    border-radius: 150px;
    z-index: 1;
    pointer-events: none;
}

/* Arka plan görseline ekstra blur ve maskeleme */
.bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 150px; /* Hap şekli */
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s ease;
    filter: blur(4px) brightness(1.1) saturate(0.9);
    z-index: 0;
}

.product-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8) rotate(-10deg);
    width: 80%;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transition: all 1s ease 0.2s; /* Hafif gecikmeli */
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
    z-index: 2;
}

/* Görsel Animasyonları */
.swiper-slide-active .bg-img {
    opacity: 1;
    transform: scale(1);
}

.swiper-slide-active .product-img {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

/* Navigasyon Butonları */
.nav-controls {
    position: absolute;
    bottom: 1rem;
    right: 5%;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gmc-green-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--gmc-green-dark);
}

.nav-btn svg { width: 24px; stroke-width: 2; }

.nav-btn:hover {
    background: var(--gmc-green-dark);
    color: #fff;
}

/* PVP-I Atomik slayt özel stilleri */
#prod-pvp-atom.swiper-slide {
    background: #fff;
    border-radius: 20px;
    padding: 2.25rem 2rem;
}

#prod-pvp-atom .center-visual {
    min-height: 520px;
}

#prod-pvp-atom .visual-wrapper {
    width: 480px;
    height: 560px;
}

#prod-pvp-atom .product-img {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08) rotate(0deg);
    filter: none;
}

@media (max-width: 991px) {
    #prod-pvp-atom.swiper-slide {
        padding: 1.75rem 1.25rem;
    }
    #prod-pvp-atom .center-visual {
        min-height: 420px;
    }
    #prod-pvp-atom .visual-wrapper {
        width: 360px;
        height: 450px;
    }
}

@media (max-width: 576px) {
    #prod-pvp-atom .center-visual {
        min-height: 360px;
    }
    #prod-pvp-atom .visual-wrapper {
        width: 280px;
        height: 360px;
    }
}

.swiper-pagination {
    position: absolute;
    left: 5% !important;
    bottom: 2rem !important;
    width: auto !important;
    font-weight: 700;
    color: var(--gmc-green-dark);
}

/* Responsive */
@media (max-width: 991px) {
    .showcase-container { 
        height: auto; 
        min-height: auto;
        max-height: none;
        padding: 2rem 3% 3rem; 
    }
    .swiper-slide { 
        flex-direction: column-reverse; 
        text-align: center; 
        min-height: auto;
        padding: 1rem 0;
    }
    .left-side { max-width: 100%; margin-top: 2rem; }
    .center-visual { 
        width: 100%; 
        height: auto;
        min-height: 350px;
        max-height: 400px; 
    }
    .visual-wrapper { width: 280px; height: 380px; }
    .main-subtitle, .main-content__subtitle { margin-left: auto; margin-right: auto; }
    .nav-controls { bottom: 0.5rem; }
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 20px; /* En alttan biraz yukarıda havada dursun */
    left: 50%;
    transform: translateX(-50%) translateY(150%); /* Başlangıçta ekran dışında */
    width: 85%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.95); /* Beyaz arka plan */
    backdrop-filter: blur(12px); /* Buzlu cam efekti */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(2, 79, 47, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    color: #333;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cookie-banner.show {
    transform: translateX(-50%) translateY(0); /* Ekrana giris */
}
.cookie-icon i {
    color: #59912e; /* Daha yumuşak yeşil ton */
}
.cookie-text h5 {
    color: #024f2f; /* Koyu yeşil başlık */
}
.cookie-text p {
    color: #666; /* Gri metin */
}
.cookie-text a {
    color: #59912e; /* Yeşil link */
}
/* Mobil Uyum */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        width: 100%;
        border-radius: 12px 12px 0 0; /* Sadece üst köşeler yuvarlak */
        padding: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
}

/* === Reference Logos === */
.reference-logos .reference-logo-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 14px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reference-logos .reference-logo-card img {
    max-height: 80px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(8%);
}

.reference-logos .reference-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

@media (max-width: 576px) {
    .reference-logos .reference-logo-card {
        padding: 10px;
        height: 100px;
    }
    
    .reference-logos .reference-logo-card img {
        max-height: 64px;
    }
}

/* === Footer responsive === */
.footer-social {
    gap: 0.5rem;
    justify-content: flex-start;
}
.footer-social .social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-width: 2px;
}
.footer-social .social-btn img {
    width: 18px;
    height: 18px;
}
@media (max-width: 576px) {
    .footer-social {
        justify-content: center;
    }
    footer .col-lg-4,
    footer .col-lg-3,
    footer .col-lg-2 {
        text-align: center;
    }
    footer .col-lg-4 ul,
    footer .col-lg-3 ul,
    footer .col-lg-2 ul,
    .footer-quick-links {
        padding-left: 0;
    }
    footer .text-white-50,
    footer h5 {
        text-align: center;
    }
    .footer-quick-links a {
        justify-content: center;
    }
}

/* Footer Mini Map Styles */
.footer-mini-map {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem;
}

.footer-mini-map iframe {
    border-radius: 6px;
    width: 100%;
    height: 180px;
    display: block;
}

/* Footer Contact Info Styles */
footer .text-white-50 a {
    transition: color 0.3s ease;
}

footer .text-white-50 a:hover {
    color: var(--primary-green) !important;
}

footer ul.list-unstyled li {
    line-height: 1.6;
}

/* Responsive Footer Mini Map */
@media (max-width: 768px) {
    .footer-mini-map iframe {
        height: 160px !important;
    }
}

@media (max-width: 576px) {
    .footer-mini-map {
        margin-top: 1.5rem;
    }
    
    .footer-mini-map iframe {
        height: 150px !important;
    }
}
